Add ff_ prefix to ogg_codec_t structs

Originally committed as revision 14951 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger
2008-08-24 17:37:43 +00:00
parent aecf157ed0
commit 547ea47d4f
7 changed files with 27 additions and 27 deletions

View File

@@ -85,13 +85,13 @@ old_flac_header (AVFormatContext * s, int idx)
return 0;
}
const ogg_codec_t flac_codec = {
const ogg_codec_t ff_flac_codec = {
.magic = "\177FLAC",
.magicsize = 5,
.header = flac_header
};
const ogg_codec_t old_flac_codec = {
const ogg_codec_t ff_old_flac_codec = {
.magic = "fLaC",
.magicsize = 4,
.header = old_flac_header