Home
last modified time | relevance | path

Searched refs:audiotools_pcm (Results 1 – 25 of 35) sorted by relevance

12

/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/
H A Dpcmconverter.c92 return a_int_to_FrameList(self->audiotools_pcm,
124 Py_XDECREF(self->audiotools_pcm);
135 self->audiotools_pcm = NULL;
171 Py_XDECREF(self->audiotools_pcm);
184 self->audiotools_pcm = NULL;
338 return aa_int_to_FrameList(self->audiotools_pcm,
381 self->audiotools_pcm = NULL;
434 Py_XDECREF(self->audiotools_pcm);
492 return a_int_to_FrameList(self->audiotools_pcm,
775 Py_XDECREF(self->audiotools_pcm);
[all …]
H A Dpcmconv.c38 a_int_to_FrameList(PyObject* audiotools_pcm, in a_int_to_FrameList() argument
47 audiotools_pcm, channels, bits_per_sample)) != NULL) { in a_int_to_FrameList()
71 aa_int_to_FrameList(PyObject* audiotools_pcm, in aa_int_to_FrameList() argument
96 audiotools_pcm, channel_count, bits_per_sample)) != NULL) { in aa_int_to_FrameList()
120 empty_FrameList(PyObject* audiotools_pcm, in empty_FrameList() argument
125 audiotools_pcm, in empty_FrameList()
134 PyObject* audiotools_pcm; in open_pcmreader() local
191 if ((audiotools_pcm = PyImport_ImportModule("audiotools.pcm")) == NULL) { in open_pcmreader()
195 pcmreader->framelist_type = PyObject_GetAttrString(audiotools_pcm, in open_pcmreader()
198 Py_DECREF(audiotools_pcm); in open_pcmreader()
H A Dpcmconv.h45 a_int_to_FrameList(PyObject* audiotools_pcm,
55 aa_int_to_FrameList(PyObject* audiotools_pcm,
62 empty_FrameList(PyObject* audiotools_pcm,
H A Dpcmconverter.h30 PyObject* audiotools_pcm; member
124 PyObject* audiotools_pcm; member
258 PyObject* audiotools_pcm; member
351 PyObject* audiotools_pcm; member
H A Dreplaygain.c133 PyObject *audiotools_pcm; in ReplayGain_init() local
145 if ((audiotools_pcm = PyImport_ImportModule("audiotools.pcm")) != NULL) { in ReplayGain_init()
146 self->framelist_type = PyObject_GetAttrString(audiotools_pcm, in ReplayGain_init()
148 Py_DECREF(audiotools_pcm); in ReplayGain_init()
856 self->audiotools_pcm = NULL; in ReplayGainReader_init()
870 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in ReplayGainReader_init()
887 Py_XDECREF(self->audiotools_pcm); in ReplayGainReader_dealloc()
953 return aa_int_to_FrameList(self->audiotools_pcm, in ReplayGainReader_read()
H A Ddvdamodule.c403 self->audiotools_pcm = NULL;
413 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) {
426 Py_XDECREF(self->audiotools_pcm);
455 self->audiotools_pcm,
H A Dcdiomodule.c80 self->audiotools_pcm = NULL; in CDDAReader_init()
86 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in CDDAReader_init()
208 Py_XDECREF(self->audiotools_pcm); in CDDAReader_dealloc()
481 to_return = a_int_to_FrameList(self->audiotools_pcm, in CDDAReader_read()
H A Dreplaygain.h131 PyObject* audiotools_pcm; member
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/decoders/
H A Dmp3.c47 self->audiotools_pcm = NULL; in MP3Decoder_init()
71 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in MP3Decoder_init()
87 Py_XDECREF(self->audiotools_pcm); in MP3Decoders_dealloc()
147 return empty_FrameList(self->audiotools_pcm, in MP3Decoder_read()
157 return a_int_to_FrameList(self->audiotools_pcm, in MP3Decoder_read()
H A Dsine.c36 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in Sine_Mono_init()
84 Py_XDECREF(self->audiotools_pcm); in Sine_Mono_dealloc()
133 return aa_int_to_FrameList(self->audiotools_pcm, in Sine_Mono_read()
200 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in Sine_Stereo_init()
249 Py_XDECREF(self->audiotools_pcm); in Sine_Stereo_dealloc()
303 return aa_int_to_FrameList(self->audiotools_pcm, in Sine_Stereo_read()
367 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in Sine_Simple_init()
409 Py_XDECREF(self->audiotools_pcm); in Sine_Simple_dealloc()
458 return aa_int_to_FrameList(self->audiotools_pcm, in Sine_Simple_read()
599 Py_XDECREF(self->audiotools_pcm); in SameSample_dealloc()
[all …]
H A Dvorbis.c47 Py_XDECREF(self->audiotools_pcm); in VorbisDecoder_dealloc()
62 self->audiotools_pcm = NULL; in VorbisDecoder_init()
100 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in VorbisDecoder_init()
278 return aa_int_to_FrameList(self->audiotools_pcm, in VorbisDecoder_read()
H A Dopus.c41 self->audiotools_pcm = NULL;
55 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL)
69 Py_XDECREF(self->audiotools_pcm);
258 return aa_int_to_FrameList(self->audiotools_pcm,
H A Doggflac.c44 Py_XDECREF(self->audiotools_pcm);
66 self->audiotools_pcm = NULL; in GpioSetReg()
117 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL)
164 return empty_FrameList(self->audiotools_pcm,
226 framelist = a_int_to_FrameList(self->audiotools_pcm, in GpioSetIrq()
256 return empty_FrameList(self->audiotools_pcm,
H A Dsine.h42 PyObject* audiotools_pcm;
168 PyObject* audiotools_pcm;
289 PyObject* audiotools_pcm;
409 PyObject* audiotools_pcm;
H A Dtta.c57 self->audiotools_pcm = NULL; in TTADecoder_init()
126 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in TTADecoder_init()
163 Py_XDECREF(self->audiotools_pcm); in TTADecoder_dealloc()
206 return empty_FrameList(self->audiotools_pcm, in TTADecoder_read()
266 return aa_int_to_FrameList(self->audiotools_pcm, in TTADecoder_read()
H A Dmp3.h36 PyObject *audiotools_pcm; member
H A Dopus.h33 PyObject *audiotools_pcm; member
H A Dvorbis.h36 PyObject* audiotools_pcm; member
H A Dflac.c43 self->audiotools_pcm = NULL; in FlacDecoder_init()
95 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in FlacDecoder_init()
143 Py_XDECREF(self->audiotools_pcm); in FlacDecoder_dealloc()
212 return empty_FrameList(self->audiotools_pcm, in FlacDecoder_read()
221 return empty_FrameList(self->audiotools_pcm, in FlacDecoder_read()
290 framelist = a_int_to_FrameList(self->audiotools_pcm, in FlacDecoder_read()
H A Doggflac.h57 PyObject* audiotools_pcm; member
H A Dshn.c56 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL)
110 Py_XDECREF(self->audiotools_pcm); in OpusDecoder_channel_mask()
184 return empty_FrameList(self->audiotools_pcm,
193 return aa_int_to_FrameList(self->audiotools_pcm,
197 return empty_FrameList(self->audiotools_pcm,
H A Dtta.h69 PyObject* audiotools_pcm; member
H A Dalac.c38 self->audiotools_pcm = NULL; in ALACDecoder_init()
92 if ((self->audiotools_pcm = open_audiotools_pcm()) == NULL) in ALACDecoder_init()
124 Py_XDECREF(self->audiotools_pcm); in ALACDecoder_dealloc()
198 return empty_FrameList(self->audiotools_pcm, in ALACDecoder_read()
246 return aa_int_to_FrameList(self->audiotools_pcm, in ALACDecoder_read()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/output/
H A Dalsa.c37 PyObject *audiotools_pcm = NULL; in ALSAAudio_init() local
52 if ((audiotools_pcm = open_audiotools_pcm()) != NULL) { in ALSAAudio_init()
53 self->framelist_type = PyObject_GetAttrString(audiotools_pcm, in ALSAAudio_init()
55 Py_DECREF(audiotools_pcm); in ALSAAudio_init()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/docs/programming/source/
H A Dindex.rst15 audiotools_pcm.rst

12