fix for macroblock size

This commit is contained in:
Anthony Pesch 2016-12-10 22:23:12 -08:00
parent 2b28a457da
commit 89b2cdec33
2 changed files with 7 additions and 1 deletions

6
src/core/ring_buffer.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef RING_BUFFER_H
#define RING_BUFFER_H
#endif

View File

@ -801,7 +801,7 @@ static void ta_yuv_fifo_write(struct ta *ta, uint32_t dst, void *src,
void *end = src + size;
while (src < end) {
ta_yuv_process_macroblock(ta, src);
src += size;
src += ta->yuv_macroblock_size;
}
PROF_LEAVE();