diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-02-01 23:48:39 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-02-01 23:48:39 +0000 |
commit | 4e56af82533e0912dd7dce9b32e151b17d6eaf3f (patch) | |
tree | 7cf002ae95692e23b8be4ddfebd708c4163f8120 | |
parent | 60b6dbe7160eaf627dfb216f5cc644cd186734a2 (diff) | |
download | ffmpeg-4e56af82533e0912dd7dce9b32e151b17d6eaf3f.tar.gz |
don't cast const away
Originally committed as revision 11801 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 c289ca3cc5..bfef3b5bbd 100644 --- a/libavcodec/h263_parser.c +++ b/libavcodec/h263_parser.c @@ -77,7 +77,7 @@ static int h263_parse(AVCodecParserContext *s, return buf_size; } - *poutbuf = (uint8_t *)buf; + *poutbuf = buf; *poutbuf_size = buf_size; return next; } |