Skip to content

Commit

Permalink
svq1: return meaningful error codes.
Browse files Browse the repository at this point in the history
  • Loading branch information
elenril committed Dec 12, 2012
1 parent 998fdcf commit c4182d7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions libavcodec/svq1dec.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ static int svq1_decode_block_intra(GetBitContext *bitbuf, uint8_t *pixels,
av_dlog(NULL,
"Error (svq1_decode_block_intra): invalid vector: stages=%i level=%i\n",
stages, level);
return -1; /* invalid vector */
return AVERROR_INVALIDDATA; /* invalid vector */
}

mean = get_vlc2(bitbuf, svq1_intra_mean.table, 8, 3);
Expand Down Expand Up @@ -254,7 +254,7 @@ static int svq1_decode_block_non_intra(GetBitContext *bitbuf, uint8_t *pixels,
av_dlog(NULL,
"Error (svq1_decode_block_non_intra): invalid vector: stages=%i level=%i\n",
stages, level);
return -1; /* invalid vector */
return AVERROR_INVALIDDATA; /* invalid vector */
}

mean = get_vlc2(bitbuf, svq1_inter_mean.table, 9, 3) - 256;
Expand Down Expand Up @@ -287,7 +287,7 @@ static int svq1_decode_motion_vector(GetBitContext *bitbuf, svq1_pmv *mv,
/* get motion code */
diff = get_vlc2(bitbuf, svq1_motion_component.table, 7, 2);
if (diff < 0)
return -1;
return AVERROR_INVALIDDATA;
else if (diff) {
if (get_bits1(bitbuf))
diff = -diff;
Expand Down Expand Up @@ -576,7 +576,7 @@ static int svq1_decode_frame_header(AVCodecContext *avctx, AVFrame *frame)
s->height = get_bits(bitbuf, 12);

if (!s->width || !s->height)
return -1;
return AVERROR_INVALIDDATA;
} else {
/* get width, height from table */
s->width = ff_svq1_frame_size_table[frame_size_code].width;
Expand All @@ -590,7 +590,7 @@ static int svq1_decode_frame_header(AVCodecContext *avctx, AVFrame *frame)
skip_bits1(bitbuf); /* component checksums after image data if (1) */

if (get_bits(bitbuf, 2) != 0)
return -1;
return AVERROR_INVALIDDATA;
}

if (get_bits1(bitbuf) == 1) {
Expand Down Expand Up @@ -627,7 +627,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data,
s->frame_code = get_bits(&s->gb, 22);

if ((s->frame_code & ~0x70) || !(s->frame_code & 0x60))
return -1;
return AVERROR_INVALIDDATA;

/* swap some header bytes (why?) */
if (s->frame_code != 0x20) {
Expand Down Expand Up @@ -657,7 +657,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data,

pmv = av_malloc((FFALIGN(s->width, 16) / 8 + 3) * sizeof(*pmv));
if (!pmv)
return -1;
return AVERROR(ENOMEM);

/* decode y, u and v components */
for (i = 0; i < 3; i++) {
Expand Down

0 comments on commit c4182d7

Please sign in to comment.