Searched refs:tmp_frame (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg_vda.c26 AVFrame *tmp_frame; member in struct:VDAContext
40 av_frame_unref(vda->tmp_frame);
43 case kCVPixelFormatType_420YpCbCr8Planar: vda->tmp_frame->format = AV_PIX_FMT_YUV420P; break;
44 case kCVPixelFormatType_422YpCbCr8: vda->tmp_frame->format = AV_PIX_FMT_UYVY422; break;
51 vda->tmp_frame->width = frame->width;
52 vda->tmp_frame->height = frame->height;
53 ret = av_frame_get_buffer(vda->tmp_frame, 32);
75 av_image_copy(vda->tmp_frame->data, vda->tmp_frame->linesize,
76 data, linesize, vda->tmp_frame
[all...]
H A Dffmpeg_vdpau.c54 AVFrame *tmp_frame; member in struct:VDPAUContext
78 av_frame_free(&ctx->tmp_frame);
140 &ctx->tmp_frame->width,
141 &ctx->tmp_frame->height);
147 ctx->tmp_frame->format = ctx->pix_fmt;
149 ret = av_frame_get_buffer(ctx->tmp_frame, 32);
153 ctx->tmp_frame->width = frame->width;
154 ctx->tmp_frame->height = frame->height;
157 (void * const *)ctx->tmp_frame->data,
158 ctx->tmp_frame
[all...]
H A Dffmpeg_dxva2.c111 AVFrame *tmp_frame; member in struct:DXVA2Context
176 av_frame_free(&ctx->tmp_frame);
260 ctx->tmp_frame->width = frame->width;
261 ctx->tmp_frame->height = frame->height;
262 ctx->tmp_frame->format = AV_PIX_FMT_NV12;
264 ret = av_frame_get_buffer(ctx->tmp_frame, 32);
274 av_image_copy_plane(ctx->tmp_frame->data[0], ctx->tmp_frame->linesize[0],
278 av_image_copy_plane(ctx->tmp_frame->data[1], ctx->tmp_frame
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dmuxing.c60 AVFrame *tmp_frame; member in struct:OutputStream
198 ost->tmp_frame = av_frame_alloc();
202 ost->tmp_frame->sample_rate = c->sample_rate;
203 ost->tmp_frame->format = c->sample_fmt;
204 ost->tmp_frame->channel_layout = c->channel_layout;
205 ost->tmp_frame->nb_samples = ost->frame->nb_samples;
235 ret = av_frame_get_buffer(ost->tmp_frame, 0);
304 ost->tmp_frame->data, dst_nb_samples,
310 frame = ost->tmp_frame;
385 ost->tmp_frame
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dhevc.h818 AVFrame *tmp_frame; member in struct:HEVCContext
H A Dhevc.c319 av_frame_unref(s->tmp_frame);
320 ret = ff_get_buffer(s->avctx, s->tmp_frame, AV_GET_BUFFER_FLAG_REF);
323 s->frame = s->tmp_frame;
3150 av_frame_free(&s->tmp_frame);
3210 s->tmp_frame = av_frame_alloc();
3211 if (!s->tmp_frame)

Completed in 138 milliseconds