git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60b6dbe
)
don't cast const away
author
Aurelien Jacobs
<aurel@gnuage.org>
Fri, 1 Feb 2008 23:48:39 +0000
(23:48 +0000)
committer
Aurelien Jacobs
<aurel@gnuage.org>
Fri, 1 Feb 2008 23:48:39 +0000
(23:48 +0000)
Originally committed as revision 11801 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/h263_parser.c
patch
|
blob
|
history
diff --git
a/libavcodec/h263_parser.c
b/libavcodec/h263_parser.c
index
c289ca3
..
bfef3b5
100644
(file)
--- 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;
}