mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
some changes, can't remember what :-)
Original commit message from CVS: some changes, can't remember what :-)
This commit is contained in:
parent
789be9a726
commit
9161ba1c22
3 changed files with 10 additions and 3 deletions
|
@ -1097,6 +1097,7 @@ ext/audiofile/Makefile
|
||||||
ext/esd/Makefile
|
ext/esd/Makefile
|
||||||
ext/lame/Makefile
|
ext/lame/Makefile
|
||||||
ext/mad/Makefile
|
ext/mad/Makefile
|
||||||
|
ext/mpeg2dec/Makefile
|
||||||
ext/sdl/Makefile
|
ext/sdl/Makefile
|
||||||
ext/vorbis/Makefile
|
ext/vorbis/Makefile
|
||||||
gst-libs/Makefile
|
gst-libs/Makefile
|
||||||
|
|
|
@ -40,6 +40,12 @@ else
|
||||||
MAD_DIR=
|
MAD_DIR=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if USE_MPEG2DEC
|
||||||
|
MPEG2DEC_DIR=mad
|
||||||
|
else
|
||||||
|
MPEG2DEC_DIR=
|
||||||
|
endif
|
||||||
|
|
||||||
if USE_SDL
|
if USE_SDL
|
||||||
SDL_DIR=sdl
|
SDL_DIR=sdl
|
||||||
else
|
else
|
||||||
|
@ -54,8 +60,8 @@ endif
|
||||||
|
|
||||||
#$A52_DIR
|
#$A52_DIR
|
||||||
SUBDIRS=$(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) $(ESD_DIR) \
|
SUBDIRS=$(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) $(ESD_DIR) \
|
||||||
$(LAME_DIR) $(MAD_DIR) \
|
$(LAME_DIR) $(MAD_DIR) $(MPEG2DEC_DIR) \
|
||||||
$(SDL_DIR) $(VORBIS_DIR)
|
$(SDL_DIR) $(VORBIS_DIR)
|
||||||
|
|
||||||
#a52
|
#a52
|
||||||
DIST_SUBDIRS=aalib alsa audiofile esd lame mad sdl vorbis
|
DIST_SUBDIRS=aalib alsa audiofile esd lame mad mpeg2dec sdl vorbis
|
||||||
|
|
|
@ -95,7 +95,7 @@ static GstElementClass *parent_class = NULL;
|
||||||
//static guint gst_mp3parse_signals[LAST_SIGNAL] = { 0 };
|
//static guint gst_mp3parse_signals[LAST_SIGNAL] = { 0 };
|
||||||
|
|
||||||
GType
|
GType
|
||||||
mp3parse_get_type(void) {
|
gst_mp3parse_get_type(void) {
|
||||||
static GType mp3parse_type = 0;
|
static GType mp3parse_type = 0;
|
||||||
|
|
||||||
if (!mp3parse_type) {
|
if (!mp3parse_type) {
|
||||||
|
|
Loading…
Reference in a new issue