diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-10-18 04:23:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-10-21 19:33:04 +0200 |
commit | 2fece989f824a7257066dfd1fd93a058490f68ed (patch) | |
tree | 64951e48540b550c7843a8a42fdc979761172399 | |
parent | a2d3e7392d2de3919e21cdb1ef0685c58b849e09 (diff) | |
download | ffmpeg-2fece989f824a7257066dfd1fd93a058490f68ed.tar.gz |
doc/examples/demuxing_decoding: Drop AVFrame->pts use
This code is not correct for git master
Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 2bd99564540a365d5b80d9aad6c19264b15955af)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | doc/examples/demuxing_decoding.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demuxing_decoding.c index 49fb6afae1..b1a216abb4 100644 --- a/doc/examples/demuxing_decoding.c +++ b/doc/examples/demuxing_decoding.c @@ -93,10 +93,9 @@ static int decode_packet(int *got_frame, int cached) return -1; } - printf("video_frame%s n:%d coded_n:%d pts:%s\n", + printf("video_frame%s n:%d coded_n:%d\n", cached ? "(cached)" : "", - video_frame_count++, frame->coded_picture_number, - av_ts2timestr(frame->pts, &video_dec_ctx->time_base)); + video_frame_count++, frame->coded_picture_number); /* copy decoded frame to destination buffer: * this is required since rawvideo expects non aligned data */ |