~ubuntu-branches/ubuntu/vivid/mpv/vivid

« back to all changes in this revision

Viewing changes to video/filter/vf.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2014-04-30 13:28:31 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20140430132831-8lchxxcdc2dzww3v
Tags: 0.3.9-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
    void (*uninit)(struct vf_instance *vf);
76
76
 
77
77
    char *label;
 
78
    bool autoinserted;
78
79
 
79
80
    struct mp_image_params fmt_in, fmt_out;
80
81
 
134
135
void vf_seek_reset(struct vf_chain *c);
135
136
struct vf_instance *vf_append_filter(struct vf_chain *c, const char *name,
136
137
                                     char **args);
 
138
void vf_remove_filter(struct vf_chain *c, struct vf_instance *vf);
137
139
int vf_append_filter_list(struct vf_chain *c, struct m_obj_settings *list);
138
140
struct vf_instance *vf_find_by_label(struct vf_chain *c, const char *label);
139
141
void vf_print_filter_chain(struct vf_chain *c, int msglevel);