mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/wavenc: Improve unsupported codec error messages
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
95af3b6625
commit
6eab25fd13
@ -159,9 +159,8 @@ static av_cold int peak_init_writer(AVFormatContext *s)
|
||||
par->codec_id != AV_CODEC_ID_PCM_S16LE &&
|
||||
par->codec_id != AV_CODEC_ID_PCM_U8 &&
|
||||
par->codec_id != AV_CODEC_ID_PCM_U16LE) {
|
||||
AVCodec *codec = avcodec_find_decoder(s->streams[0]->codecpar->codec_id);
|
||||
av_log(s, AV_LOG_ERROR, "%s codec not supported for Peak Chunk\n",
|
||||
codec ? codec->name : "NONE");
|
||||
av_log(s, AV_LOG_ERROR, "Codec %s not supported for Peak Chunk\n",
|
||||
avcodec_get_name(par->codec_id));
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -325,9 +324,8 @@ static int wav_write_header(AVFormatContext *s)
|
||||
/* format header */
|
||||
fmt = ff_start_tag(pb, "fmt ");
|
||||
if (ff_put_wav_header(s, pb, s->streams[0]->codecpar, 0) < 0) {
|
||||
const AVCodecDescriptor *desc = avcodec_descriptor_get(s->streams[0]->codecpar->codec_id);
|
||||
av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
|
||||
desc ? desc->name : "unknown");
|
||||
av_log(s, AV_LOG_ERROR, "Codec %s not supported in WAVE format\n",
|
||||
avcodec_get_name(s->streams[0]->codecpar->codec_id));
|
||||
return AVERROR(ENOSYS);
|
||||
}
|
||||
ff_end_tag(pb, fmt);
|
||||
@ -553,9 +551,8 @@ static int w64_write_header(AVFormatContext *s)
|
||||
avio_write(pb, ff_w64_guid_wave, sizeof(ff_w64_guid_wave));
|
||||
start_guid(pb, ff_w64_guid_fmt, &start);
|
||||
if ((ret = ff_put_wav_header(s, pb, s->streams[0]->codecpar, 0)) < 0) {
|
||||
AVCodec *codec = avcodec_find_decoder(s->streams[0]->codecpar->codec_id);
|
||||
av_log(s, AV_LOG_ERROR, "%s codec not supported\n",
|
||||
codec ? codec->name : "NONE");
|
||||
av_log(s, AV_LOG_ERROR, "Codec %s not supported\n",
|
||||
avcodec_get_name(s->streams[0]->codecpar->codec_id));
|
||||
return ret;
|
||||
}
|
||||
end_guid(pb, start);
|
||||
|
Loading…
Reference in New Issue
Block a user