wavenc: use codec descriptors to get the codec name
authorAnton Khirnov <anton@khirnov.net>
Tue, 29 Apr 2014 15:01:17 +0000 (17:01 +0200)
committerAnton Khirnov <anton@khirnov.net>
Sun, 18 May 2014 18:33:38 +0000 (20:33 +0200)
Also, return a proper error code.

libavformat/wavenc.c

index 86ed557..25f6ffc 100644 (file)
@@ -110,9 +110,10 @@ static int wav_write_header(AVFormatContext *s)
     /* format header */
     fmt = ff_start_tag(pb, "fmt ");
     if (ff_put_wav_header(pb, s->streams[0]->codec) < 0) {
+        const AVCodecDescriptor *desc = avcodec_descriptor_get(s->streams[0]->codec->codec_id);
         av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
-               s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
-        return -1;
+               desc ? desc->name : "unknown");
+        return AVERROR(ENOSYS);
     }
     ff_end_tag(pb, fmt);