Searched refs:parse_code (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A D | rtpenc_vc2hq.c | 36 static void send_packet(AVFormatContext *ctx, uint8_t parse_code, int info_hdr_size, const uint8_t *buf, int size, int i, int f, int rtp_m) in send_packet() argument 42 AV_WB8 (&rtp_ctx->buf[3], parse_code); in send_packet() 106 uint8_t parse_code; in ff_rtp_send_vc2hq() local 110 parse_code = unit[4]; in ff_rtp_send_vc2hq() 113 switch (parse_code) { in ff_rtp_send_vc2hq() 118 send_packet(ctx, parse_code, 0, unit + DIRAC_DATA_UNIT_HEADER_SIZE, unit_size - DIRAC_DATA_UNIT_HEADER_SIZE, 0, 0, 0); in ff_rtp_send_vc2hq() 129 avpriv_report_missing_feature(ctx, "VC-2 parse code %d", parse_code); in ff_rtp_send_vc2hq()
|
H A D | rtpdec_vc2hq.c | 46 uint8_t parse_code, uint32_t data_unit_size) in fill_parse_info_header() 49 buf[4] = parse_code; in fill_parse_info_header() 181 uint8_t parse_code = 0; in vc2hq_handle_packet() local 196 parse_code = buf[3]; in vc2hq_handle_packet() 199 if (pl_ctx->seen_sequence_header || parse_code == DIRAC_PCODE_SEQ_HEADER) { in vc2hq_handle_packet() 200 switch(parse_code) { in vc2hq_handle_packet() 45 fill_parse_info_header(PayloadContext *pl_ctx, uint8_t *buf, uint8_t parse_code, uint32_t data_unit_size) fill_parse_info_header() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | diracdec.c | 2127 uint8_t parse_code; in dirac_decode_data_unit() local 2133 parse_code = buf[4]; in dirac_decode_data_unit() 2137 if (parse_code == DIRAC_PCODE_SEQ_HEADER) { in dirac_decode_data_unit() 2185 } else if (parse_code == DIRAC_PCODE_END_SEQ) { /* [DIRAC_STD] End of Sequence */ in dirac_decode_data_unit() 2188 } else if (parse_code == DIRAC_PCODE_AUX) { in dirac_decode_data_unit() 2197 } else if (parse_code & 0x8) { /* picture data unit */ in dirac_decode_data_unit() 2215 tmp = parse_code & 0x03; /* [DIRAC_STD] num_refs() */ in dirac_decode_data_unit() 2221 s->is_arith = (parse_code & 0x48) == 0x08; /* [DIRAC_STD] using_ac() */ in dirac_decode_data_unit() 2222 s->low_delay = (parse_code & 0x88) == 0x88; /* [DIRAC_STD] is_low_delay() */ in dirac_decode_data_unit() 2223 s->core_syntax = (parse_code in dirac_decode_data_unit() [all...] |
Completed in 5 milliseconds