Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2008-02-02 02:48:39 +0300
committerAurelien Jacobs <aurel@gnuage.org>2008-02-02 02:48:39 +0300
commit4e56af82533e0912dd7dce9b32e151b17d6eaf3f (patch)
tree7cf002ae95692e23b8be4ddfebd708c4163f8120 /libavcodec/h263_parser.c
parent60b6dbe7160eaf627dfb216f5cc644cd186734a2 (diff)
don't cast const away
Originally committed as revision 11801 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 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;
}