Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-05-24 09:27:19 +0400
committerAnton Khirnov <anton@khirnov.net>2011-05-25 17:20:25 +0400
commit5dc8214420e4c48cdf48455329138db752d15cd0 (patch)
tree79a3b4def5fc6f62bcf7d2ed4d3a576c58c52441 /libavformat/avformat.h
parent9bbd6a4cd89da4bfc9fd36fea5777a539a542b40 (diff)
lavf: add priv_class field to AVInputFormat.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 3d4cc68f89..c29f9baf4d 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -425,6 +425,8 @@ typedef struct AVInputFormat {
const AVMetadataConv *metadata_conv;
#endif
+ const AVClass *priv_class; ///< AVClass for the private context
+
/* private fields */
struct AVInputFormat *next;
} AVInputFormat;