diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-07-17 12:29:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-07-17 12:29:07 +0000 |
commit | 7a06ff148d0321e863a682334c59f59b3e8e7b6d (patch) | |
tree | 4b6b4fd27b6fb39589517a0bfde54f701d319130 /libavcodec/h263dec.c | |
parent | bc3513865a10f0f070bdc4eafd4e0df2b2ca3f6d (diff) | |
download | ffmpeg-7a06ff148d0321e863a682334c59f59b3e8e7b6d.tar.gz |
AVCodec.flush()
ff_draw_horiz_band() in coded order / cleanup
Originally committed as revision 2064 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 067627c16c..aee93e82f1 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -723,6 +723,7 @@ AVCodec mpeg4_decoder = { ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED, .options = mpeg4_decoptions, + .flush= ff_mpeg_flush, }; AVCodec h263_decoder = { @@ -735,6 +736,7 @@ AVCodec h263_decoder = { ff_h263_decode_end, ff_h263_decode_frame, CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED, + .flush= ff_mpeg_flush, }; AVCodec msmpeg4v1_decoder = { |