[FFmpeg-cvslog] g723_1: Rename files to better reflect their purpose

Vittorio Giovara git at videolan.org
Mon Dec 7 15:05:20 CET 2015


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Mon Nov 23 17:10:52 2015 -0500| [aac996cc01042194bf621d845bbe684549b5882e] | committer: Vittorio Giovara

g723_1: Rename files to better reflect their purpose

Signed-off-by: Vittorio Giovara <vittorio.giovara at gmail.com>

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

 libavcodec/Makefile                    |    2 +-
 libavcodec/{g723_1_data.h => g723_1.h} |    6 +++---
 libavcodec/{g723_1.c => g723_1dec.c}   |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 0cca9ce..dfefab6 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -225,7 +225,7 @@ OBJS-$(CONFIG_FOURXM_DECODER)          += 4xm.o
 OBJS-$(CONFIG_FRAPS_DECODER)           += fraps.o
 OBJS-$(CONFIG_FRWU_DECODER)            += frwu.o
 OBJS-$(CONFIG_G2M_DECODER)             += g2meet.o elsdec.o
-OBJS-$(CONFIG_G723_1_DECODER)          += g723_1.o acelp_vectors.o \
+OBJS-$(CONFIG_G723_1_DECODER)          += g723_1dec.o acelp_vectors.o \
                                           celp_filters.o
 OBJS-$(CONFIG_GIF_DECODER)             += gifdec.o lzw.o
 OBJS-$(CONFIG_GIF_ENCODER)             += gif.o lzwenc.o
diff --git a/libavcodec/g723_1_data.h b/libavcodec/g723_1.h
similarity index 99%
rename from libavcodec/g723_1_data.h
rename to libavcodec/g723_1.h
index c4c4d77..71e2df4 100644
--- a/libavcodec/g723_1_data.h
+++ b/libavcodec/g723_1.h
@@ -25,8 +25,8 @@
  * G.723.1 compatible decoder data tables
  */
 
-#ifndef AVCODEC_G723_1_DATA_H
-#define AVCODEC_G723_1_DATA_H
+#ifndef AVCODEC_G723_1_H
+#define AVCODEC_G723_1_H
 
 #include <stdint.h>
 
@@ -1198,4 +1198,4 @@ static const int cng_filt[4] = { 273, 998, 499, 333 };
 
 static const int cng_bseg[3] = { 2048, 18432, 231233 };
 
-#endif /* AVCODEC_G723_1_DATA_H */
+#endif /* AVCODEC_G723_1_H */
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1dec.c
similarity index 99%
rename from libavcodec/g723_1.c
rename to libavcodec/g723_1dec.c
index 80c7d1f..dc05ed2 100644
--- a/libavcodec/g723_1.c
+++ b/libavcodec/g723_1dec.c
@@ -33,7 +33,7 @@
 #include "get_bits.h"
 #include "acelp_vectors.h"
 #include "celp_filters.h"
-#include "g723_1_data.h"
+#include "g723_1.h"
 #include "internal.h"
 
 #define CNG_RANDOM_SEED 12345



More information about the ffmpeg-cvslog mailing list