Home
last modified time | relevance | path

Searched refs:start_code (Results 1 - 25 of 65) sorted by relevance

123

/third_party/ffmpeg/libavformat/
H A Drtpenc_mpv.c54 int start_code; in ff_rtp_send_mpegvideo() local
58 start_code = -1; in ff_rtp_send_mpegvideo()
59 r = avpriv_find_start_code(r1, end, &start_code); in ff_rtp_send_mpegvideo()
60 if((start_code & 0xFFFFFF00) == 0x100) { in ff_rtp_send_mpegvideo()
62 if (start_code == 0x100) { in ff_rtp_send_mpegvideo()
66 if (start_code == 0x1B8) { in ff_rtp_send_mpegvideo()
/third_party/ffmpeg/libavcodec/
H A Dcbs_mpeg2.c148 uint32_t start_code = -1; in cbs_mpeg2_split_fragment() local
152 &start_code); in cbs_mpeg2_split_fragment()
153 if (start_code >> 8 != 0x000001) { in cbs_mpeg2_split_fragment()
159 CodedBitstreamUnitType unit_type = start_code & 0xff; in cbs_mpeg2_split_fragment()
163 // Reset start_code to ensure that avpriv_find_start_code() in cbs_mpeg2_split_fragment()
167 start_code = UINT32_MAX; in cbs_mpeg2_split_fragment()
169 &start_code); in cbs_mpeg2_split_fragment()
175 if (start_code >> 8 == 0x000001) { in cbs_mpeg2_split_fragment()
192 } while ((start_code >> 8) == 0x000001); in cbs_mpeg2_split_fragment()
235 #define START(start_code, typ in cbs_mpeg2_read_unit()
[all...]
H A Dmpegvideo_parser.c109 uint32_t start_code; in mpegvideo_extract_headers() local
124 start_code= -1; in mpegvideo_extract_headers()
125 buf= avpriv_find_start_code(buf, buf_end, &start_code); in mpegvideo_extract_headers()
127 switch(start_code) { in mpegvideo_extract_headers()
219 if (start_code >= SLICE_MIN_START_CODE && in mpegvideo_extract_headers()
220 start_code <= SLICE_MAX_START_CODE) in mpegvideo_extract_headers()
H A Dmxpegdec.c193 int start_code; in mxpeg_decode_frame() local
205 start_code = ff_mjpeg_find_marker(jpg, &buf_ptr, buf_end, in mxpeg_decode_frame()
207 if (start_code < 0) in mxpeg_decode_frame()
212 if (start_code >= APP0 && start_code <= APP15) { in mxpeg_decode_frame()
216 switch (start_code) { in mxpeg_decode_frame()
H A Dmjpegbdec.c90 s->start_code = DQT; in mjpegb_decode_frame()
100 s->start_code = DHT; in mjpegb_decode_frame()
108 s->start_code = SOF0; in mjpegb_decode_frame()
121 s->start_code = SOS; in mjpegb_decode_frame()
H A Dmjpegdec.c142 s->start_code = -1; in ff_mjpeg_decode_init()
1980 if (s->start_code == APP3 && id == AV_RB32("_JPS") && len >= 10) { in mjpeg_decode_app()
2020 if (s->start_code == APP1 && id == AV_RB32("Exif") && len >= 2) { in mjpeg_decode_app()
2055 if ((s->start_code == APP1) && (len > (0x28 - 8))) { in mjpeg_decode_app()
2075 if (s->start_code == APP2 && id == AV_RB32("ICC_") && len >= 10) { in mjpeg_decode_app()
2220 int start_code; in ff_mjpeg_find_marker() local
2221 start_code = find_marker(buf_ptr, buf_end); in ff_mjpeg_find_marker()
2228 if (start_code == SOS && !s->ls) { in ff_mjpeg_find_marker()
2285 } else if (start_code == SOS && s->ls) { in ff_mjpeg_find_marker()
2332 return start_code; in ff_mjpeg_find_marker()
2416 int start_code; ff_mjpeg_receive_frame() local
[all...]
H A Dvideotoolboxenc.c196 static const uint8_t start_code[] = { 0, 0, 0, 1 }; variable
505 total_size += ps_size + sizeof(start_code); in get_params_size()
560 next_offset = offset + sizeof(start_code) + ps_size; in copy_param_sets()
566 memcpy(dst + offset, start_code, sizeof(start_code)); in copy_param_sets()
567 offset += sizeof(start_code); in copy_param_sets()
1867 memcpy(dst_data, start_code, sizeof(start_code)); in copy_replace_length_codes()
1868 dst_data += sizeof(start_code); in copy_replace_length_codes()
1869 remaining_dst_size -= sizeof(start_code); in copy_replace_length_codes()
[all...]
/third_party/skia/third_party/externals/harfbuzz/util/
H A Dhb-subset.cc198 hb_codepoint_t start_code = strtoul (s, &p, 10); in parse_gids() local
217 if (end_code < start_code) in parse_gids()
220 "Invalid glyph-index range %u-%u", start_code, end_code); in parse_gids()
224 hb_set_add_range (gids, start_code, end_code); in parse_gids()
226 hb_set_del_range (gids, start_code, end_code); in parse_gids()
231 hb_set_add (gids, start_code); in parse_gids()
233 hb_set_del (gids, start_code); in parse_gids()
368 hb_codepoint_t start_code = strtoul (s, &p, 16); in parse_unicodes() local
387 if (end_code < start_code) in parse_unicodes()
390 "Invalid Unicode range %u-%u", start_code, end_cod in parse_unicodes()
[all...]
/third_party/musl/arch/m68k/bits/
H A Duser.h21 unsigned long u_tsize, u_dsize, u_ssize, start_code, start_stack; member
37 #define HOST_TEXT_START_ADDR (u.start_code)
/third_party/musl/arch/s390x/bits/
H A Duser.h50 unsigned long start_code, start_stack; member
60 #define HOST_TEXT_START_ADDR (u.start_code)
/third_party/musl/arch/x32/bits/
H A Duser.h26 unsigned long start_code; member
40 #define HOST_TEXT_START_ADDR (u.start_code)
/third_party/musl/arch/i386/bits/
H A Duser.h29 unsigned long start_code; member
43 #define HOST_TEXT_START_ADDR (u.start_code)
/third_party/musl/arch/x86_64/bits/
H A Duser.h26 unsigned long start_code; member
40 #define HOST_TEXT_START_ADDR (u.start_code)
/third_party/mesa3d/src/gallium/frontends/va/
H A Dpicture_mpeg4.c155 memset(context->mpeg4.start_code, 0, sizeof(context->mpeg4.start_code)); in vlVaDecoderFixMPEG4Startcode()
174 memcpy(context->mpeg4.start_code, group_of_vop, sizeof(group_of_vop)); in vlVaDecoderFixMPEG4Startcode()
207 memcpy(context->mpeg4.start_code + context->mpeg4.start_code_size, vop, vop_size); in vlVaDecoderFixMPEG4Startcode()
/third_party/pcre2/pcre2/src/
H A Dpcre2_dfa_match.c547 PCRE2_SPTR start_code = mb->start_code; in internal_dfa_match() local
640 int bstate = (int)(end_code - start_code + 1 + LINK_SIZE + revlen); in internal_dfa_match()
678 ADD_NEW((int)(end_code - start_code + length), 0); in internal_dfa_match()
787 code = start_code + state_offset; in internal_dfa_match()
909 ADD_ACTIVE((int)(code - start_code), 0); in internal_dfa_match()
917 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0); in internal_dfa_match()
926 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE + IMM2_SIZE), 0); in internal_dfa_match()
930 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0); in internal_dfa_match()
941 ADD_ACTIVE((int)(code - start_code in internal_dfa_match()
[all...]
/third_party/musl/arch/mips/bits/
H A Duser.h4 unsigned long start_code, start_data, start_stack; member
/third_party/musl/arch/mips64/bits/
H A Duser.h4 unsigned long long start_code, start_data, start_stack; member
/third_party/musl/arch/mipsn32/bits/
H A Duser.h4 unsigned long long start_code, start_data, start_stack; member
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Duser.h27 unsigned long start_code, start_stack; member
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Duser.h27 unsigned long start_code, start_stack; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Duser.h27 unsigned long start_code, start_stack; member
/third_party/musl/arch/powerpc/bits/
H A Duser.h7 unsigned long start_code, start_data, start_stack; member
/third_party/musl/arch/sh/bits/
H A Duser.h43 unsigned long start_code; member
/third_party/musl/arch/arm/bits/
H A Duser.h27 unsigned long start_code, start_stack; member
/third_party/musl/arch/microblaze/bits/
H A Duser.h13 unsigned long u_tsize, u_dsize, u_ssize, start_code, start_stack; member

Completed in 15 milliseconds

123