Make ogg_codec_t descriptions const
Originally committed as revision 14948 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c18545929e
commit
cd34bc7617
7 changed files with 20 additions and 20 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue