mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
gst/nsf/nes_apu.*: Don't do void pointer arithmetic - it's a gcc extension.
Original commit message from CVS: * gst/nsf/nes_apu.c: (apu_process): * gst/nsf/nes_apu.h: Don't do void pointer arithmetic - it's a gcc extension.
This commit is contained in:
parent
ac9c01d8c1
commit
ad302618b6
4 changed files with 22 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-04-09 Jan Schmidt <Jan.Schmidt@sun.com>
|
||||
|
||||
* gst/nsf/nes_apu.c: (apu_process):
|
||||
* gst/nsf/nes_apu.h:
|
||||
Don't do void pointer arithmetic - it's a gcc extension.
|
||||
|
||||
2008-04-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/jack/gstjackaudiosink.c: (gst_jack_audio_sink_class_init):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit fda6da5f2b9b000f7e1df8ffb44a6185ffd9799b
|
||||
Subproject commit d3ace35f57dd196a3e83a0a48f1350ca32db8e39
|
|
@ -972,7 +972,7 @@ apu_getpcmdata (void **data, int *num_samples, int *sample_bits)
|
|||
|
||||
|
||||
void
|
||||
apu_process (void *buffer, int num_samples)
|
||||
apu_process (uint8 * buffer, int num_samples)
|
||||
{
|
||||
apudata_t *d;
|
||||
uint32 elapsed_cycles;
|
||||
|
@ -1210,7 +1210,12 @@ apu_getcyclerate (void)
|
|||
|
||||
/*
|
||||
** $Log$
|
||||
** Revision 1.2 2008/03/25 15:56:12 slomo
|
||||
** Revision 1.3 2008/04/09 13:43:50 thaytan
|
||||
** * gst/nsf/nes_apu.c: (apu_process):
|
||||
** * gst/nsf/nes_apu.h:
|
||||
** Don't do void pointer arithmetic - it's a gcc extension.
|
||||
**
|
||||
** Revision 1.2 2008-03-25 15:56:12 slomo
|
||||
** Patch by: Andreas Henriksson <andreas at fatal dot set>
|
||||
** * gst/nsf/Makefile.am:
|
||||
** * gst/nsf/dis6502.h:
|
||||
|
|
|
@ -258,7 +258,7 @@ typedef struct apu_s
|
|||
int sample_bits;
|
||||
int refresh_rate;
|
||||
|
||||
void (*process)(void *buffer, int num_samples);
|
||||
void (*process)(uint8 *buffer, int num_samples);
|
||||
|
||||
/* $$$ ben : last error string */
|
||||
const char * errstr;
|
||||
|
@ -277,7 +277,7 @@ extern apu_t *apu_create(int sample_rate, int refresh_rate, int sample_bits, boo
|
|||
extern void apu_destroy(apu_t *apu);
|
||||
extern int apu_setext(apu_t *apu, apuext_t *ext);
|
||||
extern int apu_setfilter(int filter_type);
|
||||
extern void apu_process(void *buffer, int num_samples);
|
||||
extern void apu_process(uint8 *buffer, int num_samples);
|
||||
extern void apu_reset(void);
|
||||
extern int apu_setchan(int chan, boolean enabled);
|
||||
extern int32 apu_getcyclerate(void);
|
||||
|
@ -301,7 +301,12 @@ void apu_setcontext(apu_t *src_apu);
|
|||
|
||||
/*
|
||||
** $Log$
|
||||
** Revision 1.2 2008/03/25 15:56:12 slomo
|
||||
** Revision 1.3 2008/04/09 13:43:51 thaytan
|
||||
** * gst/nsf/nes_apu.c: (apu_process):
|
||||
** * gst/nsf/nes_apu.h:
|
||||
** Don't do void pointer arithmetic - it's a gcc extension.
|
||||
**
|
||||
** Revision 1.2 2008-03-25 15:56:12 slomo
|
||||
** Patch by: Andreas Henriksson <andreas at fatal dot set>
|
||||
** * gst/nsf/Makefile.am:
|
||||
** * gst/nsf/dis6502.h:
|
||||
|
|
Loading…
Reference in a new issue