diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-11-17 14:26:36 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-11-17 14:26:36 +0000 |
commit | bacac99192b65faed1a0047a8be5b95abf15873d (patch) | |
tree | c1ca0949f9cb222c8ef6305d8150ca4d9e85b4a7 /src/xine-engine/audio_decoder.c | |
parent | 75a1024fb27dbff9c4bfc948392910af94797683 (diff) | |
download | xine-lib-bacac99192b65faed1a0047a8be5b95abf15873d.tar.gz xine-lib-bacac99192b65faed1a0047a8be5b95abf15873d.tar.bz2 |
Add 'xine_' prefix to all of xine-utils functions (what about cpu
acceleration?). Merge xine-utils header files to a new one "xineutils.h".
Update xine-lib C/headers to reflect those changes.
dxr3 headers are no more installed ine $includdir, but $includdir/xine.
CVS patchset: 1054
CVS date: 2001/11/17 14:26:36
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r-- | src/xine-engine/audio_decoder.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 6f13ffcda..019231b0e 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.54 2001/11/15 23:18:04 guenter Exp $ + * $Id: audio_decoder.c,v 1.55 2001/11/17 14:26:39 f1rmb Exp $ * * * functions that implement audio decoding @@ -34,9 +34,7 @@ #include <unistd.h> #include "xine_internal.h" -#include "utils.h" -#include "monitor.h" - +#include "xineutils.h" void *audio_decoder_loop (void *this_gen) { @@ -48,7 +46,7 @@ void *audio_decoder_loop (void *this_gen) { static int prof_audio_decode = -1; if (prof_audio_decode == -1) - prof_audio_decode = profiler_allocate_slot ("audio decoder/output"); + prof_audio_decode = xine_profiler_allocate_slot ("audio decoder/output"); while (running) { @@ -171,7 +169,7 @@ void *audio_decoder_loop (void *this_gen) { break; } - profiler_start_count (prof_audio_decode); + xine_profiler_start_count (prof_audio_decode); if ( (buf->type & 0xFF000000) == BUF_AUDIO_BASE ) { @@ -263,7 +261,7 @@ void *audio_decoder_loop (void *this_gen) { } else printf ("audio_loop: unknown buffer type: %08x\n", buf->type); - profiler_stop_count (prof_audio_decode); + xine_profiler_stop_count (prof_audio_decode); } buf->free_buffer (buf); |