Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2011-10-25 12:14:34 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-10-25 17:04:51 +0400
commitcf88cf17d0c6bd745f3e57e5e562ad2badf45dc1 (patch)
tree14324675d9584fc60dd894fd09d90612971e90e7 /libavcodec/libcelt_dec.c
parent02ac6a654457122d67b0c1e8abf04902147954c8 (diff)
Remove CELT / Opus confusion in labels, doc and comments.
The situation was not clear when support was added but it is now: CELT and Opus are really two different codecs. The current code supports CELT via libcelt, not Opus. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libcelt_dec.c')
-rw-r--r--libavcodec/libcelt_dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libcelt_dec.c b/libavcodec/libcelt_dec.c
index de126c8c81..8b8863ae4a 100644
--- a/libavcodec/libcelt_dec.c
+++ b/libavcodec/libcelt_dec.c
@@ -1,5 +1,5 @@
/*
- * Xiph CELT / Opus decoder using libcelt
+ * Xiph CELT decoder using libcelt
* Copyright (c) 2011 Nicolas George
*
* This file is part of FFmpeg.
@@ -133,5 +133,5 @@ AVCodec ff_libcelt_decoder = {
.close = libcelt_dec_close,
.decode = libcelt_dec_decode,
.capabilities = 0,
- .long_name = NULL_IF_CONFIG_SMALL("Xiph CELT/Opus decoder using libcelt"),
+ .long_name = NULL_IF_CONFIG_SMALL("Xiph CELT decoder using libcelt"),
};