diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-31 07:50:31 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-31 07:50:31 +0100 |
commit | f7fe41a04f962707a99597d2ea49d73ca90b23a0 (patch) | |
tree | 7f006be3b4b527e1cbe26e69db18d4c02c5642d7 /libavformat/pcmdec.c | |
parent | 9a463917d30147a9728a7b19b03c217527e09046 (diff) | |
download | ffmpeg-f7fe41a04f962707a99597d2ea49d73ca90b23a0.tar.gz |
lavf: rename AVInputFormat.value to raw_codec_id.
It's only used by raw demuxers for storing the codec id.
Diffstat (limited to 'libavformat/pcmdec.c')
-rw-r--r-- | libavformat/pcmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/pcmdec.c b/libavformat/pcmdec.c index b61fb33764..1e36cc4e76 100644 --- a/libavformat/pcmdec.c +++ b/libavformat/pcmdec.c @@ -70,7 +70,7 @@ AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \ .read_seek = pcm_read_seek, \ .flags = AVFMT_GENERIC_INDEX, \ .extensions = ext, \ - .value = codec, \ + .raw_codec_id = codec, \ .priv_class = &name_ ## _demuxer_class, \ }; |