diff options
author | Reimar Döffinger | 2008-08-24 17:37:43 +0000 |
---|---|---|
committer | Reimar Döffinger | 2008-08-24 17:37:43 +0000 |
commit | 547ea47d4fb2792e4385f2fadc32dbbcc60a2cc0 (patch) | |
tree | 7162193685ae7d4def5259bb76750a57e34c5b07 /libavformat/oggparsespeex.c | |
parent | aecf157ed0c193b2f871102ccbe2bc39877dfc93 (diff) |
Add ff_ prefix to ogg_codec_t structs
Originally committed as revision 14951 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsespeex.c')
-rw-r--r-- | libavformat/oggparsespeex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsespeex.c b/libavformat/oggparsespeex.c index 1612f2e632..c78379911f 100644 --- a/libavformat/oggparsespeex.c +++ b/libavformat/oggparsespeex.c @@ -54,7 +54,7 @@ static int speex_header(AVFormatContext *s, int idx) { return 0; } -const ogg_codec_t speex_codec = { +const ogg_codec_t ff_speex_codec = { .magic = "Speex ", .magicsize = 8, .header = speex_header |