Searched refs:yuv_line (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dtiffenc.c221 uint8_t *yuv_line = NULL; local
327 yuv_line = av_malloc(bytes_per_row);
328 if (yuv_line == NULL){
351 pack_yuv(s, yuv_line, j);
352 memcpy(zbuf + zn, yuv_line, bytes_per_row);
387 pack_yuv(s, yuv_line, i);
388 n = encode_strip(s, yuv_line, ptr, bytes_per_row, s->compr);
466 av_free(yuv_line);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dtiffenc.c67 uint8_t *yuv_line; member in struct:TiffEncoderContext
339 av_fast_padded_malloc(&s->yuv_line, &s->yuv_line_size, bytes_per_row);
340 if (s->yuv_line == NULL) {
363 pack_yuv(s, p, s->yuv_line, j);
364 memcpy(zbuf + zn, s->yuv_line, bytes_per_row);
399 pack_yuv(s, p, s->yuv_line, i);
400 ret = encode_strip(s, s->yuv_line, ptr, bytes_per_row, s->compr);
516 av_freep(&s->yuv_line);
H A Dtiff.c71 uint8_t *yuv_line; member in struct:TiffContext
433 av_fast_padded_malloc(&s->yuv_line, &s->yuv_line_size, bytes_per_row);
434 if (s->yuv_line == NULL) {
438 dst = s->yuv_line;

Completed in 78 milliseconds