[FFmpeg-cvslog] vorbis: Rename decoder/encoder files to follow general file naming scheme.

Diego Biurrun git at videolan.org
Sun Apr 24 03:50:09 CEST 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sun Apr 17 19:44:33 2011 +0200| [046f3cb78903cd04846c49345b473244f095f1a5] | committer: Diego Biurrun

vorbis: Rename decoder/encoder files to follow general file naming scheme.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=046f3cb78903cd04846c49345b473244f095f1a5
---

 libavcodec/Makefile                      |    4 ++--
 libavcodec/twinvq.c                      |    2 +-
 libavcodec/{vorbis_dec.c => vorbisdec.c} |    0
 libavcodec/{vorbis_enc.c => vorbisenc.c} |    0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 784226f..fad435d 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -386,9 +386,9 @@ OBJS-$(CONFIG_VCR1_ENCODER)            += vcr1.o
 OBJS-$(CONFIG_VMDAUDIO_DECODER)        += vmdav.o
 OBJS-$(CONFIG_VMDVIDEO_DECODER)        += vmdav.o
 OBJS-$(CONFIG_VMNC_DECODER)            += vmnc.o
-OBJS-$(CONFIG_VORBIS_DECODER)          += vorbis_dec.o vorbis.o \
+OBJS-$(CONFIG_VORBIS_DECODER)          += vorbisdec.o vorbis.o \
                                           vorbis_data.o xiph.o
-OBJS-$(CONFIG_VORBIS_ENCODER)          += vorbis_enc.o vorbis.o \
+OBJS-$(CONFIG_VORBIS_ENCODER)          += vorbisenc.o vorbis.o \
                                           vorbis_data.o
 OBJS-$(CONFIG_VP3_DECODER)             += vp3.o vp3dsp.o
 OBJS-$(CONFIG_VP5_DECODER)             += vp5.o vp56.o vp56data.o vp56dsp.o \
diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c
index e1a8dc4..985f71c 100644
--- a/libavcodec/twinvq.c
+++ b/libavcodec/twinvq.c
@@ -234,7 +234,7 @@ static void memset_float(float *buf, float val, int size)
  *        be a multiple of four.
  * @return the LPC value
  *
- * @todo reuse code from vorbis_dec.c: vorbis_floor0_decode
+ * @todo reuse code from Vorbis decoder: vorbis_floor0_decode
  */
 static float eval_lpc_spectrum(const float *lsp, float cos_val, int order)
 {
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbisdec.c
similarity index 100%
rename from libavcodec/vorbis_dec.c
rename to libavcodec/vorbisdec.c
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbisenc.c
similarity index 100%
rename from libavcodec/vorbis_enc.c
rename to libavcodec/vorbisenc.c



More information about the ffmpeg-cvslog mailing list