diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-08-18 09:45:25 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-08-18 09:45:25 +0200 |
commit | f866f22c3f581d776d1592f337809fb4a8036564 (patch) | |
tree | b6e62dd31cae14055501ee66a47187c79e2562e3 /libavformat | |
parent | bba6a03b2816d805d44bce4f9701a71f7d3f8dad (diff) | |
download | ffmpeg-f866f22c3f581d776d1592f337809fb4a8036564.tar.gz |
lavf/pcmdec: Try to fix msvc compilation after 4c42d306.
Diffstat (limited to 'libavformat')
-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 f496417868..3c7e8ac84b 100644 --- a/libavformat/pcmdec.c +++ b/libavformat/pcmdec.c @@ -111,8 +111,8 @@ AVInputFormat ff_pcm_ ## name_ ## _demuxer = { \ .flags = AVFMT_GENERIC_INDEX, \ .extensions = ext, \ .raw_codec_id = codec, \ - __VA_ARGS__ \ .priv_class = &name_ ## _demuxer_class, \ + __VA_ARGS__ \ }; PCMDEF(f64be, "PCM 64-bit floating-point big-endian", |