Skip to content
Snippets Groups Projects
Commit 930aa451 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

Use 'enum PixelFormat *' rather than 'int *' as type for the

AVFilterFormats.formats field.
Cleaner / safer.

Originally committed as revision 20274 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c3b27a3d
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#define LIBAVFILTER_VERSION_MAJOR 1 #define LIBAVFILTER_VERSION_MAJOR 1
#define LIBAVFILTER_VERSION_MINOR 0 #define LIBAVFILTER_VERSION_MINOR 0
#define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_MICRO 1
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \ LIBAVFILTER_VERSION_MINOR, \
...@@ -164,7 +164,7 @@ typedef struct AVFilterFormats AVFilterFormats; ...@@ -164,7 +164,7 @@ typedef struct AVFilterFormats AVFilterFormats;
struct AVFilterFormats struct AVFilterFormats
{ {
unsigned format_count; ///< number of formats unsigned format_count; ///< number of formats
int *formats; ///< list of formats enum PixelFormat *formats; ///< list of pixel formats
unsigned refcount; ///< number of references to this list unsigned refcount; ///< number of references to this list
AVFilterFormats ***refs; ///< references to this list AVFilterFormats ***refs; ///< references to this list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment