diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:37:43 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:37:43 +0000 |
commit | 547ea47d4fb2792e4385f2fadc32dbbcc60a2cc0 (patch) | |
tree | 7162193685ae7d4def5259bb76750a57e34c5b07 /libavformat/oggparseflac.c | |
parent | aecf157ed0c193b2f871102ccbe2bc39877dfc93 (diff) | |
download | ffmpeg-547ea47d4fb2792e4385f2fadc32dbbcc60a2cc0.tar.gz |
Add ff_ prefix to ogg_codec_t structs
Originally committed as revision 14951 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 7a0084e7fb..28c6ce365f 100644 --- a/libavformat/oggparseflac.c +++ b/libavformat/oggparseflac.c @@ -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 |