summaryrefslogtreecommitdiff
path: root/src/libxineadec/nosefart
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxineadec/nosefart')
-rw-r--r--src/libxineadec/nosefart/dis6502.c7
-rw-r--r--src/libxineadec/nosefart/dis6502.h7
-rw-r--r--src/libxineadec/nosefart/fds_snd.c7
-rw-r--r--src/libxineadec/nosefart/fds_snd.h7
-rw-r--r--src/libxineadec/nosefart/log.c7
-rw-r--r--src/libxineadec/nosefart/log.h7
-rw-r--r--src/libxineadec/nosefart/memguard.c7
-rw-r--r--src/libxineadec/nosefart/mmc5_snd.c7
-rw-r--r--src/libxineadec/nosefart/mmc5_snd.h7
-rw-r--r--src/libxineadec/nosefart/nes6502.h7
-rw-r--r--src/libxineadec/nosefart/nsf.h7
-rw-r--r--src/libxineadec/nosefart/version.h7
-rw-r--r--src/libxineadec/nosefart/vrc7_snd.c7
-rw-r--r--src/libxineadec/nosefart/vrcvisnd.c7
-rw-r--r--src/libxineadec/nosefart/vrcvisnd.h7
15 files changed, 75 insertions, 30 deletions
diff --git a/src/libxineadec/nosefart/dis6502.c b/src/libxineadec/nosefart/dis6502.c
index 10ae2c44e..ff552d219 100644
--- a/src/libxineadec/nosefart/dis6502.c
+++ b/src/libxineadec/nosefart/dis6502.c
@@ -20,7 +20,7 @@
** dis6502.c
**
** 6502 disassembler based on code from John Saeger
-** $Id: dis6502.c,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: dis6502.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include "types.h"
@@ -462,10 +462,13 @@ void nes6502_disasm(uint32 PC, uint8 P, uint8 A, uint8 X, uint8 Y, uint8 S)
/*
** $Log: dis6502.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
** Revision 1.4 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/dis6502.h b/src/libxineadec/nosefart/dis6502.h
index 73440c657..a02fd73ae 100644
--- a/src/libxineadec/nosefart/dis6502.h
+++ b/src/libxineadec/nosefart/dis6502.h
@@ -20,7 +20,7 @@
** dis6502.h
**
** 6502 disassembler header
-** $Id: dis6502.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: dis6502.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _DIS6502_H_
@@ -40,10 +40,13 @@ extern void nes6502_disasm(uint32 PC, uint8 P, uint8 A, uint8 X, uint8 Y, uint8
/*
** $Log: dis6502.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
** Revision 1.4 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/fds_snd.c b/src/libxineadec/nosefart/fds_snd.c
index 3b5fc3e5e..fe2e4d624 100644
--- a/src/libxineadec/nosefart/fds_snd.c
+++ b/src/libxineadec/nosefart/fds_snd.c
@@ -20,7 +20,7 @@
** fds_snd.c
**
** Famicom Disk System sound emulation
-** $Id: fds_snd.c,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: fds_snd.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include "types.h"
@@ -76,6 +76,9 @@ apuext_t fds_ext =
/*
** $Log: fds_snd.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -88,4 +91,4 @@ apuext_t fds_ext =
** Revision 1.1 2000/06/20 00:06:47 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/fds_snd.h b/src/libxineadec/nosefart/fds_snd.h
index d4621d52b..9d20b5b2a 100644
--- a/src/libxineadec/nosefart/fds_snd.h
+++ b/src/libxineadec/nosefart/fds_snd.h
@@ -20,7 +20,7 @@
** fds_snd.h
**
** Famicom Disk System sound emulation
-** $Id: fds_snd.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: fds_snd.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _FDS_SND_H_
@@ -35,6 +35,9 @@ extern apuext_t fds_ext;
/*
** $Log: fds_snd.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -44,4 +47,4 @@ extern apuext_t fds_ext;
** Revision 1.1 2000/06/20 00:06:47 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/log.c b/src/libxineadec/nosefart/log.c
index d865fd382..8935a596e 100644
--- a/src/libxineadec/nosefart/log.c
+++ b/src/libxineadec/nosefart/log.c
@@ -20,7 +20,7 @@
** log.c
**
** Error logging functions
-** $Id: log.c,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: log.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include <stdio.h>
@@ -103,6 +103,9 @@ void log_printf(const char *format, ... )
/*
** $Log: log.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -112,4 +115,4 @@ void log_printf(const char *format, ... )
** Revision 1.4 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/log.h b/src/libxineadec/nosefart/log.h
index 5ccfb1cd0..b9d282c20 100644
--- a/src/libxineadec/nosefart/log.h
+++ b/src/libxineadec/nosefart/log.h
@@ -20,7 +20,7 @@
** log.h
**
** Error logging header file
-** $Id: log.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: log.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _LOG_H_
@@ -37,10 +37,13 @@ extern void log_printf(const char *format, ...);
/*
** $Log: log.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
** Revision 1.4 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/memguard.c b/src/libxineadec/nosefart/memguard.c
index 24e7a151a..05d0cb91d 100644
--- a/src/libxineadec/nosefart/memguard.c
+++ b/src/libxineadec/nosefart/memguard.c
@@ -22,7 +22,7 @@
** memory allocation wrapper routines
**
** NOTE: based on code (c) 1998 the Retrocade group
-** $Id: memguard.c,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: memguard.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include "types.h"
@@ -363,6 +363,9 @@ void mem_checkblocks(void)
/*
** $Log: memguard.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -375,4 +378,4 @@ void mem_checkblocks(void)
** Revision 1.6 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/mmc5_snd.c b/src/libxineadec/nosefart/mmc5_snd.c
index c51f61bbf..7269fa967 100644
--- a/src/libxineadec/nosefart/mmc5_snd.c
+++ b/src/libxineadec/nosefart/mmc5_snd.c
@@ -20,7 +20,7 @@
** mmc5_snd.c
**
** Nintendo MMC5 sound emulation
-** $Id: mmc5_snd.c,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: mmc5_snd.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include <string.h>
@@ -333,6 +333,9 @@ apuext_t mmc5_ext =
/*
** $Log: mmc5_snd.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -354,4 +357,4 @@ apuext_t mmc5_ext =
** Revision 1.1 2000/06/20 00:06:47 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/mmc5_snd.h b/src/libxineadec/nosefart/mmc5_snd.h
index 6166567fd..256cc2285 100644
--- a/src/libxineadec/nosefart/mmc5_snd.h
+++ b/src/libxineadec/nosefart/mmc5_snd.h
@@ -20,7 +20,7 @@
** mmc5_snd.h
**
** Nintendo MMC5 sound emulation header
-** $Id: mmc5_snd.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: mmc5_snd.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _MMC5_SND_H_
@@ -67,6 +67,9 @@ extern apuext_t mmc5_ext;
/*
** $Log: mmc5_snd.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -76,4 +79,4 @@ extern apuext_t mmc5_ext;
** Revision 1.1 2000/06/20 00:06:47 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/nes6502.h b/src/libxineadec/nosefart/nes6502.h
index aae2b866a..9b9be5811 100644
--- a/src/libxineadec/nosefart/nes6502.h
+++ b/src/libxineadec/nosefart/nes6502.h
@@ -20,7 +20,7 @@
** nes6502.h
**
** NES custom 6502 CPU definitions / prototypes
-** $Id: nes6502.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: nes6502.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
/* NOTE: 16-bit addresses avoided like the plague: use 32-bit values
@@ -122,10 +122,13 @@ extern void nes6502_getcontext(nes6502_context *cpu);
/*
** $Log: nes6502.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
** Revision 1.4 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/nsf.h b/src/libxineadec/nosefart/nsf.h
index 9ca9f298c..61cc14f60 100644
--- a/src/libxineadec/nosefart/nsf.h
+++ b/src/libxineadec/nosefart/nsf.h
@@ -20,7 +20,7 @@
** nsf.h
**
** NSF loading/saving related defines / prototypes
-** $Id: nsf.h,v 1.1 2003/01/08 07:04:35 tmmm Exp $
+** $Id: nsf.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _NSF_H_
@@ -114,6 +114,9 @@ extern void nsf_setfilter(nsf_t *nsf, int filter_type);
/*
** $Log: nsf.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:35 tmmm
** initial import of Nosefart sources
**
@@ -141,4 +144,4 @@ extern void nsf_setfilter(nsf_t *nsf, int filter_type);
** Revision 1.4 2000/06/09 15:12:26 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/version.h b/src/libxineadec/nosefart/version.h
index 22e91ecd6..d7dcb2e5d 100644
--- a/src/libxineadec/nosefart/version.h
+++ b/src/libxineadec/nosefart/version.h
@@ -20,7 +20,7 @@
** version.h
**
** Program name / version definitions
-** $Id: version.h,v 1.1 2003/01/08 07:04:36 tmmm Exp $
+** $Id: version.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _VERSION_H_
@@ -38,6 +38,9 @@
/*
** $Log: version.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:36 tmmm
** initial import of Nosefart sources
**
@@ -53,4 +56,4 @@
** Revision 1.4 2000/06/09 15:12:25 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/vrc7_snd.c b/src/libxineadec/nosefart/vrc7_snd.c
index e71c84af5..42cff0103 100644
--- a/src/libxineadec/nosefart/vrc7_snd.c
+++ b/src/libxineadec/nosefart/vrc7_snd.c
@@ -21,7 +21,7 @@
**
** VRCVII sound hardware emulation
** Thanks to Charles MacDonald (cgfm2@hooked.net) for donating code.
-** $Id: vrc7_snd.c,v 1.1 2003/01/08 07:04:36 tmmm Exp $
+** $Id: vrc7_snd.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include <stdio.h>
@@ -323,6 +323,9 @@ apuext_t vrc7_ext =
/*
** $Log: vrc7_snd.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:36 tmmm
** initial import of Nosefart sources
**
@@ -341,4 +344,4 @@ apuext_t vrc7_ext =
** Revision 1.1 2000/06/20 00:06:47 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/vrcvisnd.c b/src/libxineadec/nosefart/vrcvisnd.c
index a01a42a5b..b1f26fe52 100644
--- a/src/libxineadec/nosefart/vrcvisnd.c
+++ b/src/libxineadec/nosefart/vrcvisnd.c
@@ -20,7 +20,7 @@
** vrcvisnd.c
**
** VRCVI sound hardware emulation
-** $Id: vrcvisnd.c,v 1.1 2003/01/08 07:04:36 tmmm Exp $
+** $Id: vrcvisnd.c,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#include "types.h"
@@ -183,6 +183,9 @@ apuext_t vrcvi_ext =
/*
** $Log: vrcvisnd.c,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:36 tmmm
** initial import of Nosefart sources
**
@@ -204,4 +207,4 @@ apuext_t vrcvi_ext =
** Revision 1.4 2000/06/09 15:12:28 matt
** initial revision
**
-*/ \ No newline at end of file
+*/
diff --git a/src/libxineadec/nosefart/vrcvisnd.h b/src/libxineadec/nosefart/vrcvisnd.h
index 28608a86c..7666fec0c 100644
--- a/src/libxineadec/nosefart/vrcvisnd.h
+++ b/src/libxineadec/nosefart/vrcvisnd.h
@@ -20,7 +20,7 @@
** vrcvisnd.h
**
** VRCVI (Konami MMC) sound hardware emulation header
-** $Id: vrcvisnd.h,v 1.1 2003/01/08 07:04:36 tmmm Exp $
+** $Id: vrcvisnd.h,v 1.2 2003/12/05 15:55:01 f1rmb Exp $
*/
#ifndef _VRCVISND_H_
@@ -64,6 +64,9 @@ extern apuext_t vrcvi_ext;
/*
** $Log: vrcvisnd.h,v $
+** Revision 1.2 2003/12/05 15:55:01 f1rmb
+** cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
+**
** Revision 1.1 2003/01/08 07:04:36 tmmm
** initial import of Nosefart sources
**
@@ -79,4 +82,4 @@ extern apuext_t vrcvi_ext;
** Revision 1.4 2000/06/09 15:12:28 matt
** initial revision
**
-*/ \ No newline at end of file
+*/