diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-03-30 18:37:43 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-03-30 18:37:43 +0200 |
commit | 35977fc2e90a7bf7aedd1c0be13f14289dd061df (patch) | |
tree | b6b078129bd9d4b2e6ba84ed1e81942fde5c3ed1 /src/VLCInput.h | |
parent | a20cd53acbeb316c5cbcd7fce79cb2c6032c868a (diff) | |
download | ODR-AudioEnc-35977fc2e90a7bf7aedd1c0be13f14289dd061df.tar.gz ODR-AudioEnc-35977fc2e90a7bf7aedd1c0be13f14289dd061df.tar.bz2 ODR-AudioEnc-35977fc2e90a7bf7aedd1c0be13f14289dd061df.zip |
VLC: change callback usage
Diffstat (limited to 'src/VLCInput.h')
-rw-r--r-- | src/VLCInput.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/VLCInput.h b/src/VLCInput.h index e4a0557..f97b9d9 100644 --- a/src/VLCInput.h +++ b/src/VLCInput.h @@ -74,12 +74,9 @@ class VLCInput uint8_t** pp_pcm_buffer, size_t size); - /* Receive a buffer with audio samples - * from VLC + /* Notification from VLC that the buffer is now filled */ - void postRender_cb( - uint8_t* p_pcm_buffer, - size_t size); + void postRender_cb(); int getRate() { return m_rate; } |