~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_filter/video_filters.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
                VF_BLENDREMOVAL,
92
92
                VF_TDEINT,
93
93
                VF_MPDELOGO,
 
94
                VF_COLOR_YUV,
 
95
                VF_ANIMATED,
 
96
                VF_MCDEINT,
 
97
                VF_REVERSE,
 
98
                VF_FADE,
 
99
                VF_ASS,
94
100
                VF_DUMMY
95
101
         }VF_FILTERS;
96
102
        
138
144
 int filterLoad(char *name,uint8_t silent);
139
145
 void filterSave(char *name,uint8_t silent);
140
146
CONFcouple *filterBuildCouple(FILTER_PARAM *param,uint32_t n,Arg *args);
141
 
void filterSaveScript(char *name);
142
 
void filterSaveScriptFD(FILE *f);
143
147
void filterSaveScriptJS(FILE *f);
144
148
void registerFilter(const char *name,VF_FILTERS tag,uint8_t viewable,
145
149
                        AVDMGenericVideoStream *(*create) (AVDMGenericVideoStream *in, CONFcouple *),char *fname);