summaryrefslogtreecommitdiff
path: root/libavformat/oggdec.h
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-03-12 05:16:47 +0000
committerDavid Conrad <lessen42@gmail.com>2010-03-12 05:16:47 +0000
commit533c30fcedd56a8a1146ef09e9e2a8a471ffd321 (patch)
treefe5c5a98d93bd9ecb586e3e8f1820efdb62b2be9 /libavformat/oggdec.h
parentb53cde48bdc807fe5126eee7dc116812c6607974 (diff)
Const correctness for vorbis_comment
Originally committed as revision 22474 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r--libavformat/oggdec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h
index 2f3a6f3d07..e404e586ff 100644
--- a/libavformat/oggdec.h
+++ b/libavformat/oggdec.h
@@ -115,7 +115,7 @@ extern const struct ogg_codec ff_vorbis_codec;
extern const AVMetadataConv ff_vorbiscomment_metadata_conv[];
-int ff_vorbis_comment(AVFormatContext *ms, AVMetadata **m, uint8_t *buf, int size);
+int ff_vorbis_comment(AVFormatContext *ms, AVMetadata **m, const uint8_t *buf, int size);
static inline int
ogg_find_stream (struct ogg * ogg, int serial)