summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-10-04 13:13:07 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-10-04 13:13:07 +0000
commit58f2a4b07ffde8b236457229657bbd6733849d87 (patch)
tree226d2f406c4c3cfd49ff6a236ddf2aaaab766389 /libavcodec/avcodec.h
parent2bb7875987877c213ff035f80d6f5ebc1d4d65b9 (diff)
change extradata type to uint8_t *
Originally committed as revision 6551 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index a3e80ca8b3..ad7c7760d0 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -741,7 +741,7 @@ typedef struct AVCodecContext {
* - encoding: set/allocated/freed by lavc.
* - decoding: set/allocated/freed by user.
*/
- void *extradata;
+ uint8_t *extradata;
int extradata_size;
/**