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:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-08-24 21:09:15 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-08-24 21:09:15 +0400
commitcd34bc76174397712fc0b2502d550a45dd25c11c (patch)
tree4a9e2ef00bac83bae45b6d3724d7d7758a11ece8 /libavformat/oggparsetheora.c
parentc18545929e134845ff57e3e98f494965e42ab10a (diff)
Make ogg_codec_t descriptions const
Originally committed as revision 14948 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsetheora.c')
-rw-r--r--libavformat/oggparsetheora.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsetheora.c b/libavformat/oggparsetheora.c
index 1a16ca501a..d1a4fdf998 100644
--- a/libavformat/oggparsetheora.c
+++ b/libavformat/oggparsetheora.c
@@ -130,7 +130,7 @@ theora_gptopts(AVFormatContext *ctx, int idx, uint64_t gp)
return iframe + pframe;
}
-ogg_codec_t theora_codec = {
+const ogg_codec_t theora_codec = {
.magic = "\200theora",
.magicsize = 7,
.header = theora_header,