Commit a4f27a3f authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/brenderpix: propagate error codes

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 85064233
...@@ -169,7 +169,7 @@ static int pix_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -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, ...@@ -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");
......
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