summaryrefslogtreecommitdiff
path: root/libavformat/oggparsespeex.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-15 22:30:26 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-17 19:31:49 +0200
commit6001dad6e2eb654fba9bf3d6bda6a3734253cbc6 (patch)
tree3ca9b6cf56fb99279c423ba4f976eb9923f72b26 /libavformat/oggparsespeex.c
parent4c64c8e95a02b1d69aabb400fa73cba7ef8f41f7 (diff)
Replace more FFmpeg references by Libav.
Diffstat (limited to 'libavformat/oggparsespeex.c')
-rw-r--r--libavformat/oggparsespeex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsespeex.c b/libavformat/oggparsespeex.c
index 80b2001ddf..2f4aec7f07 100644
--- a/libavformat/oggparsespeex.c
+++ b/libavformat/oggparsespeex.c
@@ -59,7 +59,7 @@ static int speex_header(AVFormatContext *s, int idx) {
st->codec->channels = AV_RL32(p + 48);
/* We treat the whole Speex packet as a single frame everywhere Speex
- is handled in FFmpeg. This avoids the complexities of splitting
+ is handled in Libav. This avoids the complexities of splitting
and joining individual Speex frames, which are not always
byte-aligned. */
st->codec->frame_size = AV_RL32(p + 56);