Lines Matching refs:row_width
62 static void put_lines_bits(AVCodecContext *avctx, int planes, int row_width, int pixel_size, State * state, uint8_t * row, AVFrame *p)
67 for (int x = 0; x < row_width; x++)
79 static void put_lines_bytes(AVCodecContext *avctx, int planes, int row_width, int pixel_size, State * state, uint8_t * row, AVFrame *p)
100 int row_width, pixel_size;
102 void (*put_lines)(AVCodecContext *avctx, int planes, int row_width, int pixel_size, State * state, uint8_t * row, AVFrame *p);
123 row_width = (avctx->width + 7) / 8;
216 row_width = ((avctx->width + 7)/8)*8 * pixel_size;
220 row_width = ((avctx->width + 15)/16)*16 * pixel_size;
224 row_width = avctx->width * pixel_size;
249 row_width = avctx->width * pixel_size;
253 row_width = avctx->width * pixel_size;
258 ret = av_reallocp_array(&avctx->priv_data, planes, row_width);
270 if (x >= row_width) { \
271 put_lines(avctx, planes, row_width, pixel_size, &state, row + state.pl * row_width, p); \
279 row[state.pl * row_width + x++] = v; \
280 if (x >= row_width) { \
281 put_lines(avctx, planes, row_width, pixel_size, &state, row + state.pl * row_width, p); \