mirror of https://github.com/inolen/redream.git
fix for macroblock size
This commit is contained in:
parent
2b28a457da
commit
89b2cdec33
|
@ -0,0 +1,6 @@
|
|||
#ifndef RING_BUFFER_H
|
||||
#define RING_BUFFER_H
|
||||
|
||||
|
||||
|
||||
#endif
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue