/third_party/nghttp2/lib/ |
H A D | nghttp2_frame.h | 42 /* The number of bytes of frame header. */ 49 /* The one frame buffer length for transmission. We may use several of 55 /* The default length of DATA frame payload. */ 72 /* Union of extension frame payload */ 84 * Initializes frame header |hd| with given parameters. Reserved bit 114 * Returns the offset from the HEADERS frame payload where the 115 * compressed header block starts. The frame payload does not include 116 * frame header. 118 size_t nghttp2_frame_headers_payload_nv_offset(nghttp2_headers *frame); 121 * Packs HEADERS frame |fram [all...] |
H A D | nghttp2_outbound_item.c | 39 nghttp2_frame *frame; in nghttp2_outbound_item_free() local 45 frame = &item->frame; in nghttp2_outbound_item_free() 47 switch (frame->hd.type) { in nghttp2_outbound_item_free() 49 nghttp2_frame_data_free(&frame->data); in nghttp2_outbound_item_free() 52 nghttp2_frame_headers_free(&frame->headers, mem); in nghttp2_outbound_item_free() 55 nghttp2_frame_priority_free(&frame->priority); in nghttp2_outbound_item_free() 58 nghttp2_frame_rst_stream_free(&frame->rst_stream); in nghttp2_outbound_item_free() 61 nghttp2_frame_settings_free(&frame->settings, mem); in nghttp2_outbound_item_free() 64 nghttp2_frame_push_promise_free(&frame in nghttp2_outbound_item_free() [all...] |
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_frame.h | 42 /* The number of bytes of frame header. */ 49 /* The one frame buffer length for transmission. We may use several of 55 /* The default length of DATA frame payload. */ 72 /* Union of extension frame payload */ 84 * Initializes frame header |hd| with given parameters. Reserved bit 114 * Returns the offset from the HEADERS frame payload where the 115 * compressed header block starts. The frame payload does not include 116 * frame header. 118 size_t nghttp2_frame_headers_payload_nv_offset(nghttp2_headers *frame); 121 * Packs HEADERS frame |fram [all...] |
H A D | nghttp2_outbound_item.c | 39 nghttp2_frame *frame; in nghttp2_outbound_item_free() local 45 frame = &item->frame; in nghttp2_outbound_item_free() 47 switch (frame->hd.type) { in nghttp2_outbound_item_free() 49 nghttp2_frame_data_free(&frame->data); in nghttp2_outbound_item_free() 52 nghttp2_frame_headers_free(&frame->headers, mem); in nghttp2_outbound_item_free() 55 nghttp2_frame_priority_free(&frame->priority); in nghttp2_outbound_item_free() 58 nghttp2_frame_rst_stream_free(&frame->rst_stream); in nghttp2_outbound_item_free() 61 nghttp2_frame_settings_free(&frame->settings, mem); in nghttp2_outbound_item_free() 64 nghttp2_frame_push_promise_free(&frame in nghttp2_outbound_item_free() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | imm4.c | 202 static int decode_intra(AVCodecContext *avctx, GetBitContext *gb, AVFrame *frame) in decode_intra() argument 235 s->idsp.idct_put(frame->data[0] + y * frame->linesize[0] + x, in decode_intra() 236 frame->linesize[0], s->block[0]); in decode_intra() 237 s->idsp.idct_put(frame->data[0] + y * frame->linesize[0] + x + 8, in decode_intra() 238 frame->linesize[0], s->block[1]); in decode_intra() 239 s->idsp.idct_put(frame->data[0] + (y + 8) * frame->linesize[0] + x, in decode_intra() 240 frame in decode_intra() 253 decode_inter(AVCodecContext *avctx, GetBitContext *gb, AVFrame *frame, AVFrame *prev) decode_inter() argument 356 decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) decode_frame() argument [all...] |
H A D | decode.c | 36 #include "libavutil/frame.h" 277 static inline int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples) in decode_simple_internal() argument 305 ret = ff_thread_decode_frame(avctx, frame, &got_frame, pkt); in decode_simple_internal() 307 ret = codec->cb.decode(avctx, frame, &got_frame, pkt); in decode_simple_internal() 310 frame->pkt_dts = pkt->dts; in decode_simple_internal() 313 frame->pkt_pos = pkt->pos; in decode_simple_internal() 315 /* get_buffer is supposed to set frame parameters */ in decode_simple_internal() 317 if (!frame->sample_aspect_ratio.num) frame->sample_aspect_ratio = avctx->sample_aspect_ratio; in decode_simple_internal() 318 if (!frame in decode_simple_internal() 507 decode_simple_receive_frame(AVCodecContext *avctx, AVFrame *frame) decode_simple_receive_frame() argument 523 decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame) decode_receive_frame_internal() argument 612 apply_cropping(AVCodecContext *avctx, AVFrame *frame) apply_cropping() argument 639 avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame) avcodec_receive_frame() argument 1235 add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame) add_metadata_from_side_data() argument 1247 ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame) ff_decode_frame_props() argument 1252 enum AVFrameSideDataType frame; ff_decode_frame_props() member 1345 validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame) validate_avframe_allocation() argument 1379 ff_attach_decode_data(AVFrame *frame) ff_attach_decode_data() argument 1403 ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags) ff_get_buffer() argument 1484 reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags) reget_buffer_internal() argument 1521 ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags) ff_reget_buffer() argument [all...] |
H A D | imx.c | 29 AVFrame *frame; member 43 imx->frame = av_frame_alloc(); in imx_decode_init() 44 if (!imx->frame) in imx_decode_init() 55 AVFrame *frame = imx->frame; in imx_decode_frame() local 58 if ((ret = ff_reget_buffer(avctx, frame, 0)) < 0) in imx_decode_frame() 62 frame->palette_has_changed = 1; in imx_decode_frame() 63 frame->key_frame = 1; in imx_decode_frame() 65 frame->key_frame = 0; in imx_decode_frame() 66 frame in imx_decode_frame() [all...] |
H A D | dds.c | 394 /* Set any remaining post-proc that should happen before frame is ready. */ in parse_pixel_format() 433 static void do_swizzle(AVFrame *frame, int x, int y) in do_swizzle() argument 436 for (i = 0; i < frame->linesize[0] * frame->height; i += 4) { in do_swizzle() 437 uint8_t *src = frame->data[0] + i; in do_swizzle() 442 static void run_postproc(AVCodecContext *avctx, AVFrame *frame) in run_postproc() argument 454 for (i = 0; i < frame->linesize[0] * frame->height; i += 4) { in run_postproc() 455 uint8_t *src = frame->data[0] + i; in run_postproc() 476 for (i = 0; i < frame in run_postproc() 568 dds_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) dds_decode() argument [all...] |
H A D | argo.c | 43 AVFrame *frame; member 67 static int decode_avcf(AVCodecContext *avctx, AVFrame *frame) in decode_avcf() argument 71 const int l = frame->linesize[0]; in decode_avcf() 73 uint8_t *dst = frame->data[0]; in decode_avcf() 75 if (bytestream2_get_bytes_left(gb) < 1024 + (frame->width / 2) * (frame->height / 2)) in decode_avcf() 79 for (int y = 0; y < frame->height; y += 2) { in decode_avcf() 80 for (int x = 0; x < frame->width; x += 2) { in decode_avcf() 90 dst += frame->linesize[0] * 2; in decode_avcf() 96 static int decode_alcd(AVCodecContext *avctx, AVFrame *frame) in decode_alcd() argument 144 decode_mad1(AVCodecContext *avctx, AVFrame *frame) decode_mad1() argument 354 decode_mad1_24(AVCodecContext *avctx, AVFrame *frame) decode_mad1_24() argument 562 decode_rle(AVCodecContext *avctx, AVFrame *frame) decode_rle() argument 607 AVFrame *frame = s->frame; decode_frame() local [all...] |
H A D | libwebpenc_common.c | 125 const AVFrame *frame, AVFrame **alt_frame_ptr, in ff_libwebp_get_frame() 163 pic->argb = (uint32_t *)frame->data[0]; in ff_libwebp_get_frame() 164 pic->argb_stride = frame->linesize[0] / 4; in ff_libwebp_get_frame() 166 if (frame->linesize[1] != frame->linesize[2] || s->cr_threshold) { in ff_libwebp_get_frame() 169 "Copying frame due to differing chroma linesizes.\n"); in ff_libwebp_get_frame() 178 alt_frame->width = frame->width; in ff_libwebp_get_frame() 179 alt_frame->height = frame->height; in ff_libwebp_get_frame() 180 alt_frame->format = frame->format; in ff_libwebp_get_frame() 186 alt_frame->format = frame in ff_libwebp_get_frame() 124 ff_libwebp_get_frame(AVCodecContext *avctx, LibWebPContextCommon *s, const AVFrame *frame, AVFrame **alt_frame_ptr, WebPPicture **pic_ptr) ff_libwebp_get_frame() argument [all...] |
H A D | sbc.c | 76 * Takes a pointer to the frame in question and a pointer to the bits array 78 void ff_sbc_calculate_bits(const struct sbc_frame *frame, int (*bits)[8]) in ff_sbc_calculate_bits() argument 80 int subbands = frame->subbands; in ff_sbc_calculate_bits() 81 uint8_t sf = frame->frequency; in ff_sbc_calculate_bits() 83 if (frame->mode == MONO || frame->mode == DUAL_CHANNEL) { in ff_sbc_calculate_bits() 87 for (ch = 0; ch < frame->channels; ch++) { in ff_sbc_calculate_bits() 89 if (frame->allocation == SNR) { in ff_sbc_calculate_bits() 91 bitneed[ch][sb] = frame->scale_factor[ch][sb]; in ff_sbc_calculate_bits() 97 if (frame in ff_sbc_calculate_bits() [all...] |
H A D | vbnenc.c | 34 #include "libavutil/frame.h" 45 const AVFrame *frame, int *got_packet) in vbn_encode() 53 ret = av_image_check_size2(frame->width, frame->height, INT_MAX, frame->format, 0, avctx); in vbn_encode() 58 if (frame->width % TEXTURE_BLOCK_W || frame->height % TEXTURE_BLOCK_H) { in vbn_encode() 59 av_log(avctx, AV_LOG_ERROR, "Video size %dx%d is not multiple of 4\n", frame->width, frame->height); in vbn_encode() 62 if (frame in vbn_encode() 44 vbn_encode(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet) vbn_encode() argument [all...] |
/foundation/CastEngine/castengine_wifi_display/tests/unittest/protocol/frame/ |
H A D | frame_unit_test.cpp | 19 #include "protocol/frame/aac_frame.h" 20 #include "protocol/frame/frame_merger.h" 21 #include "protocol/frame/h264_frame.h" 61 auto frame = std::make_shared<AACFrame>(); in HWTEST_F() local 62 EXPECT_NE(frame, nullptr); in HWTEST_F() 67 auto frame = std::make_shared<AACFrame>(aacFrame, sizeof(aacFrame), 0, 0, 0); in HWTEST_F() local 68 EXPECT_NE(frame, nullptr); in HWTEST_F() 102 auto frame = std::make_shared<FrameImpl>(); in HWTEST_F() local 103 EXPECT_NE(frame, nullptr); in HWTEST_F() 112 auto ret = merger->InputFrame(frame, buffe in HWTEST_F() 120 auto frame = std::make_shared<FrameImpl>(); HWTEST_F() local 130 auto frame = std::make_shared<FrameImpl>(); HWTEST_F() local 139 auto frame = FrameImpl::Create(); HWTEST_F() local 145 auto frame = std::make_shared<FrameImpl>(DataBuffer{}); HWTEST_F() local 151 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 157 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 165 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 173 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 181 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 189 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 197 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 205 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 213 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 221 auto frame = FrameImpl::CreateFrom(DataBuffer{}); HWTEST_F() local 230 auto frame = std::make_shared<H264Frame>(DataBuffer{}); HWTEST_F() local 236 auto frame = std::make_shared<H264Frame>(); HWTEST_F() local 242 auto frame = std::make_shared<H264Frame>(aacFrame, sizeof(aacFrame) / sizeof(uint8_t), 0); HWTEST_F() local 248 auto frame = std::make_shared<H264Frame>(aacFrame, sizeof(aacFrame) / sizeof(uint8_t), 0); HWTEST_F() local 256 auto frame = std::make_shared<H264Frame>(aacFrame, sizeof(aacFrame) / sizeof(uint8_t), 0); HWTEST_F() local 264 auto frame = std::make_shared<H264Frame>(aacFrame, sizeof(aacFrame) / sizeof(uint8_t), 0); HWTEST_F() local 272 auto frame = std::make_shared<H264Frame>(aacFrame, sizeof(aacFrame) / sizeof(uint8_t), 0); HWTEST_F() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_chromakey.c | 93 static av_always_inline void get_pixel_uv(AVFrame *frame, int hsub_log2, int vsub_log2, int x, int y, uint8_t *u, uint8_t *v) in get_pixel_uv() argument 95 if (x < 0 || x >= frame->width || y < 0 || y >= frame->height) in get_pixel_uv() 101 *u = frame->data[1][frame->linesize[1] * y + x]; in get_pixel_uv() 102 *v = frame->data[2][frame->linesize[2] * y + x]; in get_pixel_uv() 105 static av_always_inline void get_pixel16_uv(AVFrame *frame, int hsub_log2, int vsub_log2, int x, int y, uint16_t *u, uint16_t *v) in get_pixel16_uv() argument 107 if (x < 0 || x >= frame->width || y < 0 || y >= frame in get_pixel16_uv() 119 AVFrame *frame = arg; do_chromakey_slice() local 149 AVFrame *frame = arg; do_chromakey16_slice() local 184 AVFrame *frame = arg; do_chromahold_slice() local 221 AVFrame *frame = arg; do_chromahold16_slice() local 257 filter_frame(AVFilterLink *link, AVFrame *frame) filter_frame() argument [all...] |
H A D | framepool.c | 25 #include "libavutil/frame.h" 193 AVFrame *frame; in ff_frame_pool_get() local 196 frame = av_frame_alloc(); in ff_frame_pool_get() 197 if (!frame) { in ff_frame_pool_get() 208 frame->width = pool->width; in ff_frame_pool_get() 209 frame->height = pool->height; in ff_frame_pool_get() 210 frame->format = pool->format; in ff_frame_pool_get() 213 frame->linesize[i] = pool->linesize[i]; in ff_frame_pool_get() 217 frame->buf[i] = av_buffer_pool_get(pool->pools[i]); in ff_frame_pool_get() 218 if (!frame in ff_frame_pool_get() [all...] |
H A D | vf_fade.c | 86 // Choose what to log. If both time-based and frame-based options, both lines will be in the log in init() 184 static av_always_inline void filter_rgb(FadeContext *s, const AVFrame *frame, in filter_rgb() argument 196 uint8_t *p = frame->data[0] + i * frame->linesize[0]; in filter_rgb() 197 for (j = 0; j < frame->width; j++) { in filter_rgb() 209 static av_always_inline void filter_rgb_planar(FadeContext *s, const AVFrame *frame, in filter_rgb_planar() argument 217 uint8_t *pg = frame->data[0] + i * frame->linesize[0]; in filter_rgb_planar() 218 uint8_t *pb = frame->data[1] + i * frame in filter_rgb_planar() 236 AVFrame *frame = arg; filter_slice_rgb() local 256 AVFrame *frame = arg; filter_slice_luma() local 281 AVFrame *frame = arg; filter_slice_luma16() local 306 AVFrame *frame = arg; filter_slice_chroma() local 333 AVFrame *frame = arg; filter_slice_chroma16() local 359 AVFrame *frame = arg; filter_slice_alpha() local 384 AVFrame *frame = arg; filter_slice_alpha16() local 443 filter_frame(AVFilterLink *inlink, AVFrame *frame) filter_frame() argument [all...] |
H A D | vf_hsvkey.c | 92 AVFrame *frame = arg; in do_hsvkey_slice() local 93 const int slice_start = (frame->height * jobnr) / nb_jobs; in do_hsvkey_slice() 94 const int slice_end = (frame->height * (jobnr + 1)) / nb_jobs; in do_hsvkey_slice() 102 for (int x = 0; x < frame->width; x++) { in do_hsvkey_slice() 103 int Y = frame->data[0][frame->linesize[0] * y + x]; in do_hsvkey_slice() 104 int u = frame->data[1][frame->linesize[1] * (y >> vsub_log2) + (x >> hsub_log2)]; in do_hsvkey_slice() 105 int v = frame->data[2][frame in do_hsvkey_slice() 117 AVFrame *frame = arg; do_hsvkey16_slice() local 143 AVFrame *frame = arg; do_hsvhold_slice() local 179 AVFrame *frame = arg; do_hsvhold16_slice() local 213 filter_frame(AVFilterLink *link, AVFrame *frame) filter_frame() argument [all...] |
H A D | framequeue.c | 2 * Generic frame queue 42 nb_samples += bucket(fq, i)->frame->nb_samples; in check_consistency() 56 AVFrame *frame = ff_framequeue_take(fq); in ff_framequeue_free() local 57 av_frame_free(&frame); in ff_framequeue_free() 63 int ff_framequeue_add(FFFrameQueue *fq, AVFrame *frame) in ff_framequeue_add() argument 90 b->frame = frame; in ff_framequeue_add() 93 fq->total_samples_head += frame->nb_samples; in ff_framequeue_add() 109 fq->total_samples_tail += b->frame->nb_samples; in ff_framequeue_take() 112 return b->frame; in ff_framequeue_take() [all...] |
H A D | vf_tpad.c | 56 { "clone", "clone first/last frame", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, VF, "mode" }, 76 AVFrame *frame = NULL; in activate() local 95 frame = ff_get_video_buffer(outlink, outlink->w, outlink->h); in activate() 96 if (!frame) in activate() 99 frame->data, frame->linesize, in activate() 100 0, 0, frame->width, frame->height); in activate() 101 frame->pts = s->pts; in activate() 104 return ff_filter_frame(outlink, frame); in activate() [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/src/ |
H A D | sbc_frame.cpp | 105 int Frame::SbcCalculateLoudness(const Frame& frame, int channel, int subband) in SbcCalculateLoudness() argument 109 if (frame.subbands_ == SUBBAND_FOUR) { in SbcCalculateLoudness() 110 loudness = frame.scaleFactor_[channel][subband] - SBC_OFFSET_4[frame.frequency_][subband]; in SbcCalculateLoudness() 112 loudness = frame.scaleFactor_[channel][subband] - SBC_OFFSET_8[frame.frequency_][subband]; in SbcCalculateLoudness() 119 void Frame::SbcCalculateBitsNormal(const Frame& frame, int (*bits)[VALUE8]) in SbcCalculateBitsNormal() argument 121 int subbands = (frame.subbands_ == SUBBAND_FOUR) ? SUBBAND_FOUR : SUBBAND_EIGHT; in SbcCalculateBitsNormal() 123 for (int channel = 0; channel < frame.channels_; channel++) { in SbcCalculateBitsNormal() 124 int bitSlice = SbcCalculateBitsMax(frame, channe in SbcCalculateBitsNormal() 186 SbcCalculateBitsMax(const Frame& frame, const int channel, int subbands, int (*bits)[VALUE8]) SbcCalculateBitsMax() argument 216 SbcCalculateBitsMaxStereo(const Frame& frame, const int subbands, int (*bits)[VALUE8]) SbcCalculateBitsMaxStereo() argument 294 SbcCalculateBitsStereo(const Frame& frame, int (*bits)[VALUE8]) SbcCalculateBitsStereo() argument 346 SbcCalculateBits(const Frame& frame, int (*bits)[VALUE8]) SbcCalculateBits() argument 363 UnpackFrameStream(Frame& frame, const uint8_t* bufStream, size_t len) UnpackFrameStream() argument 473 auto frame = std::make_unique<Frame>(); Unpack() local 559 SbcCaculateLevelsAndSampleDelta(const Frame& frame, int (*bits)[VALUE8], uint32_t (*levels)[VALUE8], uint32_t (*sampleDelta)[VALUE8]) SbcCaculateLevelsAndSampleDelta() argument 572 PackFrameInternal(const Frame& frame, uint8_t* bufStream, int subbands, int channels, int joint) PackFrameInternal() argument 623 Pack(uint8_t* bufStream, const Frame& frame, int joint) Pack() argument [all...] |
/third_party/ffmpeg/tools/ |
H A D | scale_slice_test.c | 51 static int process_frame(DecodeContext *dc, AVFrame *frame) in process_frame() argument 57 if (!frame) in process_frame() 61 pd->scaler = sws_getContext(frame->width, frame->height, frame->format, in process_frame() 67 av_pix_fmt_get_chroma_sub_sample(frame->format, &pd->h_shift_src, &pd->v_shift_src); in process_frame() 70 /* scale the whole input frame as reference */ in process_frame() 71 ret = sws_scale(pd->scaler, (const uint8_t **)frame->data, frame->linesize, 0, frame in process_frame() 148 AVFrame *frame = av_frame_alloc(); main() local [all...] |
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
H A D | unwinder.cpp | 179 void AddFrame(DfxFrame& frame); 186 void FillFrame(DfxFrame& frame); 187 void FillJsFrame(DfxFrame& frame); 188 bool GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame& frame); 229 void AddFrame(const StepFrame& frame, std::shared_ptr<DfxMap> map); 230 bool StepInner(const bool isSigFrame, StepFrame& frame, void *ctx); 233 bool StepArkJsFrame(StepFrame& frame); 389 void Unwinder::AddFrame(DfxFrame& frame) in AddFrame() argument 391 impl_->AddFrame(frame); in AddFrame() 409 void Unwinder::FillFrame(DfxFrame& frame) in FillFrame() argument 414 FillJsFrame(DfxFrame& frame) FillJsFrame() argument 419 GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame& frame) GetFrameByPc() argument 669 StepArkJsFrame(StepFrame& frame) StepArkJsFrame() argument 752 StepFrame frame; Unwind() local 880 StepFrame frame; Step() local 896 StepInner(const bool isSigFrame, StepFrame& frame, void *ctx) StepInner() argument 1154 AddFrame(const StepFrame& frame, std::shared_ptr<DfxMap> map) AddFrame() argument 1176 AddFrame(DfxFrame& frame) AddFrame() argument 1205 auto& frame = frames[i]; FillFrames() local 1216 FillFrame(DfxFrame& frame) FillFrame() argument 1243 FillJsFrame(DfxFrame& frame) FillJsFrame() argument 1279 GetFrameByPc(uintptr_t pc, std::shared_ptr<DfxMaps> maps, DfxFrame &frame) GetFrameByPc() argument 1329 DfxFrame frame; GetFramesByPcs() local 1349 DfxFrame frame; GetLocalFramesByPcs() local 1383 auto frame = reinterpret_cast<DfxFrame *>(data); DlPhdrCallback() local [all...] |
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | structures.h | 35 * All possible SPDY control frame types. The number is used in the header 36 * of the control frame. 41 * The SYN_STREAM control frame allows the sender to asynchronously 48 * the recipient of a SYN_STREAM frame. 53 * The RST_STREAM frame allows for abnormal termination of a stream. 62 * A SETTINGS frame contains a set of id/value pairs for 73 * The PING control frame is a mechanism for measuring a minimal 75 * or the server. Recipients of a PING frame should send an 76 * identical frame to the sender as soon as possible (if there is 83 * The GOAWAY control frame i [all...] |
/foundation/CastEngine/castengine_wifi_display/tests/demo/rtp/ |
H A D | rtp_dec_demo.cpp | 152 h264unPack->SetOnRtpUnpack([=](uint32_t ssrc, const Frame::Ptr &frame) { in main() 153 if (frame->GetTrackType() == TRACK_VIDEO) { in main() 154 printf("h264 data: len: %d dts: %d\n", frame->Size(), frame->Dts()); in main() 155 auto data = frame->Data(); in main() 156 auto bytes = frame->Size(); in main() 161 fwrite(frame->Data(), frame->Size(), 1, gFd); // save .h264 file in main() 182 aacunPack->SetOnRtpUnpack([=](uint32_t ssrc, const Frame::Ptr &frame) { in main() 184 if (frame in main() [all...] |
/third_party/nghttp2/src/ |
H A D | app_helper.cc | 258 void print_frame(print_type ptype, const nghttp2_frame *frame) { in print_frame() argument 259 fprintf(outfile, "%s%s%s frame ", frame_name_ansi_esc(ptype), in print_frame() 260 strframetype(frame->hd.type).c_str(), ansi_escend()); in print_frame() 261 print_frame_hd(frame->hd); in print_frame() 262 if (frame->hd.flags) { in print_frame() 264 print_flags(frame->hd); in print_frame() 266 switch (frame->hd.type) { in print_frame() 268 if (frame->data.padlen > 0) { in print_frame() 270 fprintf(outfile, "(padlen=%zu)\n", frame->data.padlen); in print_frame() 275 fprintf(outfile, "(padlen=%zu", frame in print_frame() 388 verbose_on_header_callback(nghttp2_session *session, const nghttp2_frame *frame, const uint8_t *name, size_t namelen, const uint8_t *value, size_t valuelen, uint8_t flags, void *user_data) verbose_on_header_callback() argument 409 verbose_on_frame_recv_callback(nghttp2_session *session, const nghttp2_frame *frame, void *user_data) verbose_on_frame_recv_callback() argument 419 verbose_on_invalid_frame_recv_callback(nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code, void *user_data) verbose_on_invalid_frame_recv_callback() argument 431 verbose_on_frame_send_callback(nghttp2_session *session, const nghttp2_frame *frame, void *user_data) verbose_on_frame_send_callback() argument [all...] |