/third_party/ffmpeg/libavcodec/ |
H A D | siren.c | 706 static int siren_decode(AVCodecContext *avctx, AVFrame *frame, in siren_decode() argument 806 frame->nb_samples = FRAME_SIZE; in siren_decode() 807 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in siren_decode() 814 s->fdsp->vector_fmul_window((float *)frame->data[0], in siren_decode()
|
H A D | mlpdec.c | 127 /// Number of PCM samples decoded so far in this frame. 162 /// number of PCM samples contained in each frame 164 /// next power of two above the number of samples in each frame 999 av_log(m->avctx, AV_LOG_ERROR, "too many audio samples in frame\n"); in read_block_data() 1093 AVFrame *frame, int *got_frame_ptr) in output_data() 1138 frame->nb_samples = s->blockpos; in output_data() 1139 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in output_data() 1144 frame->data[0], in output_data() 1152 if ((ret = ff_side_data_update_matrix_encoding(frame, s->matrix_encoding)) < 0) in output_data() 1167 static int read_access_unit(AVCodecContext *avctx, AVFrame *frame, in read_access_unit() argument 1092 output_data(MLPDecodeContext *m, unsigned int substr, AVFrame *frame, int *got_frame_ptr) output_data() argument [all...] |
H A D | takdec.c | 56 GetBitContext gb; ///< bitstream reader initialized to start at the current frame 59 int nb_samples; ///< number of samples in the current frame 67 int nb_subframes; ///< number of subframes in the current frame 71 int8_t dmode; ///< channel decorrelation type in the current frame 677 static int tak_decode_frame(AVCodecContext *avctx, AVFrame *frame, in tak_decode_frame() argument 747 frame->nb_samples = s->nb_samples; in tak_decode_frame() 748 if ((ret = ff_thread_get_buffer(avctx, frame, 0)) < 0) in tak_decode_frame() 768 s->decoded[chan] = (int32_t *)frame->extended_data[chan]; in tak_decode_frame() 893 uint8_t *samples = (uint8_t *)frame->extended_data[chan]; in tak_decode_frame() 901 int16_t *samples = (int16_t *)frame in tak_decode_frame() [all...] |
H A D | smacker.c | 107 * Decode local frame tree 591 static int smka_decode_frame(AVCodecContext *avctx, AVFrame *frame, in smka_decode_frame() argument 638 frame->nb_samples = unp_size / (avctx->ch_layout.nb_channels * (bits + 1)); in smka_decode_frame() 644 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) in smka_decode_frame() 646 samples = (int16_t *)frame->data[0]; in smka_decode_frame() 647 samples8 = frame->data[0]; in smka_decode_frame()
|
H A D | intrax8.h | 53 AVFrame *frame; member 56 // calculated per frame 78 * Initialize IntraX8 frame decoder. 95 * Destroy IntraX8 frame structure. 101 * Decode single IntraX8 frame.
|
H A D | mediacodecdec_common.h | 31 #include "libavutil/frame.h" 87 AVFrame *frame,
|
H A D | sbc.h | 82 /* This structure contains an unpacked SBC frame. 108 /* raw integer subband samples in the frame */ 118 void ff_sbc_calculate_bits(const struct sbc_frame *frame, int (*bits)[8]);
|
H A D | vdpau_internal.h | 30 #include "libavutil/frame.h" 126 int ff_vdpau_common_end_frame(AVCodecContext *avctx, AVFrame *frame,
|
/third_party/ffmpeg/libavfilter/ |
H A D | f_graphmonitor.c | 414 AVFrame *frame = NULL; in activate() local 417 ret = ff_inlink_consume_frame(inlink, &frame); in activate() 421 pts = frame->pts; in activate() 422 av_frame_free(&frame); in activate()
|
H A D | vaapi_vpp.c | 177 av_log(avctx, AV_LOG_ERROR, "Failed to create HW frame context " in ff_vaapi_vpp_config_output() 198 av_log(avctx, AV_LOG_ERROR, "Failed to initialise VAAPI frame " in ff_vaapi_vpp_config_output() 408 static int vaapi_vpp_frame_is_rgb(const AVFrame *frame) in vaapi_vpp_frame_is_rgb() argument 412 av_assert0(frame->format == AV_PIX_FMT_VAAPI && in vaapi_vpp_frame_is_rgb() 413 frame->hw_frames_ctx); in vaapi_vpp_frame_is_rgb() 414 hwfc = (const AVHWFramesContext*)frame->hw_frames_ctx->data; in vaapi_vpp_frame_is_rgb() 464 // If the properties weren't filled completely in the output frame and in vaapi_vpp_colour_properties()
|
H A D | avf_showwaves.c | 69 AVFrame *frame; member 146 av_frame_free(&tmp->frame); in uninit() 592 av_log(ctx, AV_LOG_DEBUG, "Create frame averaging %"PRId64" samples per column\n", column_max_samples); in push_single_pic() 598 const AVFrame *frame = node->frame; in push_single_pic() local 599 const int16_t *p = (const int16_t *)frame->data[0]; in push_single_pic() 601 for (i = 0; i < frame->nb_samples; i++) { in push_single_pic() 851 /* queue the audio frame */ in showwavespic_filter_frame() 857 f->frame = insamples; in showwavespic_filter_frame()
|
H A D | af_ladspa.c | 93 { "nb_samples", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX, FLAGS }, 94 { "n", "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX, FLAGS }, 277 AVFrame *frame = ff_get_audio_buffer(outlink, FFMIN(2048, s->out_pad)); in request_frame() local 278 if (!frame) in request_frame() 281 s->out_pad -= frame->nb_samples; in request_frame() 282 frame->pts = s->next_in_pts; in request_frame() 283 return filter_frame(ctx->inputs[0], frame); in request_frame()
|
H A D | vf_premultiply.c | 748 AVFrame *frame = NULL; in activate() local 755 if ((ret = ff_inlink_consume_frame(ctx->inputs[0], &frame)) > 0) { in activate() 756 ret = filter_frame(ctx, &out, frame, frame); in activate() 757 av_frame_free(&frame); in activate()
|
/third_party/node/src/ |
H A D | node_util.cc | 146 // This function is frame zero. The caller is frame one. If there aren't two in GetCallerLocation() 152 Local<StackFrame> frame = trace->GetFrame(isolate, 1); in GetCallerLocation() local 153 Local<Value> ret[] = {Integer::New(isolate, frame->GetLineNumber()), in GetCallerLocation() 154 Integer::New(isolate, frame->GetColumn()), in GetCallerLocation() 155 frame->GetScriptNameOrSourceURL()}; in GetCallerLocation()
|
H A D | inspector_socket.h | 27 virtual void OnWsFrame(const std::vector<char>& frame) = 0;
|
/third_party/lz4/tests/ |
H A D | Makefile | 236 echo "Hello World 3 !" | $(LZ4) --no-frame-crc | $(LZ4) -d -c 265 test-lz4-frame-concatenation: FPREFIX = tmp-lfc 266 test-lz4-frame-concatenation: lz4 datagen 267 @echo "\n ---- test frame concatenation ----" 277 @echo frame concatenation test completed 379 $(LZ4) --no-frame-crc < $(FPREFIX)-dg20k | $(LZ4) -d > $(FPREFIX)-dec 385 $(DATAGEN) -g33M | $(LZ4) --no-frame-crc | $(LZ4) -t 414 $(LZ4) --list $(FPREFIX)-hw.lz4 # test --list on valid single-frame file 417 ! $(LZ4) -f $(FPREFIX)-hw.lz4 # uncompress valid frame followed by invalid data (must fail now) 522 test-lz4-frame [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-debug.cc | 58 // Get the top-most JavaScript frame. in RUNTIME_FUNCTION_RETURN_PAIR() 61 isolate->debug()->Break(it.frame(), in RUNTIME_FUNCTION_RETURN_PAIR() 62 handle(it.frame()->function(), isolate)); in RUNTIME_FUNCTION_RETURN_PAIR() 66 DCHECK(it.frame()->is_interpreted()); in RUNTIME_FUNCTION_RETURN_PAIR() 68 reinterpret_cast<InterpretedFrame*>(it.frame()); in RUNTIME_FUNCTION_RETURN_PAIR() 85 // interpreted stack frame to the non-debug variant so that the interpreter in RUNTIME_FUNCTION_RETURN_PAIR() 121 // Get the top-most JavaScript frame. This is the debug target function. in RUNTIME_FUNCTION() 123 DCHECK_EQ(*function, it.frame()->function()); in RUNTIME_FUNCTION() 124 // Check whether the next JS frame is closer than the last API entry. in RUNTIME_FUNCTION() 129 it.frame() in RUNTIME_FUNCTION() [all...] |
/third_party/skia/src/codec/ |
H A D | SkSwizzler.cpp | 805 dstInfo.bytesPerPixel(), options, nullptr /*frame*/); in MakeSimple() 812 const SkIRect* frame) { in Make() 1144 return Make(dstInfo, fastProc, proc, ctable, srcBPP, dstBPP, options, frame); in Make() 1149 int dstBPP, const SkCodec::Options& options, const SkIRect* frame) { in Make() 1157 SkASSERT(!frame); in Make() 1161 } else if (frame) { in Make() 1162 dstOffset = frame->left(); in Make() 1163 srcWidth = frame->width(); in Make() 1201 // doesn't account for the width of a subset frame (i.e. gif). As a in onSetSampleX() 1204 // frame widt in onSetSampleX() 808 Make(const SkEncodedInfo& encodedInfo, const SkPMColor* ctable, const SkImageInfo& dstInfo, const SkCodec::Options& options, const SkIRect* frame) Make() argument 1147 Make(const SkImageInfo& dstInfo, RowProc fastProc, RowProc proc, const SkPMColor* ctable, int srcBPP, int dstBPP, const SkCodec::Options& options, const SkIRect* frame) Make() argument [all...] |
/third_party/elfutils/tests/ |
H A D | varlocs.c | 268 Dwarf_Frame *frame; in print_expr() local 269 if (dwarf_cfi_addrframe (cfi_eh, addr + cfi_eh_bias, &frame) == 0 in print_expr() 271 &frame) == 0) in print_expr() 275 if (dwarf_frame_cfa (frame, &cfa_ops, &cfa_nops) != 0) in print_expr() 281 free (frame); in print_expr() 366 /* 1 numeric signed argument. Offset from frame base. */ in print_expr() 371 error (EXIT_FAILURE, 0, "DW_OP_fbreg used without a frame base"); in print_expr() 707 // Display frame base for function if it exists. in print_varlocs() 753 // See whether the subprogram we are inlined into has a frame in print_varlocs() 1012 /* Whether this or the any outer DIE has a frame bas in handle_die() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | vividas.c | 758 int64_t frame; in viv_read_seek() local 761 frame = timestamp; in viv_read_seek() 763 frame = av_rescale_q(timestamp, s->streams[0]->time_base, s->streams[stream_index]->time_base); in viv_read_seek() 766 if (frame >= viv->sb_blocks[i].packet_offset && frame < viv->sb_blocks[i].packet_offset + viv->sb_blocks[i].n_packets) { in viv_read_seek()
|
/third_party/node/test/cctest/ |
H A D | test_inspector_socket.cc | 145 const std::vector<char>& frame = frames.front(); in ExpectData() local 146 EXPECT_FALSE(frame.empty()); in ExpectData() 147 auto c = frame.begin(); in ExpectData() 148 for (; c < frame.end() && cur < end; c++) { in ExpectData() 152 EXPECT_EQ(c, frame.end()); in ExpectData() 517 const char SERVER_FRAME[] = "I'm not a good WS frame. Nope!"; in TEST_F()
|
/third_party/ffmpeg/libavutil/ |
H A D | hdr_dynamic_metadata.h | 24 #include "frame.h" 335 * Allocate a complete AVDynamicHDRPlus and add it to the frame. 336 * @param frame The frame which side data is added to. 341 AVDynamicHDRPlus *av_dynamic_hdr_plus_create_side_data(AVFrame *frame);
|
/third_party/jerryscript/tools/runners/ |
H A D | util.py | 45 signal.signal(signal.SIGINT, lambda signal, frame: set_timezone_and_exit(timezone))
|
/third_party/node/deps/v8/tools/gcmole/ |
H A D | Makefile | 46 -D__STDC_LIMIT_MACROS -fomit-frame-pointer -fno-exceptions \
|
/third_party/nghttp2/lib/ |
H A D | nghttp2_outbound_item.h | 36 /* struct used for HEADERS and PUSH_PROMISE frame */ 48 /* struct used for DATA frame */ 51 * The data to be sent for this DATA frame. 55 * The flags of DATA frame. We use separate flags here and 56 * nghttp2_data frame. The latter contains flags actually sent to 76 transmission of this frame. */ 80 the reaction to this frame. */ 84 /* struct used for GOAWAY frame */ 90 /* struct used for extension frame */ 92 /* nonzero if this extension frame i 109 nghttp2_frame frame; global() member [all...] |