| 117 | } |
| 118 | |
| 119 | static inline void h261_init_dest(MpegEncContext *s) |
| 120 | { |
| 121 | const unsigned block_size = 8 >> s->avctx->lowres; |
| 122 | ff_init_block_index(s); |
| 123 | s->dest[0] += 2 * block_size; |
| 124 | s->dest[1] += block_size; |
| 125 | s->dest[2] += block_size; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Decode the group of blocks header or slice header. |
no test coverage detected