summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-02 14:48:52 +0200
committerwm4 <wm4@nowhere>2014-05-02 14:48:52 +0200
commit33a945cc7e900e618e0cbb3775aecc4d844cb371 (patch)
tree5d4142d24488c8d53f1661e614baffa2e3d4de60
parentd81a374c894d7f9fb4035f04fae786e43715c4a8 (diff)
downloadmpv-33a945cc7e900e618e0cbb3775aecc4d844cb371.tar.bz2
mpv-33a945cc7e900e618e0cbb3775aecc4d844cb371.tar.xz
video: removed unused stuff
-rw-r--r--player/core.h1
-rw-r--r--video/filter/vf.c6
-rw-r--r--video/filter/vf.h1
3 files changed, 0 insertions, 8 deletions
diff --git a/player/core.h b/player/core.h
index f9b55957db..18a749376b 100644
--- a/player/core.h
+++ b/player/core.h
@@ -470,6 +470,5 @@ int update_video(struct MPContext *mpctx, double endpts, bool reconfig_ok,
double *frame_duration);
void mp_force_video_refresh(struct MPContext *mpctx);
void update_fps(struct MPContext *mpctx);
-void video_execute_format_change(struct MPContext *mpctx);
#endif /* MPLAYER_MP_CORE_H */
diff --git a/video/filter/vf.c b/video/filter/vf.c
index a812ba8136..6749134b05 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -458,12 +458,6 @@ struct mp_image *vf_read_output_frame(struct vf_chain *c)
return res;
}
-struct mp_image *vf_output_queued_frame(struct vf_chain *c, bool eof)
-{
- vf_output_frame(c, eof);
- return vf_read_output_frame(c);
-}
-
static void vf_forget_frames(struct vf_instance *vf)
{
for (int n = 0; n < vf->num_out_queued; n++)
diff --git a/video/filter/vf.h b/video/filter/vf.h
index 5773d36105..86e545aa01 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -143,7 +143,6 @@ int vf_control_by_label(struct vf_chain *c, int cmd, void *arg, bstr label);
int vf_filter_frame(struct vf_chain *c, struct mp_image *img);
int vf_output_frame(struct vf_chain *c, bool eof);
struct mp_image *vf_read_output_frame(struct vf_chain *c);
-struct mp_image *vf_output_queued_frame(struct vf_chain *c, bool eof);
void vf_seek_reset(struct vf_chain *c);
struct vf_instance *vf_append_filter(struct vf_chain *c, const char *name,
char **args);