1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

hurry up support

returning buf_size insetad of 0

Originally committed as revision 767 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer
2002-07-16 10:29:07 +00:00
parent 22b13d5b4c
commit bc6d7776d8

View File

@@ -2577,6 +2577,8 @@ static int svq1_decode_frame(AVCodecContext *avctx,
#endif #endif
return result; return result;
} }
if(avctx->hurry_up && s->pict_type==B_TYPE) return buf_size;
/* decode y, u and v components */ /* decode y, u and v components */
for (i=0; i < 3; i++) { for (i=0; i < 3; i++) {
@@ -2645,7 +2647,7 @@ static int svq1_decode_frame(AVCodecContext *avctx,
} }
*data_size=sizeof(AVPicture); *data_size=sizeof(AVPicture);
return 0; return buf_size;
} }
static int svq1_decode_init(AVCodecContext *avctx) static int svq1_decode_init(AVCodecContext *avctx)