diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:09:15 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:09:15 +0000 |
commit | cd34bc76174397712fc0b2502d550a45dd25c11c (patch) | |
tree | 4a9e2ef00bac83bae45b6d3724d7d7758a11ece8 /libavformat/oggparsetheora.c | |
parent | c18545929e134845ff57e3e98f494965e42ab10a (diff) | |
download | ffmpeg-cd34bc76174397712fc0b2502d550a45dd25c11c.tar.gz |
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.c | 2 |
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, |