summaryrefslogtreecommitdiffstats
path: root/video/decode/dec_video.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-14 00:18:36 +0100
committerwm4 <wm4@nowhere>2016-01-14 00:18:36 +0100
commit5722f93a740e841cfe929980c7ac4d4f7896d9dc (patch)
treecf8c438e2a2fcec438d1a1ceb0816b138063e322 /video/decode/dec_video.h
parentbf13bd0d47e5fc6761c51c6ba7056968e60bf4cd (diff)
downloadmpv-5722f93a740e841cfe929980c7ac4d4f7896d9dc.tar.bz2
mpv-5722f93a740e841cfe929980c7ac4d4f7896d9dc.tar.xz
video: refactor: shuffle code around
struct dec_video should have nothing to do with video filters or outputs, and this huge chunk of code was somehow stuck directly in dec_video.c.
Diffstat (limited to 'video/decode/dec_video.h')
-rw-r--r--video/decode/dec_video.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/video/decode/dec_video.h b/video/decode/dec_video.h
index fe325806c6..7f59d6bd3b 100644
--- a/video/decode/dec_video.h
+++ b/video/decode/dec_video.h
@@ -87,11 +87,7 @@ struct mp_image *video_decode(struct dec_video *d_video,
struct demux_packet *packet,
int drop_frame);
-int video_get_colors(struct dec_video *d_video, const char *item, int *value);
-int video_set_colors(struct dec_video *d_video, const char *item, int value);
-void video_reset_decoding(struct dec_video *d_video);
int video_vd_control(struct dec_video *d_video, int cmd, void *arg);
-
-int video_vf_vo_control(struct dec_video *d_video, int vf_cmd, void *data);
+void video_reset_decoding(struct dec_video *d_video);
#endif /* MPLAYER_DEC_VIDEO_H */