/third_party/ffmpeg/libavcodec/ |
H A D | codec_internal.h | 48 * The decoder extracts and fills its parameters even if the frame is 54 * If this cap is set, the generic code will initialize output frame 63 * The codec supports frame threading and has inter-frame dependencies, so it 72 * Codec handles output frame properties internally instead of letting the 171 * @param[out] frame AVFrame for output 173 * a non-empty frame was returned in frame. 178 int (*decode)(struct AVCodecContext *avctx, struct AVFrame *frame, 189 * Decode API with decoupled packet/frame dataflo [all...] |
H A D | atsc_a53.c | 25 int ff_alloc_a53_sei(const AVFrame *frame, size_t prefix_len, in ff_alloc_a53_sei() argument 31 if (frame) in ff_alloc_a53_sei() 32 side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC); in ff_alloc_a53_sei()
|
H A D | aliaspixenc.c | 32 const AVFrame *frame, int *got_packet) in encode_frame() 70 const uint8_t *in_buf = frame->data[0] + frame->linesize[0] * j; in encode_frame() 31 encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) encode_frame() argument
|
H A D | nvdec_vp8.c | 29 static unsigned char safe_get_ref_idx(VP8Frame *frame) in safe_get_ref_idx() argument 31 return frame ? ff_nvdec_get_ref_idx(frame->tf.f) : 255; in safe_get_ref_idx()
|
H A D | vmdaudio.c | 30 * chunk to be prepended with the appropriate 16-byte frame information 135 static int vmdaudio_decode_frame(AVCodecContext *avctx, AVFrame *frame, in vmdaudio_decode_frame() argument 189 frame->nb_samples = ((silent_chunks + audio_chunks) * avctx->block_align) / in vmdaudio_decode_frame() 191 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in vmdaudio_decode_frame() 193 output_samples_u8 = frame->data[0]; in vmdaudio_decode_frame() 194 output_samples_s16 = (int16_t *)frame->data[0]; in vmdaudio_decode_frame() 199 av_assert0(avctx->block_align * silent_chunks <= frame->nb_samples * avctx->ch_layout.nb_channels); in vmdaudio_decode_frame()
|
H A D | libspeexdec.c | 127 static int libspeex_decode_frame(AVCodecContext *avctx, AVFrame *frame, in libspeex_decode_frame() argument 138 frame->nb_samples = s->frame_size; in libspeex_decode_frame() 139 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in libspeex_decode_frame() 141 output = (int16_t *)frame->data[0]; in libspeex_decode_frame() 143 /* if there is not enough data left for the smallest possible frame or the in libspeex_decode_frame() 161 /* decode a single frame */ in libspeex_decode_frame() 164 av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n"); in libspeex_decode_frame()
|
H A D | kgv1dec.c | 47 static int decode_frame(AVCodecContext *avctx, AVFrame *frame, in decode_frame() argument 86 if ((res = ff_get_buffer(avctx, frame, 0)) < 0) in decode_frame() 105 // copy from previous frame in decode_frame() 131 // copy from earlier in this frame in decode_frame() 154 av_log(avctx, AV_LOG_DEBUG, "frame finished with %d diff\n", outcnt - maxcnt); in decode_frame() 156 av_image_copy_plane(frame->data[0], frame->linesize[0], in decode_frame()
|
H A D | 8svx.c | 88 /** decode a frame */ 89 static int eightsvx_decode_frame(AVCodecContext *avctx, AVFrame *frame, in eightsvx_decode_frame() argument 141 frame->nb_samples = buf_size * 2; in eightsvx_decode_frame() 142 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in eightsvx_decode_frame() 146 delta_decode(frame->data[ch], &esc->data[ch][esc->data_idx], in eightsvx_decode_frame()
|
H A D | pcxenc.c | 88 const AVFrame *frame, int *got_packet) in pcx_encode_frame() 121 pal = (uint32_t *)frame->data[1]; in pcx_encode_frame() 166 src = frame->data[0]; in pcx_encode_frame() 175 src += frame->linesize[0]; in pcx_encode_frame() 87 pcx_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) pcx_encode_frame() argument
|
H A D | xfacedec.c | 112 static int xface_decode_frame(AVCodecContext *avctx, AVFrame *frame, in xface_decode_frame() argument 122 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in xface_decode_frame() 157 buf = frame->data[0]; in xface_decode_frame() 169 buf += frame->linesize[0]; in xface_decode_frame()
|
H A D | nellymoserdec.c | 142 static int decode_tag(AVCodecContext *avctx, AVFrame *frame, in decode_tag() argument 164 frame->nb_samples = NELLY_SAMPLES * blocks; in decode_tag() 165 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in decode_tag() 167 samples_flt = (float *)frame->data[0]; in decode_tag()
|
/third_party/ffmpeg/libavfilter/ |
H A D | dnn_interface.h | 30 #include "libavutil/frame.h" 49 DAST_SUCCESS // got a result frame successfully 54 DFT_PROCESS_FRAME, // process the whole frame 55 DFT_ANALYTICS_DETECT, // detect from the whole frame 80 typedef int (*FramePrePostProc)(AVFrame *frame, DNNData *model, AVFilterContext *filter_ctx); 81 typedef int (*DetectPostProc)(AVFrame *frame, DNNData *output, uint32_t nb, AVFilterContext *filter_ctx); 82 typedef int (*ClassifyPostProc)(AVFrame *frame, DNNData *output, uint32_t bbox_index, AVFilterContext *filter_ctx);
|
H A D | settb.c | 125 static int filter_frame(AVFilterLink *inlink, AVFrame *frame) in filter_frame() argument 130 frame->pts = rescale_pts(inlink, outlink, frame->pts); in filter_frame() 132 return ff_filter_frame(outlink, frame); in filter_frame()
|
/third_party/ffmpeg/tools/ |
H A D | venc_data_dump.c | 34 static int process_frame(DecodeContext *dc, AVFrame *frame) in process_frame() argument 38 if (!frame) in process_frame() 41 fprintf(stdout, "frame %d\n", dc->decoder->frame_number - 1); in process_frame() 43 sd = av_frame_get_side_data(frame, AV_FRAME_DATA_VIDEO_ENC_PARAMS); in process_frame() 78 fprintf(stderr, "Usage: %s <input file> <stream index> <max frame count> [<thread count> <thread type>]\n", argv[0]); in main()
|
/third_party/jinja2/ |
H A D | meta.py | 24 def enter_frame(self, frame: Frame) -> None: 26 super().enter_frame(frame) 28 for _, (action, param) in frame.symbols.loads.items():
|
/third_party/node/test/parallel/ |
H A D | test-inspector-async-stack-traces-promise-then.js | 59 (frame) => `${frame.functionName}:${frame.lineNumber}`);
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | meta.py | 21 def enter_frame(self, frame): 23 CodeGenerator.enter_frame(self, frame) 24 for _, (action, param) in iteritems(frame.symbols.loads):
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | meta.py | 28 def enter_frame(self, frame): 30 CodeGenerator.enter_frame(self, frame) 31 for _, (action, param) in iteritems(frame.symbols.loads):
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | meta.py | 21 def enter_frame(self, frame): 23 CodeGenerator.enter_frame(self, frame) 24 for _, (action, param) in iteritems(frame.symbols.loads):
|
/third_party/python/Lib/unittest/ |
H A D | signals.py | 28 def __call__(self, signum, frame): 33 self.default_handler(signum, frame) 36 self.default_handler(signum, frame)
|
/drivers/peripheral/audio/test/systemtest/common/adm_common/src/ |
H A D | audio_adm_common.cpp | 92 int32_t AdmRenderFramePrepare(const std::string& path, char *&frame, uint32_t& readSize, uint32_t& frameSize) in AdmRenderFramePrepare() argument 119 frame = reinterpret_cast<char *>(calloc(1, bufferSize)); in AdmRenderFramePrepare() 120 if (frame == nullptr) { in AdmRenderFramePrepare() 127 numRead = fread(frame, readSize, 1, file); in AdmRenderFramePrepare() 130 free(frame); in AdmRenderFramePrepare() 131 frame = nullptr; in AdmRenderFramePrepare()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_resume.tex | 8 \begin{Name}{3}{unw\_resume}{David Mosberger-Tang}{Programming Library}{unw\_resume}unw\_resume -- resume execution in a particular stack frame 19 The \Func{unw\_resume}() routine resumes execution at the stack frame 24 and then directly resumes execution in the target stack frame. Thus 31 \Func{unw\_resume}() on a cursor which identifies the stack frame of 56 of each unwound frame and appropriately processing its unwind handler 81 \item[\Const{UNW\_BADFRAME}] The stack frame identified by
|
/third_party/node/deps/v8/src/compiler/ |
H A D | frame.h | 10 #include "src/execution/frame-constants.h" 19 // Collects the spill slot and other frame slot requirements for a compiled 23 // instantiated and the basic information about the frame has been collected 24 // into them. Mutable state associated with the frame is stored separately in 33 // stack and asks the frame for more space. 40 // Must be last in a stack frame, so that it is positioned immediately below 41 // the stack frame of a callee to store to. 43 // The frame region immediately below the fixed header contains spill slots 44 // starting at slot 4 for JSFunctions. The callee-saved frame region below that 48 // Every slot of a caller or callee frame i 229 FrameAccessState(const Frame* const frame) FrameAccessState() argument 235 const Frame* frame() const { return frame_; } frame() function in v8::internal::compiler::FrameAccessState [all...] |
/drivers/peripheral/audio/test/unittest/common/render/ |
H A D | audio_render_common_test.cpp | 441 int8_t *frame = (int8_t *)calloc(1, frameLen); in HWTEST_F() local 442 EXPECT_NE(nullptr, frame); in HWTEST_F() 444 ret = render_->RenderFrame(render_, frame, frameLen, &requestBytes); in HWTEST_F() 451 if (frame != nullptr) { in HWTEST_F() 452 free(frame); in HWTEST_F() 453 frame = nullptr; in HWTEST_F() 471 "attr-route=1;attr-format=32;attr-channels=2;attr-frame-count=82;attr-sampling-rate=48000"; in HWTEST_F() 649 int8_t *frame = (int8_t *)calloc(1, frameLen); in HWTEST_F() local 650 ASSERT_NE(nullptr, frame); in HWTEST_F() 651 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, render_->RenderFrame(nullptr, frame, frameLe in HWTEST_F() 664 int8_t *frame = (int8_t *)calloc(1, frameLen); HWTEST_F() local [all...] |
/test/xts/hats/hdf/audio/idl/common/render/src/ |
H A D | audio_render_common_test.cpp | 418 int8_t *frame = (int8_t *)calloc(1, frameLen); in HWTEST_F() local 419 EXPECT_NE(nullptr, frame); in HWTEST_F() 421 ret = render_->RenderFrame(render_, frame, frameLen, &requestBytes); in HWTEST_F() 428 if (frame != nullptr) { in HWTEST_F() 429 free(frame); in HWTEST_F() 430 frame = nullptr; in HWTEST_F() 448 "attr-route=1;attr-format=32;attr-channels=2;attr-frame-count=82;attr-sampling-rate=48000"; in HWTEST_F() 626 int8_t *frame = (int8_t *)calloc(1, frameLen); in HWTEST_F() local 627 ASSERT_NE(nullptr, frame); in HWTEST_F() 628 EXPECT_EQ(HDF_ERR_INVALID_OBJECT, render_->RenderFrame(nullptr, frame, frameLe in HWTEST_F() 641 int8_t *frame = (int8_t *)calloc(1, frameLen); HWTEST_F() local [all...] |