mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-11 09:59:50 +00:00
avformat/smacker: check avformat_new_stream() return value
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
848ad8db22
commit
9e505485f3
@ -180,6 +180,8 @@ static int smacker_read_header(AVFormatContext *s)
|
||||
smk->indexes[i] = -1;
|
||||
if (smk->rates[i]) {
|
||||
ast[i] = avformat_new_stream(s, NULL);
|
||||
if (!ast[i])
|
||||
return AVERROR(ENOMEM);
|
||||
smk->indexes[i] = ast[i]->index;
|
||||
ast[i]->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
||||
if (smk->aflags[i] & SMK_AUD_BINKAUD) {
|
||||
|
Loading…
Reference in New Issue
Block a user