Home
last modified time | relevance | path

Searched refs:formatted_pixels (Results 1 – 3 of 3) sorted by relevance

/dports/multimedia/wf-recorder/wf-recorder-0.2.1/src/
H A Dopencl.cpp369 const uint8_t *formatted_pixels; in do_frame() local
417 formatted_pixels = local_yuv420_buffer; in do_frame()
420 formatted_pixels += width * (height - 1); in do_frame()
421 encoder_frame->data[0] = (uint8_t *) formatted_pixels; in do_frame()
424 formatted_pixels += (halfWidth) * (halfHeight - 1) + width; in do_frame()
426 formatted_pixels += width * height; in do_frame()
427 encoder_frame->data[1] = (uint8_t *) formatted_pixels; in do_frame()
429 formatted_pixels += halfWidth * halfHeight; in do_frame()
430 encoder_frame->data[2] = (uint8_t *) formatted_pixels; in do_frame()
H A Dframe-writer.cpp406 const uint8_t *formatted_pixels, int stride[]) in convert_pixels_to_yuv() argument
408 bool y_invert = (pixels != formatted_pixels); in convert_pixels_to_yuv()
426 sws_scale(swsCtx, &formatted_pixels, stride, 0, params.height, in convert_pixels_to_yuv()
464 const uint8_t *formatted_pixels = pixels; in add_frame() local
467 formatted_pixels += stride[0] * (params.height - 1); in add_frame()
477 convert_pixels_to_yuv(pixels, formatted_pixels, stride); in add_frame()
479 encoder_frame->data[0] = (uint8_t*) formatted_pixels; in add_frame()
493 encoder_frame->data[0] = (uint8_t*)formatted_pixels; in add_frame()
500 convert_pixels_to_yuv(pixels, formatted_pixels, stride); in add_frame()
H A Dframe-writer.hpp102 const uint8_t *formatted_pixels, int stride[]);