Browse Source

Move the description field of the filter from AVFilterContext to

AVFilter, where it should have had defined the first time.
+10L.

Originally committed as revision 20356 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini 16 years ago
parent
commit
cccd292ae2
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      libavfilter/avfilter.h

+ 7
- 7
libavfilter/avfilter.h View File

@@ -24,7 +24,7 @@

#define LIBAVFILTER_VERSION_MAJOR 1
#define LIBAVFILTER_VERSION_MINOR 4
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_MICRO 1

#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
@@ -406,6 +406,12 @@ typedef struct

const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none

/**
* A description for the filter. You should use the
* NULL_IF_CONFIG_SMALL() macro to define it.
*/
const char *description;
} AVFilter;

/** An instance of a filter */
@@ -426,12 +432,6 @@ struct AVFilterContext
AVFilterLink **outputs; ///< array of pointers to output links

void *priv; ///< private data for use by the filter

/**
* A description for the filter. You should use the
* NULL_IF_CONFIG_SMALL() macro to define it.
*/
const char *description;
};

/**


Loading…
Cancel
Save