Commit bde7f640 authored by reimar's avatar reimar

Check av_new_stream return value, fixes CID75 RUN2


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13536 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8afb8d8d
......@@ -22,6 +22,8 @@
static int daud_header(AVFormatContext *s, AVFormatParameters *ap) {
AVStream *st = av_new_stream(s, 0);
if (!st)
return AVERROR(ENOMEM);
st->codec->codec_type = CODEC_TYPE_AUDIO;
st->codec->codec_id = CODEC_ID_PCM_S24DAUD;
st->codec->codec_tag = MKTAG('d', 'a', 'u', 'd');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment