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/vc1.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/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 8d79c18172..acddeb9091 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -4237,10 +4237,6 @@ assert(s->current_picture.pict_type == s->pict_type); ff_print_debug_info(s, pict); } - /* Return the Picture timestamp as the frame number */ - /* we subtract 1 because it is added on utils.c */ - avctx->frame_number = s->picture_number - 1; - av_free(buf2); return buf_size; } |