lavf: rename AVInputFormat.value to raw_codec_id.

It's only used by raw demuxers for storing the codec id.
This commit is contained in:
Anton Khirnov
2012-01-31 07:50:31 +01:00
parent 9a463917d3
commit f7fe41a04f
12 changed files with 24 additions and 24 deletions

View File

@@ -67,7 +67,7 @@ AVInputFormat ff_ ## shortname ## _demuxer = {\
.read_packet = ff_raw_read_partial_packet,\
.extensions = ext,\
.flags = AVFMT_GENERIC_INDEX,\
.value = id,\
.raw_codec_id = id,\
.priv_data_size = sizeof(FFRawVideoDemuxerContext),\
.priv_class = &shortname ## _demuxer_class,\
};