summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
d224d73)
Commited in SoC by Vitor Sessak on 2008-02-09 15:59:47
Originally committed as revision 12110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* input may have the same name as an output. This may be NULL if this
* pad has no need to ever be referenced by name.
*/
* input may have the same name as an output. This may be NULL if this
* pad has no need to ever be referenced by name.
*/
/**
* AVFilterPad type. Only video supported now, hopefully someone will
/**
* AVFilterPad type. Only video supported now, hopefully someone will
- char *name; ///< filter name
- char *author; ///< filter author
+ const char *name; ///< filter name
+ const char *author; ///< filter author
int priv_size; ///< size of private data to allocate for the filter
int priv_size; ///< size of private data to allocate for the filter
* @return The filter definition, if any matching one is registered.
* NULL if none found.
*/
* @return The filter definition, if any matching one is registered.
* NULL if none found.
*/
-AVFilter *avfilter_get_by_name(char *name);
+AVFilter *avfilter_get_by_name(const char *name);
/**
* Create a filter instance
/**
* Create a filter instance
* @param inst_name Name to give to the new instance. Can be NULL for none.
* @return Pointer to the new instance on success. NULL on failure.
*/
* @param inst_name Name to give to the new instance. Can be NULL for none.
* @return Pointer to the new instance on success. NULL on failure.
*/
-AVFilterContext *avfilter_open(AVFilter *filter, char *inst_name);
+AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name);
/**
* Initialize a filter
/**
* Initialize a filter