Commit f4cfe6bc authored by Christophe Massiot's avatar Christophe Massiot

* La DCT et la PCM sont dans audio_math.c ;

* Corrections de quelques warnings ici ou la ;

--Meuuh
parent 2dac5c30
...@@ -123,7 +123,8 @@ video_output_obj = video_output/video_output.o \ ...@@ -123,7 +123,8 @@ video_output_obj = video_output/video_output.o \
video_output/video_x11.o \ video_output/video_x11.o \
video_output/video_graphics.o video_output/video_graphics.o
audio_decoder_obj = audio_decoder/audio_decoder.o audio_decoder_obj = audio_decoder/audio_decoder.o \
audio_decoder/audio_math.o
generic_decoder_obj = generic_decoder/generic_decoder.o generic_decoder_obj = generic_decoder/generic_decoder.o
......
This diff is collapsed.
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
*******************************************************************************/ *******************************************************************************/
/* General debugging support */ /* General debugging support */
#define DEBUG //#define DEBUG
/* Modules specific debugging */ /* Modules specific debugging */
#define DEBUG_INTF #define DEBUG_INTF
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
*******************************************************************************/ *******************************************************************************/
/* Automagically spawn input, audio and video threads ? */ /* Automagically spawn input, audio and video threads ? */
#define AUTO_SPAWN //#define AUTO_SPAWN
/* Startup script */ /* Startup script */
#define INIT_SCRIPT "vlc.init" #define INIT_SCRIPT "vlc.init"
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "audio_constants.h" #include "audio_constants.h"
#include "audio_decoder.h" #include "audio_decoder.h"
#include "audio_math.h"
/****************************************************************************** /******************************************************************************
* Local prototypes * Local prototypes
......
This diff is collapsed.
...@@ -434,7 +434,9 @@ static void DecodePgrmMapSection( u8* p_pms, input_thread_t* p_input ) ...@@ -434,7 +434,9 @@ static void DecodePgrmMapSection( u8* p_pms, input_thread_t* p_input )
u16 i_es_pid; u16 i_es_pid;
int i_index = 0; int i_index = 0;
#ifdef AUTO_SPAWN
int i_es_loop; int i_es_loop;
#endif
pgrm_descriptor_t* p_pgrm; pgrm_descriptor_t* p_pgrm;
es_descriptor_t* p_es; es_descriptor_t* p_es;
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
*******************************************************************************/ *******************************************************************************/
#include <pthread.h> #include <pthread.h>
#include <stdio.h> #include <stdio.h>
#include <unistd.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <sys/soundcard.h> #include <sys/soundcard.h>
#include <sys/uio.h> #include <sys/uio.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment