Searched refs:n_bytes_per_row (Results 1 – 1 of 1) sorted by relevance
70 int n_bytes_image, n_bytes_per_row, n_bytes, i, n, hsize, ret; in bmp_encode_frame() local111 n_bytes_per_row = ((int64_t)avctx->width * (int64_t)bit_count + 7LL) >> 3LL; in bmp_encode_frame()112 pad_bytes_per_row = (4 - n_bytes_per_row) & 3; in bmp_encode_frame()113 n_bytes_image = avctx->height * (n_bytes_per_row + pad_bytes_per_row); in bmp_encode_frame()153 memcpy(buf, ptr, n_bytes_per_row); in bmp_encode_frame()155 buf += n_bytes_per_row; in bmp_encode_frame()