avcodec/brenderpix: propagate error codes

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-03-27 22:07:49 +01:00
parent 8506423318
commit a4f27a3f57
1 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ static int pix_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
ret = pix_decode_header(&hdr, &gb); ret = pix_decode_header(&hdr, &gb);
if (ret < 0) { if (ret < 0) {
av_log(avctx, AV_LOG_ERROR, "Invalid header length.\n"); av_log(avctx, AV_LOG_ERROR, "Invalid header length.\n");
return AVERROR_INVALIDDATA; return ret;
} }
switch (hdr.format) { switch (hdr.format) {
case 3: case 3:
@ -223,7 +223,7 @@ static int pix_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
ret = pix_decode_header(&palhdr, &gb); ret = pix_decode_header(&palhdr, &gb);
if (ret < 0) { if (ret < 0) {
av_log(avctx, AV_LOG_ERROR, "Invalid palette header length.\n"); av_log(avctx, AV_LOG_ERROR, "Invalid palette header length.\n");
return AVERROR_INVALIDDATA; return ret;
} }
if (palhdr.format != 7) if (palhdr.format != 7)
avpriv_request_sample(avctx, "Palette not in RGB format"); avpriv_request_sample(avctx, "Palette not in RGB format");