Home
last modified time | relevance | path

Searched full:rgb_data (Results 1 – 1 of 1) sorted by relevance

/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch21763 - uint8_t *rgb_data = av_malloc(W * H * 4);
21764 - const uint8_t * const rgb_src[4] = { rgb_data, NULL, NULL, NULL };
21776 - if (!rgb_data || !data)
21778 + uint8_t *rgb_data;
21852 + rgb_data = av_mallocz(S * H * 4);
21853 + rgb_src[0] = rgb_data;
21867 + if (!rgb_data || !data)
21877 - rgb_data[ x + y * 4 * W] = av_lfg_get(&rand);
21879 + rgb_data[ x + y * 4 * S] = av_lfg_get(&rand);
21885 av_free(rgb_data);