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/flacdec.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/flacdec.c')
-rw-r--r-- | libavformat/flacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index d127dc209f..7174fcf758 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -157,5 +157,5 @@ AVInputFormat ff_flac_demuxer = { .read_packet = ff_raw_read_partial_packet, .flags= AVFMT_GENERIC_INDEX, .extensions = "flac", - .value = CODEC_ID_FLAC, + .raw_codec_id = CODEC_ID_FLAC, }; |