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/rawvideodec.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/rawvideodec.c')
-rw-r--r-- | libavformat/rawvideodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rawvideodec.c b/libavformat/rawvideodec.c index 6ca17d5253..5db4e91f2e 100644 --- a/libavformat/rawvideodec.c +++ b/libavformat/rawvideodec.c @@ -68,6 +68,6 @@ AVInputFormat ff_rawvideo_demuxer = { .read_packet = rawvideo_read_packet, .flags= AVFMT_GENERIC_INDEX, .extensions = "yuv,cif,qcif,rgb", - .value = CODEC_ID_RAWVIDEO, + .raw_codec_id = CODEC_ID_RAWVIDEO, .priv_class = &rawvideo_demuxer_class, }; |