Browse Source

actually return bytes read

Originally committed as revision 8502 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 18 years ago
parent
commit
877519f550
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/gifdec.c

+ 1
- 1
libavcodec/gifdec.c View File

@@ -317,7 +317,7 @@ static int gif_decode_frame(AVCodecContext *avctx, void *data, int *data_size, u

*picture = s->picture;
*data_size = sizeof(AVPicture);
return 0;
return s->bytestream - buf;
}

static int gif_decode_close(AVCodecContext *avctx)


Loading…
Cancel
Save