Searched refs:frame_out (Results 1 – 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | wmaenc.c | 116 memcpy(s->output, s->frame_out[ch], window_len * sizeof(*s->output)); in apply_window_and_mdct() 117 s->fdsp->vector_fmul_scalar(s->frame_out[ch], audio[ch], n, len); in apply_window_and_mdct() 118 s->fdsp->vector_fmul_reverse(&s->output[window_len], s->frame_out[ch], in apply_window_and_mdct() 120 s->fdsp->vector_fmul(s->frame_out[ch], s->frame_out[ch], win, len); in apply_window_and_mdct()
|
D | wmadec.c | 755 wma_window(s, &s->frame_out[ch][index]); in wma_decode_block() 791 memcpy(samples[ch] + samples_offset, s->frame_out[ch], in wma_decode_frame() 792 s->frame_len * sizeof(*s->frame_out[ch])); in wma_decode_frame() 794 memmove(&s->frame_out[ch][0], &s->frame_out[ch][s->frame_len], in wma_decode_frame() 795 s->frame_len * sizeof(*s->frame_out[ch])); in wma_decode_frame()
|
D | wma.h | 122 DECLARE_ALIGNED(32, float, frame_out)[MAX_CHANNELS][BLOCK_MAX_SIZE * 2]; member
|
/third_party/ffmpeg/libavfilter/ |
D | dnn_interface.h | 86 int (*post_proc)(AVFrame *frame_out, DNNData *model_output, AVFilterContext *filter_ctx);
|
D | vf_scale.c | 650 static int scale_frame(AVFilterLink *link, AVFrame *in, AVFrame **frame_out) in scale_frame() argument 661 *frame_out = NULL; in scale_frame() 724 *frame_out = in; in scale_frame() 736 *frame_out = out; in scale_frame()
|
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/ |
D | gsth265parse.h | 108 GstAdapter *frame_out; member
|
D | gsth264parse.h | 138 GstAdapter *frame_out; member
|
D | gsth265parse.c | 169 h265parse->frame_out = gst_adapter_new (); in gst_h265_parse_init() 182 g_object_unref (h265parse->frame_out); in gst_h265_parse_finalize() 205 gst_adapter_clear (h265parse->frame_out); in gst_h265_parse_reset_frame() 848 h265parse->sei_pos = gst_adapter_available (h265parse->frame_out); in gst_h265_parse_process_nal() 948 h265parse->idr_pos = gst_adapter_available (h265parse->frame_out); in gst_h265_parse_process_nal() 987 gst_adapter_push (h265parse->frame_out, buf); in gst_h265_parse_process_nal() 2553 av = gst_adapter_available (h265parse->frame_out); in gst_h265_parse_parse_frame() 2557 buf = gst_adapter_take_buffer (h265parse->frame_out, av); in gst_h265_parse_parse_frame()
|
D | gsth264parse.c | 199 h264parse->frame_out = gst_adapter_new (); in gst_h264_parse_init() 220 g_object_unref (h264parse->frame_out); in gst_h264_parse_finalize() 252 gst_adapter_clear (h264parse->frame_out); in gst_h264_parse_reset_frame() 1047 h264parse->sei_pos = gst_adapter_available (h264parse->frame_out); in gst_h264_parse_process_nal() 1111 h264parse->idr_pos = gst_adapter_available (h264parse->frame_out); in gst_h264_parse_process_nal() 1166 gst_adapter_push (h264parse->frame_out, buf); in gst_h264_parse_process_nal() 2707 av = gst_adapter_available (h264parse->frame_out); in gst_h264_parse_parse_frame() 2711 buf = gst_adapter_take_buffer (h264parse->frame_out, av); in gst_h264_parse_parse_frame()
|