diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-21 22:57:59 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-23 19:25:50 +0100 |
commit | d3b577f00d14fb8b8a962163a136dde96d9396b4 (patch) | |
tree | ac1b2b964f97b899339f25d9896c3655c7d3fea7 /libavcodec/libxavs.c | |
parent | a5f848c86db28b0c328593abeea4678903a66f07 (diff) | |
download | ffmpeg-d3b577f00d14fb8b8a962163a136dde96d9396b4.tar.gz |
libxavs: add an AVClass at the beginning of XavsContext.
Diffstat (limited to 'libavcodec/libxavs.c')
-rw-r--r-- | libavcodec/libxavs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libxavs.c b/libavcodec/libxavs.c index 83f74a713c..f285ac4e04 100644 --- a/libavcodec/libxavs.c +++ b/libavcodec/libxavs.c @@ -37,6 +37,7 @@ #define XAVS_PART_B8X8 0x100 /* Analyze b16x8, b*/ typedef struct XavsContext { + AVClass *class; xavs_param_t params; xavs_t *enc; xavs_picture_t pic; |