From 655c36b22fd889f61aa31d769addbcde695d7252 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Wed, 29 Sep 2010 11:59:25 +0000
Subject: [PATCH] Add AVClass for the private context, this will be used for
 codec specific options.

Originally committed as revision 25250 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/avcodec.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 9f888992c8e..c12d4ebf555 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2762,6 +2762,7 @@ typedef struct AVCodec {
     const enum SampleFormat *sample_fmts;   ///< array of supported sample formats, or NULL if unknown, array is terminated by -1
     const int64_t *channel_layouts;         ///< array of support channel layouts, or NULL if unknown. array is terminated by 0
     uint8_t max_lowres;                     ///< maximum value for lowres supported by the decoder
+    AVClass *priv_class;                    ///< AVClass for the private context
 } AVCodec;
 
 /**
-- 
GitLab