Commit 90f8b2ce authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '4c364eb2'

* commit '4c364eb2':
  shorten: report meaningful errors

Conflicts:
	libavcodec/shorten.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 09131ebb 4c364eb2
......@@ -243,7 +243,7 @@ static int decode_wave_header(AVCodecContext *avctx, const uint8_t *header,
break;
default:
av_log(avctx, AV_LOG_ERROR, "unsupported wave format\n");
return AVERROR_PATCHWELCOME;
return AVERROR(ENOSYS);
}
header += 2; // skip channels (already got from shorten header)
......@@ -255,7 +255,7 @@ static int decode_wave_header(AVCodecContext *avctx, const uint8_t *header,
if (bps != 16 && bps != 8) {
av_log(avctx, AV_LOG_ERROR, "unsupported number of bits per sample: %d\n", bps);
return AVERROR_INVALIDDATA;
return AVERROR(ENOSYS);
}
len -= 16;
......
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