diff options
author | Marton Balint <cus@passwd.hu> | 2019-08-24 01:39:33 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2019-08-31 17:38:25 +0200 |
commit | 2e31774b409d77f046f166fb3ff630a9ef91def7 (patch) | |
tree | b95e7a602e68333b47e286ea883da1192f51067e /libavformat/riff.h | |
parent | 765c56bfa9037060e36250090880b2961c88f27d (diff) | |
download | ffmpeg-2e31774b409d77f046f166fb3ff630a9ef91def7.tar.gz |
avformat/avidec: add support for recognizing HEVC fourcc when demuxing
Some security cams generate this, as well as some versions of VirtualDub and
VLC so support for _reading_ such files is justified.
Fixes ticket #7110.
See also this discussion: https://patchwork.ffmpeg.org/patch/8744/
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/riff.h')
-rw-r--r-- | libavformat/riff.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.h b/libavformat/riff.h index 323aa38b4d..21078b77c8 100644 --- a/libavformat/riff.h +++ b/libavformat/riff.h @@ -73,6 +73,8 @@ int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *pa extern const AVCodecTag ff_codec_bmp_tags[]; // exposed through avformat_get_riff_video_tags() extern const AVCodecTag ff_codec_wav_tags[]; +extern const AVCodecTag ff_codec_bmp_tags_unofficial[]; + void ff_parse_specific_params(AVStream *st, int *au_rate, int *au_ssize, int *au_scale); int ff_read_riff_info(AVFormatContext *s, int64_t size); |