From bc1d4e117fab42150bc62d1940e142dd6d10aadc Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 1 Oct 2012 20:12:40 -0700 Subject: revert buffer queue changes, unknown issue --- lib/gras_impl/input_buffer_queues.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/gras_impl/input_buffer_queues.hpp') diff --git a/lib/gras_impl/input_buffer_queues.hpp b/lib/gras_impl/input_buffer_queues.hpp index 74fc5ee..5adb06d 100644 --- a/lib/gras_impl/input_buffer_queues.hpp +++ b/lib/gras_impl/input_buffer_queues.hpp @@ -179,7 +179,7 @@ GRAS_FORCE_INLINE void InputBufferQueues::init( if (_history_bytes[i] > old_history) { SBuffer buff = _aux_queues[i]->front(); - _aux_queues[i]->pop_front(); + _aux_queues[i]->pop(); const size_t delta = _history_bytes[i] - old_history; std::memset(buff.get_actual_memory(), 0, delta); @@ -246,7 +246,7 @@ GRAS_FORCE_INLINE void InputBufferQueues::__prepare(const size_t i) else { dst = _aux_queues[i]->front(); - _aux_queues[i]->pop_front(); + _aux_queues[i]->pop(); dst.offset = 0; dst.length = 0; _in_aux_buff[i] = true; -- cgit