summaryrefslogtreecommitdiffstats
path: root/video/decode/vd_lavc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-16 15:05:46 +0100
committerwm4 <wm4@nowhere>2014-03-16 15:05:46 +0100
commit2963d84a9b716bea0140e5bbf76898d3e9bc87b0 (patch)
tree054723e78f5f464dfb88774fc36dd406ca6b1c7c /video/decode/vd_lavc.c
parent269c1e1f41f6daf4ff17ffd47f5dfe78884b8ec7 (diff)
downloadmpv-2963d84a9b716bea0140e5bbf76898d3e9bc87b0.tar.bz2
mpv-2963d84a9b716bea0140e5bbf76898d3e9bc87b0.tar.xz
vd_lavc: remove unused field
Diffstat (limited to 'video/decode/vd_lavc.c')
-rw-r--r--video/decode/vd_lavc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/decode/vd_lavc.c b/video/decode/vd_lavc.c
index 4914d04f20..632d5cacd7 100644
--- a/video/decode/vd_lavc.c
+++ b/video/decode/vd_lavc.c
@@ -309,7 +309,6 @@ static void init_avctx(struct dec_video *vd, const char *decoder,
ctx->hwdec_info = &vd->hwdec_info;
- ctx->do_hw_dr1 = 0;
ctx->pix_fmt = AV_PIX_FMT_NONE;
ctx->hwdec = hwdec;
ctx->hwdec_fmt = 0;
@@ -323,7 +322,6 @@ static void init_avctx(struct dec_video *vd, const char *decoder,
ctx->pic = av_frame_alloc();
if (ctx->hwdec) {
- ctx->do_hw_dr1 = true;
avctx->thread_count = 1;
avctx->get_format = get_format_hwdec;
avctx->get_buffer2 = get_buffer2_hwdec;