mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/webmdashenc: Check codec types
The WebM DASH Manifest muxer only supports VP8, VP9, Vorbis and Opus,
but there was no check for this. The codec type is used to get a pointer
to a string containing the codec name or NULL if it is not one of those
four codecs. Said pointer has then been used without further checks as
string for the %s conversion specifier in an avio_printf()) call which
is undefined behaviour.
This commit adds a check for the supported codec types.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit cbea58b2b3
)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
445fee99b8
commit
397705d4c1
@ -484,6 +484,14 @@ static int webm_dash_manifest_write_header(AVFormatContext *s)
|
||||
double start = 0.0;
|
||||
int ret;
|
||||
WebMDashMuxContext *w = s->priv_data;
|
||||
|
||||
for (unsigned i = 0; i < s->nb_streams; i++) {
|
||||
enum AVCodecID codec_id = s->streams[i]->codecpar->codec_id;
|
||||
if (codec_id != AV_CODEC_ID_VP8 && codec_id != AV_CODEC_ID_VP9 &&
|
||||
codec_id != AV_CODEC_ID_VORBIS && codec_id != AV_CODEC_ID_OPUS)
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
ret = parse_adaptation_sets(s);
|
||||
if (ret < 0) {
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user