Home
last modified time | relevance | path

Searched refs:lsmash_bits_get (Results 1 – 10 of 10) sorted by relevance

/dports/multimedia/l-smash/l-smash-2.14.5/codecs/
H A Da52.c164 lsmash_bits_get( bits, 32 ); /* syncword + crc1 */ in ac3_parse_syncframe_header()
165 param->fscod = lsmash_bits_get( bits, 2 ); in ac3_parse_syncframe_header()
166 param->frmsizecod = lsmash_bits_get( bits, 6 ); in ac3_parse_syncframe_header()
167 param->bsid = lsmash_bits_get( bits, 5 ); in ac3_parse_syncframe_header()
168 param->bsmod = lsmash_bits_get( bits, 3 ); in ac3_parse_syncframe_header()
169 param->acmod = lsmash_bits_get( bits, 3 ); in ac3_parse_syncframe_header()
171 lsmash_bits_get( bits, 2 ); /* cmixlev */ in ac3_parse_syncframe_header()
173 lsmash_bits_get( bits, 2 ); /* surmixlev */ in ac3_parse_syncframe_header()
175 lsmash_bits_get( bits, 2 ); /* dsurmod */ in ac3_parse_syncframe_header()
176 param->lfeon = lsmash_bits_get( bits, 1 ); in ac3_parse_syncframe_header()
[all …]
H A Dvc1.c199 if( lsmash_bits_get( bits, 1 ) ) in vc1_get_vlc()
241 lsmash_bits_get( bits, 16 ); /* hrd_rate */ in vc1_parse_hrd_param()
242 lsmash_bits_get( bits, 16 ); /* hrd_buffer */ in vc1_parse_hrd_param()
268 lsmash_bits_get( bits, 1 ); /* pulldown */ in vc1_parse_sequence_header()
270 lsmash_bits_get( bits, 4 ); /* tfcntrflag (1) in vc1_parse_sequence_header()
347 if( !lsmash_bits_get( bits, 1 ) ) in vc1_parse_sequence_header()
405 uint8_t extended_mv = lsmash_bits_get( bits, 1 ); in vc1_parse_entry_point_header()
412 lsmash_bits_get( bits, 8 ); /* hrd_full */ in vc1_parse_entry_point_header()
420 coded_width = lsmash_bits_get( bits, 12 ); in vc1_parse_entry_point_header()
421 coded_height = lsmash_bits_get( bits, 12 ); in vc1_parse_entry_point_header()
[all …]
H A Dhevc.c749 vps->video_parameter_set_id = lsmash_bits_get( bits, 4 ); in hevc_parse_vps_minimally()
751 if( lsmash_bits_get( bits, 2 ) != 3 ) in hevc_parse_vps_minimally()
754 if( lsmash_bits_get( bits, 6 ) != 0 ) in hevc_parse_vps_minimally()
756 vps->max_sub_layers_minus1 = lsmash_bits_get( bits, 3 ); in hevc_parse_vps_minimally()
757 vps->temporal_id_nesting_flag = lsmash_bits_get( bits, 1 ); in hevc_parse_vps_minimally()
762 if( lsmash_bits_get( bits, 16 ) != 0xFFFF ) in hevc_parse_vps_minimally()
807 lsmash_bits_get( bits, 32 ); /* time_scale */ in hevc_parse_vps()
977 lsmash_bits_get( bits, 3 ); /* video_format */ in hevc_parse_sps_minimally()
1276 for( uint8_t temp = lsmash_bits_get( bits, 8 ); ; temp = lsmash_bits_get( bits, 8 ) ) in hevc_parse_sei()
1286 for( uint8_t temp = lsmash_bits_get( bits, 8 ); ; temp = lsmash_bits_get( bits, 8 ) ) in hevc_parse_sei()
[all …]
H A Dmp4a.c552 gasc->frameLengthFlag = lsmash_bits_get( bits, 1 ); in mp4a_get_GASpecificConfig()
553 gasc->dependsOnCoreCoder = lsmash_bits_get( bits, 1 ); in mp4a_get_GASpecificConfig()
555 gasc->coreCoderDelay = lsmash_bits_get( bits, 14 ); in mp4a_get_GASpecificConfig()
556 gasc->extensionFlag = lsmash_bits_get( bits, 1 ); in mp4a_get_GASpecificConfig()
566 mpeg_1_2_sc->extension = lsmash_bits_get( bits, 1 ); in mp4a_get_MPEG_1_2_SpecificConfig()
576 alssc->als_id = lsmash_bits_get( bits, 32 ); in mp4a_get_ALSSpecificConfig()
618 asc->audioObjectType = lsmash_bits_get( bits, 5 ); in mp4a_get_AudioSpecificConfig()
621 asc->samplingFrequencyIndex = lsmash_bits_get( bits, 4 ); in mp4a_get_AudioSpecificConfig()
623 asc->samplingFrequency = lsmash_bits_get( bits, 24 ); in mp4a_get_AudioSpecificConfig()
624 asc->channelConfiguration = lsmash_bits_get( bits, 4 ); in mp4a_get_AudioSpecificConfig()
[all …]
H A Dh264.c520 lsmash_bits_get( bits, 4 ); /* bit_rate_scale */ in h264_parse_hrd_parameters()
521 lsmash_bits_get( bits, 4 ); /* cpb_size_scale */ in h264_parse_hrd_parameters()
548 sps->profile_idc = lsmash_bits_get( bits, 8 ); in h264_parse_sps_minimally()
549 sps->constraint_set_flags = lsmash_bits_get( bits, 8 ); in h264_parse_sps_minimally()
550 sps->level_idc = lsmash_bits_get( bits, 8 ); in h264_parse_sps_minimally()
666 sps->frame_mbs_only_flag = lsmash_bits_get( bits, 1 ); in h264_parse_sps()
951 for( uint8_t temp = lsmash_bits_get( bits, 8 ); ; temp = lsmash_bits_get( bits, 8 ) ) in h264_parse_sei()
961 for( uint8_t temp = lsmash_bits_get( bits, 8 ); ; temp = lsmash_bits_get( bits, 8 ) ) in h264_parse_sei()
990 lsmash_bits_get( bits, remaining_bits ); in h264_parse_sei()
1012 lsmash_bits_get( bits, payloadSize * 8 ); in h264_parse_sei()
[all …]
H A Dnalu.c240 b = lsmash_bits_get( bits, 1 ); in nalu_get_codeNum()
242 return ((uint64_t)1 << leadingZeroBits) - 1 + lsmash_bits_get( bits, leadingZeroBits ); in nalu_get_codeNum()
H A Dmp4sys.c1150 slcd->startDecodingTimeStamp = lsmash_bits_get( bits, slcd->timeStampLength ); in mp4sys_get_SLConfigDescriptor()
1151 slcd->startCompositionTimeStamp = lsmash_bits_get( bits, slcd->timeStampLength ); in mp4sys_get_SLConfigDescriptor()
H A Ddts.c381 return lsmash_bits_get( bits, width ); in dts_bits_get()
/dports/multimedia/l-smash/l-smash-2.14.5/common/
H A Dbits.h37 uint64_t lsmash_bits_get( lsmash_bits_t *bits, uint32_t width );
H A Dbits.c121 uint64_t lsmash_bits_get( lsmash_bits_t *bits, uint32_t width ) in lsmash_bits_get() function