[vlc-devel] commit: Move avcodec module files to modules/codec/avcodec. (The 3 shared ( Antoine Cellerier )

git version control git at videolan.org
Mon Jun 9 10:03:52 CEST 2008


vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Sun Jun  8 00:59:51 2008 +0200| [f7d5f3e7cab176a0d68b736e05dece392d611161]

Move avcodec module files to modules/codec/avcodec. (The 3 shared
headers, avutil.h, chroma.h and fourcc.h are also located in that
directory.) This should be the last commit in the "Move all the old
ffmpeg modules source code files around to make it seem like you're
working while you're not".

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

 configure.ac                                    |    2 +-
 modules/codec/Modules.am                        |    2 +-
 modules/codec/{ffmpeg => avcodec}/Modules.am    |    0 
 modules/codec/{ffmpeg => avcodec}/audio.c       |    0 
 modules/codec/{ffmpeg => avcodec}/avcodec.c     |    0 
 modules/codec/{ffmpeg => avcodec}/avcodec.h     |    0 
 modules/codec/{ffmpeg => avcodec}/avutil.h      |    0 
 modules/codec/{ffmpeg => avcodec}/chroma.h      |    0 
 modules/codec/{ffmpeg => avcodec}/deinterlace.c |    0 
 modules/codec/{ffmpeg => avcodec}/encoder.c     |    0 
 modules/codec/{ffmpeg => avcodec}/fourcc.h      |    0 
 modules/codec/{ffmpeg => avcodec}/video.c       |    0 
 modules/demux/avformat/demux.c                  |    4 ++--
 modules/demux/avformat/mux.c                    |    4 ++--
 modules/video_filter/imgresample.c              |    2 +-
 modules/video_filter/swscale.c                  |    2 +-
 16 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/configure.ac b/configure.ac
index 73ec183..6cadc18 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5869,9 +5869,9 @@ AC_CONFIG_FILES([
   modules/audio_mixer/Makefile
   modules/audio_output/Makefile
   modules/codec/Makefile
+  modules/codec/avcodec/Makefile
   modules/codec/cmml/Makefile
   modules/codec/dmo/Makefile
-  modules/codec/ffmpeg/Makefile
   modules/codec/subtitles/Makefile
   modules/codec/spudec/Makefile
   modules/codec/xvmc/Makefile
diff --git a/modules/codec/Modules.am b/modules/codec/Modules.am
index b3cf15c..7b530e5 100644
--- a/modules/codec/Modules.am
+++ b/modules/codec/Modules.am
@@ -1,4 +1,4 @@
-SUBDIRS = cmml dmo ffmpeg subtitles spudec xvmc
+SUBDIRS = cmml dmo avcodec subtitles spudec xvmc
 # Disabled modules
 SOURCES_a52 = a52.c
 SOURCES_cinepak = cinepak.c
diff --git a/modules/codec/ffmpeg/Modules.am b/modules/codec/avcodec/Modules.am
similarity index 100%
rename from modules/codec/ffmpeg/Modules.am
rename to modules/codec/avcodec/Modules.am
diff --git a/modules/codec/ffmpeg/audio.c b/modules/codec/avcodec/audio.c
similarity index 100%
rename from modules/codec/ffmpeg/audio.c
rename to modules/codec/avcodec/audio.c
diff --git a/modules/codec/ffmpeg/avcodec.c b/modules/codec/avcodec/avcodec.c
similarity index 100%
rename from modules/codec/ffmpeg/avcodec.c
rename to modules/codec/avcodec/avcodec.c
diff --git a/modules/codec/ffmpeg/avcodec.h b/modules/codec/avcodec/avcodec.h
similarity index 100%
rename from modules/codec/ffmpeg/avcodec.h
rename to modules/codec/avcodec/avcodec.h
diff --git a/modules/codec/ffmpeg/avutil.h b/modules/codec/avcodec/avutil.h
similarity index 100%
rename from modules/codec/ffmpeg/avutil.h
rename to modules/codec/avcodec/avutil.h
diff --git a/modules/codec/ffmpeg/chroma.h b/modules/codec/avcodec/chroma.h
similarity index 100%
rename from modules/codec/ffmpeg/chroma.h
rename to modules/codec/avcodec/chroma.h
diff --git a/modules/codec/ffmpeg/deinterlace.c b/modules/codec/avcodec/deinterlace.c
similarity index 100%
rename from modules/codec/ffmpeg/deinterlace.c
rename to modules/codec/avcodec/deinterlace.c
diff --git a/modules/codec/ffmpeg/encoder.c b/modules/codec/avcodec/encoder.c
similarity index 100%
rename from modules/codec/ffmpeg/encoder.c
rename to modules/codec/avcodec/encoder.c
diff --git a/modules/codec/ffmpeg/fourcc.h b/modules/codec/avcodec/fourcc.h
similarity index 100%
rename from modules/codec/ffmpeg/fourcc.h
rename to modules/codec/avcodec/fourcc.h
diff --git a/modules/codec/ffmpeg/video.c b/modules/codec/avcodec/video.c
similarity index 100%
rename from modules/codec/ffmpeg/video.c
rename to modules/codec/avcodec/video.c
diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c
index 85711d0..d60e2d8 100644
--- a/modules/demux/avformat/demux.c
+++ b/modules/demux/avformat/demux.c
@@ -42,8 +42,8 @@
 #   include <ffmpeg/avformat.h>
 #endif
 
-#include "../../codec/ffmpeg/fourcc.h"
-#include "../../codec/ffmpeg/chroma.h"
+#include "../../codec/avcodec/fourcc.h"
+#include "../../codec/avcodec/chroma.h"
 
 //#define AVFORMAT_DEBUG 1
 
diff --git a/modules/demux/avformat/mux.c b/modules/demux/avformat/mux.c
index f3fc73b..14b19ce 100644
--- a/modules/demux/avformat/mux.c
+++ b/modules/demux/avformat/mux.c
@@ -41,8 +41,8 @@
 #endif
 
 #include "avformat.h"
-#include "../../codec/ffmpeg/fourcc.h"
-#include "../../codec/ffmpeg/avutil.h"
+#include "../../codec/avcodec/fourcc.h"
+#include "../../codec/avcodec/avutil.h"
 
 //#define AVFORMAT_DEBUG 1
 
diff --git a/modules/video_filter/imgresample.c b/modules/video_filter/imgresample.c
index 688debc..cbca27e 100644
--- a/modules/video_filter/imgresample.c
+++ b/modules/video_filter/imgresample.c
@@ -43,7 +43,7 @@
 #   include <avcodec.h>
 #endif
 
-#include "../codec/ffmpeg/chroma.h"
+#include "../codec/avcodec/chroma.h"
 
 /*****************************************************************************
  * Local prototypes
diff --git a/modules/video_filter/swscale.c b/modules/video_filter/swscale.c
index 65bf561..24d6034 100644
--- a/modules/video_filter/swscale.c
+++ b/modules/video_filter/swscale.c
@@ -41,7 +41,7 @@
 #endif
 
 /* Gruikkkkkkkkkk!!!!! */
-#include "../codec/ffmpeg/chroma.h"
+#include "../codec/avcodec/chroma.h"
 
 /****************************************************************************
  * Local prototypes




More information about the vlc-devel mailing list