Home
last modified time | relevance | path

Searched refs:parse_code (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavformat/
Drtpenc_vc2hq.c36 static void send_packet(AVFormatContext *ctx, uint8_t parse_code, int info_hdr_size, const uint8_t … 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_HE… in ff_rtp_send_vc2hq()
129 avpriv_report_missing_feature(ctx, "VC-2 parse code %d", parse_code); in ff_rtp_send_vc2hq()
Drtpdec_vc2hq.c46 uint8_t parse_code, uint32_t data_unit_size) in fill_parse_info_header() argument
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()
/third_party/ffmpeg/libavcodec/
Ddiracdec.c2126 uint8_t parse_code; in dirac_decode_data_unit() local
2132 parse_code = buf[4]; in dirac_decode_data_unit()
2136 if (parse_code == DIRAC_PCODE_SEQ_HEADER) { in dirac_decode_data_unit()
2184 } else if (parse_code == DIRAC_PCODE_END_SEQ) { /* [DIRAC_STD] End of Sequence */ in dirac_decode_data_unit()
2187 } else if (parse_code == DIRAC_PCODE_AUX) { in dirac_decode_data_unit()
2196 } else if (parse_code & 0x8) { /* picture data unit */ in dirac_decode_data_unit()
2214 tmp = parse_code & 0x03; /* [DIRAC_STD] num_refs() */ in dirac_decode_data_unit()
2220 … s->is_arith = (parse_code & 0x48) == 0x08; /* [DIRAC_STD] using_ac() */ in dirac_decode_data_unit()
2221 … s->low_delay = (parse_code & 0x88) == 0x88; /* [DIRAC_STD] is_low_delay() */ in dirac_decode_data_unit()
2222 … s->core_syntax = (parse_code & 0x88) == 0x08; /* [DIRAC_STD] is_core_syntax() */ in dirac_decode_data_unit()
[all …]
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-mux.c3866 guint8 parse_code; in gst_matroska_mux_handle_dirac_packet() local
3889 parse_code = GST_READ_UINT8 (data + 4); in gst_matroska_mux_handle_dirac_packet()
3890 if (parse_code == DIRAC_PARSE_CODE_SEQUENCE_HEADER) { in gst_matroska_mux_handle_dirac_packet()
3895 } else if (DIRAC_PARSE_CODE_IS_PICTURE (parse_code) || in gst_matroska_mux_handle_dirac_packet()
3896 parse_code == DIRAC_PARSE_CODE_END_OF_SEQUENCE) { in gst_matroska_mux_handle_dirac_packet()