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/h263dec.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/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index b087933f66..a6b0e04fde 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -724,10 +724,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; - #ifdef PRINT_FRAME_TIME av_log(avctx, AV_LOG_DEBUG, "%"PRId64"\n", rdtsc()-time); #endif |