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/oggparseflac.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/oggparseflac.c')
-rw-r--r-- | libavformat/oggparseflac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/oggparseflac.c b/libavformat/oggparseflac.c index 386a70ebd4..7a0084e7fb 100644 --- a/libavformat/oggparseflac.c +++ b/libavformat/oggparseflac.c @@ -85,13 +85,13 @@ old_flac_header (AVFormatContext * s, int idx) return 0; } -ogg_codec_t flac_codec = { +const ogg_codec_t flac_codec = { .magic = "\177FLAC", .magicsize = 5, .header = flac_header }; -ogg_codec_t old_flac_codec = { +const ogg_codec_t old_flac_codec = { .magic = "fLaC", .magicsize = 4, .header = old_flac_header |