diff options
author | David Conrad <lessen42@gmail.com> | 2010-03-12 05:16:39 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-03-12 05:16:39 +0000 |
commit | e4d2d8c5d720d84997a24178acd9553f23077c03 (patch) | |
tree | 460f8bb817ce883b14a1ddab3d88cd73f73892c8 /libavformat/oggparsespeex.c | |
parent | 2972e36e274ee251711d229d5aa85b55b2d35f66 (diff) | |
download | ffmpeg-e4d2d8c5d720d84997a24178acd9553f23077c03.tar.gz |
Add ff_ prefix to vorbis_comment
Originally committed as revision 22472 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 395ae59377..05a998b228 100644 --- a/libavformat/oggparsespeex.c +++ b/libavformat/oggparsespeex.c @@ -75,7 +75,7 @@ static int speex_header(AVFormatContext *s, int idx) { st->time_base.num = 1; st->time_base.den = st->codec->sample_rate; } else - vorbis_comment(s, p, os->psize); + ff_vorbis_comment(s, p, os->psize); spxp->seq++; return 1; |