summaryrefslogtreecommitdiffstats
path: root/video/decode/dec_video.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-11 23:08:35 +0200
committerwm4 <wm4@nowhere>2014-08-11 23:09:39 +0200
commitb8f025a58a8dddc42442527229a20b7e45edcc22 (patch)
tree62f61b447bb122bf16656cdf80e175c9ff1f367e /video/decode/dec_video.h
parent056622c33e2ba305df4b1602149af01967bbb9ca (diff)
downloadmpv-b8f025a58a8dddc42442527229a20b7e45edcc22.tar.bz2
mpv-b8f025a58a8dddc42442527229a20b7e45edcc22.tar.xz
video: don't keep multiple pointers to hwdec info struct
This makes a certain corner case simpler at a later point.
Diffstat (limited to 'video/decode/dec_video.h')
-rw-r--r--video/decode/dec_video.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/decode/dec_video.h b/video/decode/dec_video.h
index c9513ac3cd..5298a5616f 100644
--- a/video/decode/dec_video.h
+++ b/video/decode/dec_video.h
@@ -35,7 +35,7 @@ struct dec_video {
struct vf_chain *vfilter; // video filter chain
struct vo *vo; // (still) needed by video_set/get_colors
const struct vd_functions *vd_driver;
- struct mp_hwdec_info hwdec_info; // video output hwdec handles
+ struct mp_hwdec_info *hwdec_info; // video output hwdec handles
struct sh_stream *header;
char *decoder_desc;