Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-10-18 05:23:33 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-10-19 00:00:33 +0300
commit5771a0c8237d6fb0fb65877126ec0f7842fd2a1e (patch)
treee3a9b973217e8a6046d7e410ec3085336ac7b519
parentf309b698e6b72644ab1ff09a62078beb12a1bf7b (diff)
doc/examples/demuxing_decoding: Drop AVFrame->pts usen3.0.4
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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demuxing_decoding.c
index 59e0ccc986..f2050bd6eb 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 */