aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vorbis_enc.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 /libavcodec/vorbis_enc.c
parent4c64c8e95a02b1d69aabb400fa73cba7ef8f41f7 (diff)
downloadffmpeg-6001dad6e2eb654fba9bf3d6bda6a3734253cbc6.tar.gz
Replace more FFmpeg references by Libav.
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r--libavcodec/vorbis_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c
index 748fbd66fe..74933af4d5 100644
--- a/libavcodec/vorbis_enc.c
+++ b/libavcodec/vorbis_enc.c
@@ -957,7 +957,7 @@ static av_cold int vorbis_encode_init(AVCodecContext *avccontext)
vorbis_enc_context *venc = avccontext->priv_data;
if (avccontext->channels != 2) {
- av_log(avccontext, AV_LOG_ERROR, "Current FFmpeg Vorbis encoder only supports 2 channels.\n");
+ av_log(avccontext, AV_LOG_ERROR, "Current Libav Vorbis encoder only supports 2 channels.\n");
return -1;
}