diff options
Diffstat (limited to 'src/VLCInput.cpp')
-rw-r--r-- | src/VLCInput.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/VLCInput.cpp b/src/VLCInput.cpp index 54d9250..a370c78 100644 --- a/src/VLCInput.cpp +++ b/src/VLCInput.cpp @@ -166,7 +166,12 @@ void VLCInput::postRender_cb(uint8_t* p_pcm_buffer, size_t size) { boost::mutex::scoped_lock lock(m_queue_mutex); - assert(m_current_buf.size() == size); + if (m_current_buf.size() != size) { + fprintf(stderr, + "Received buffer size is not equal allocated " + "buffer size: %zu vs %zu\n", + m_current_buf.size(), size); + } size_t queue_size = m_queue.size(); m_queue.resize(m_queue.size() + size); |