ffprobe: fix infinite loop in subtitle decoding
Fixes a regression since 2a88ebd096f3c748a2d99ed1b60b22879b3c567c which caused an infinite loop in the subtitle decoding. Fixes ticket #6796. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
9c249110ea
commit
68f5384804
@ -2275,7 +2275,8 @@ static av_always_inline int process_frame(WriterContext *w,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case AVMEDIA_TYPE_SUBTITLE:
|
case AVMEDIA_TYPE_SUBTITLE:
|
||||||
ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_frame, pkt);
|
if (*packet_new)
|
||||||
|
ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_frame, pkt);
|
||||||
*packet_new = 0;
|
*packet_new = 0;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user