Searched defs:todo (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp261 uint32_t todo = mLeftover; local
262 if (todo > want) {
263 todo = want;
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
269 done += todo;
270 want -= todo;
271 mLeftover -= todo;
/frameworks/av/media/libaah_rtp/
H A Daah_rx_player_substream.cpp298 uint32_t todo = amt - trtp_header_len; local
299 if ((expected_buffer_size_ + aux_data_expected_size_) < todo) {
301 " dropping payload.", todo,
334 todo = min(aux_data_expected_size_, amt);
335 if (todo) {
336 aux_data_in_progress_.appendArray(buf, todo);
337 buf += todo;
338 amt -= todo;
342 todo = min(expected_buffer_size_, amt);
343 if (todo >
372 uint32_t todo = min(aux_left, amt); local
[all...]

Completed in 108 milliseconds