From c218d9e960e906e4d6dab9d2c4438022b91c69bc Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 23 Aug 2016 12:07:46 +0200 Subject: vd_lavc: minor simplification The timebase is now always valid. --- video/decode/vd_lavc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'video/decode') diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c index a4f4e5e2e5..8cc5d4eca4 100644 --- a/video/decode/vd_lavc.c +++ b/video/decode/vd_lavc.c @@ -460,9 +460,7 @@ static void init_avctx(struct dec_video *vd, const char *decoder, avctx->opaque = vd; avctx->codec_type = AVMEDIA_TYPE_VIDEO; avctx->codec_id = lavc_codec->id; - - if (ctx->codec_timebase.num) - avctx->time_base = ctx->codec_timebase; + avctx->time_base = ctx->codec_timebase; avctx->refcounted_frames = 1; ctx->pic = av_frame_alloc(); -- cgit v1.2.3