summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-01-31 07:50:31 +0100
committerAnton Khirnov <anton@khirnov.net>2012-01-31 07:50:31 +0100
commitf7fe41a04f962707a99597d2ea49d73ca90b23a0 (patch)
tree7f006be3b4b527e1cbe26e69db18d4c02c5642d7 /libavformat/avformat.h
parent9a463917d30147a9728a7b19b03c217527e09046 (diff)
lavf: rename AVInputFormat.value to raw_codec_id.
It's only used by raw demuxers for storing the codec id.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 09b78a9f64..217d8139df 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -415,9 +415,9 @@ typedef struct AVInputFormat {
struct AVInputFormat *next;
/**
- * General purpose read-only value that the format can use.
+ * Raw demuxers store their codec ID here.
*/
- int value;
+ int raw_codec_id;
/**
* Size of private data so that it can be allocated in the wrapper.