Compare commits
2 Commits
7090e25bcb
...
f749f2187e
Author | SHA1 | Date |
---|---|---|
Derek | f749f2187e | |
Derek | 2ee560056e |
2
README
2
README
|
@ -1,5 +1,5 @@
|
||||||
======================================================================
|
======================================================================
|
||||||
PyAudio v0.2.11: Python Bindings for PortAudio.
|
PyAudio v0.2.12: Python Bindings for PortAudio.
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
See: http://people.csail.mit.edu/hubert/pyaudio/
|
See: http://people.csail.mit.edu/hubert/pyaudio/
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -34,7 +34,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
|
|
||||||
__version__ = "0.2.11"
|
__version__ = "0.2.12"
|
||||||
|
|
||||||
# distutils will try to locate and link dynamically against portaudio.
|
# distutils will try to locate and link dynamically against portaudio.
|
||||||
#
|
#
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#define PY_SSIZE_T_CLEAN
|
||||||
#include "Python.h"
|
#include "Python.h"
|
||||||
#include "portaudio.h"
|
#include "portaudio.h"
|
||||||
#include "_portaudiomodule.h"
|
#include "_portaudiomodule.h"
|
||||||
|
@ -1291,7 +1292,7 @@ int _stream_callback_cfunction(const void *input, void *output,
|
||||||
PyObject *py_status_flags = PyLong_FromUnsignedLong(statusFlags);
|
PyObject *py_status_flags = PyLong_FromUnsignedLong(statusFlags);
|
||||||
PyObject *py_input_data = Py_None;
|
PyObject *py_input_data = Py_None;
|
||||||
const char *pData;
|
const char *pData;
|
||||||
unsigned output_len;
|
Py_ssize_t output_len;
|
||||||
PyObject *py_result;
|
PyObject *py_result;
|
||||||
|
|
||||||
if (input) {
|
if (input) {
|
||||||
|
|
Loading…
Reference in New Issue