summaryrefslogtreecommitdiff
path: root/libavformat/oggparseflac.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-03-12 05:16:39 +0000
committerDavid Conrad <lessen42@gmail.com>2010-03-12 05:16:39 +0000
commite4d2d8c5d720d84997a24178acd9553f23077c03 (patch)
tree460f8bb817ce883b14a1ddab3d88cd73f73892c8 /libavformat/oggparseflac.c
parent2972e36e274ee251711d229d5aa85b55b2d35f66 (diff)
Add ff_ prefix to vorbis_comment
Originally committed as revision 22472 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparseflac.c')
-rw-r--r--libavformat/oggparseflac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparseflac.c b/libavformat/oggparseflac.c
index b524da17ee..36b2345aa6 100644
--- a/libavformat/oggparseflac.c
+++ b/libavformat/oggparseflac.c
@@ -68,7 +68,7 @@ flac_header (AVFormatContext * s, int idx)
st->time_base.num = 1;
st->time_base.den = st->codec->sample_rate;
} else if (mdt == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
- vorbis_comment (s, os->buf + os->pstart + 4, os->psize - 4);
+ ff_vorbis_comment (s, os->buf + os->pstart + 4, os->psize - 4);
}
return 1;