[FFmpeg-devel] [PATCH 1/5] avfilter: restore fields order in AVFilterFormats.
Nicolas George
nicolas.george at normalesup.org
Fri May 18 15:15:37 CEST 2012
Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
libavfilter/avfilter.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 124f3e6..b588118 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -260,8 +260,8 @@ void avfilter_unref_bufferp(AVFilterBufferRef **ref);
* pointer to each of the pointers to itself.
*/
typedef struct AVFilterFormats {
- int64_t *formats; ///< list of media formats
unsigned format_count; ///< number of formats
+ int64_t *formats; ///< list of media formats
unsigned refcount; ///< number of references to this list
struct AVFilterFormats ***refs; ///< references to this list
--
1.7.10
More information about the ffmpeg-devel
mailing list