summaryrefslogtreecommitdiff
path: root/libavcodec/h263_parser.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-16 15:15:16 +0000
committerMåns Rullgård <mans@mansr.com>2007-06-16 15:15:16 +0000
commite336139f0c609c662d129a0a8a9acf91c1083e3d (patch)
tree56f53ea25d4f85fae41a5ccb2b375f1f6cd9cebe /libavcodec/h263_parser.c
parente1659f0cc78968ff108967ab316bdd2913220aaa (diff)
correct type for h263_parse()
Originally committed as revision 9337 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263_parser.c')
-rw-r--r--libavcodec/h263_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263_parser.c b/libavcodec/h263_parser.c
index 7031ad9019..53a26c05cd 100644
--- a/libavcodec/h263_parser.c
+++ b/libavcodec/h263_parser.c
@@ -63,7 +63,7 @@ int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
static int h263_parse(AVCodecParserContext *s,
AVCodecContext *avctx,
- uint8_t **poutbuf, int *poutbuf_size,
+ const uint8_t **poutbuf, int *poutbuf_size,
const uint8_t *buf, int buf_size)
{
ParseContext *pc = s->priv_data;