ffprobe: don't access AVCodecContext.pkt_timebase directly

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2016-09-26 22:45:39 -03:00
parent 69449da436
commit 64545dd600
1 changed files with 1 additions and 1 deletions

View File

@ -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;