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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-09-27 04:45:39 +0300
committerJames Almer <jamrial@gmail.com>2016-09-27 04:45:39 +0300
commit64545dd6001355491084902008431e45b3f03c50 (patch)
treea82f94c0c0845925f1f520770d7d857171bbaab0 /ffprobe.c
parent69449da436169e7facaa6d1f3bcbc41cf6ce2754 (diff)
ffprobe: don't access AVCodecContext.pkt_timebase directly
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index e64c66e832..b59f11e4f7 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -2611,7 +2611,7 @@ static int open_input_file(InputFile *ifile, const char *filename)
if (err < 0)
exit(1);
- ist->dec_ctx->pkt_timebase = stream->time_base;
+ av_codec_set_pkt_timebase(ist->dec_ctx, stream->time_base);
#if FF_API_LAVF_AVCTX
ist->dec_ctx->time_base = stream->codec->time_base;
ist->dec_ctx->framerate = stream->codec->framerate;