diff options
author | Måns Rullgård <mans@mansr.com> | 2007-07-08 23:15:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-07-08 23:15:08 +0000 |
commit | 6785cae35c4b5d407eac2d06d95e7049c191d1f3 (patch) | |
tree | 2fc325e20e14730f9581108fbd09dbe0e7d64e62 /libavcodec/h263_parser.c | |
parent | 4a64abdc63131944c4b19b9c276098d5f060077f (diff) | |
download | ffmpeg-6785cae35c4b5d407eac2d06d95e7049c191d1f3.tar.gz |
trivial warning fixes
Originally committed as revision 9551 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263_parser.c')
-rw-r--r-- | libavcodec/h263_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263_parser.c b/libavcodec/h263_parser.c index 53a26c05cd..c289ca3cc5 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -71,7 +71,7 @@ static int h263_parse(AVCodecParserContext *s, next= ff_h263_find_frame_end(pc, buf, buf_size); - if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) { + if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { *poutbuf = NULL; *poutbuf_size = 0; return buf_size; |