Compare commits
No commits in common. "f749f2187e232217f8ac112a1226b3af11f008e3" and "7090e25bcba41413bd7ce89aa73bc0efb1ae1ca1" have entirely different histories.
f749f2187e
...
7090e25bcb
2
README
2
README
|
@ -1,5 +1,5 @@
|
||||||
======================================================================
|
======================================================================
|
||||||
PyAudio v0.2.12: Python Bindings for PortAudio.
|
PyAudio v0.2.11: 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.12"
|
__version__ = "0.2.11"
|
||||||
|
|
||||||
# distutils will try to locate and link dynamically against portaudio.
|
# distutils will try to locate and link dynamically against portaudio.
|
||||||
#
|
#
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#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"
|
||||||
|
@ -1292,7 +1291,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;
|
||||||
Py_ssize_t output_len;
|
unsigned output_len;
|
||||||
PyObject *py_result;
|
PyObject *py_result;
|
||||||
|
|
||||||
if (input) {
|
if (input) {
|
||||||
|
|
Loading…
Reference in New Issue