mirror of https://github.com/mpv-player/mpv
subs: Print a message when lavc subtitle decoding fails
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32865 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7b49d6763a
commit
9e2b74b073
|
@ -1928,7 +1928,10 @@ void update_subtitles(struct MPContext *mpctx, double refpts,
|
|||
len = ds_get_packet_sub(d_sub, &packet);
|
||||
if (is_av_sub(type)) {
|
||||
#ifdef CONFIG_FFMPEG
|
||||
decode_avsub(sh_sub, packet, len, subpts, duration);
|
||||
int ret = decode_avsub(sh_sub, packet, len, subpts, duration);
|
||||
if (ret < 0)
|
||||
mp_msg(MSGT_SPUDEC, MSGL_WARN, "lavc failed decoding "
|
||||
"subtitle\n");
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue