summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-10-05 21:09:51 +0200
committerAnton Khirnov <anton@khirnov.net>2011-10-06 09:16:06 +0200
commitd97efd7f879779034cca0bd16acceed47718e04e (patch)
treed790cf3cac34a9350990a0014b93425597cd040e /libavcodec/avcodec.h
parent4418aa9cb3b2f0b83748e37d2952560cf84b3611 (diff)
libx264: support 9- and 10-bit output.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 2e37f5a1b1..5a69c24ea0 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2984,6 +2984,11 @@ typedef struct AVCodec {
* Private codec-specific defaults.
*/
const AVCodecDefault *defaults;
+
+ /**
+ * Initialize codec static data, called from avcodec_register().
+ */
+ void (*init_static_data)(struct AVCodec *codec);
} AVCodec;
/**