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

@@ -149,28 +149,28 @@ ogm_packet(AVFormatContext *s, int idx)
return 0;
}
const ogg_codec_t ogm_video_codec = {
const ogg_codec_t ff_ogm_video_codec = {
.magic = "\001video",
.magicsize = 6,
.header = ogm_header,
.packet = ogm_packet
};
const ogg_codec_t ogm_audio_codec = {
const ogg_codec_t ff_ogm_audio_codec = {
.magic = "\001audio",
.magicsize = 6,
.header = ogm_header,
.packet = ogm_packet
};
const ogg_codec_t ogm_text_codec = {
const ogg_codec_t ff_ogm_text_codec = {
.magic = "\001text",
.magicsize = 5,
.header = ogm_header,
.packet = ogm_packet
};
const ogg_codec_t ogm_old_codec = {
const ogg_codec_t ff_ogm_old_codec = {
.magic = "\001Direct Show Samples embedded in Ogg",
.magicsize = 35,
.header = ogm_dshow_header,