diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-30 00:24:20 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-30 00:24:20 +0000 |
commit | 87e302bfd8ffbc6cdb20920029013956b10ace63 (patch) | |
tree | dd213422862ceaaf30793f25ca97025b89d037aa /libavcodec/svq3.c | |
parent | 2d05bc86418681905f85ff7c621457756397a2ae (diff) | |
download | ffmpeg-87e302bfd8ffbc6cdb20920029013956b10ace63.tar.gz |
remove unused hack which set AVCodecContext frame_number to pic timestamp
Originally committed as revision 18988 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 28dacf79a2..1d488b737b 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -1031,8 +1031,6 @@ static int svq3_decode_frame(AVCodecContext *avctx, *(AVFrame *) data = *(AVFrame *) &s->last_picture; } - avctx->frame_number = s->picture_number - 1; - /* Do not output the last pic after seeking. */ if (s->last_picture_ptr || s->low_delay) { *data_size = sizeof(AVFrame); |