Home
last modified time | relevance | path

Searched refs:frame_bytes (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/
H A Ddecoder.rs1026 let frame_bytes = decode($frame_hex).expect("convert frame hex to bytes failed !"); localVariable
1057 let frame_bytes = decode($frame_hex).expect("convert frame hex to bytes failed !"); localVariable
1085 let frame_bytes = decode($frame_hex).expect("convert frame hex to bytes failed !"); localVariable
1086 let decoded_frames = decoder.decode(frame_bytes.as_slice());
1150 let frame_bytes = frame_bytes.as_slice(); in ut_frame_decoder_with_segmented_data_frame() localVariable
1151 let decoded_frames = decoder.decode(&frame_bytes[..8]).unwrap(); in ut_frame_decoder_with_segmented_data_frame()
1153 let decoded_frames = decoder.decode(&frame_bytes[8..12]).unwrap(); in ut_frame_decoder_with_segmented_data_frame()
1155 let decoded_frames = decoder.decode(&frame_bytes[12..24]).unwrap(); in ut_frame_decoder_with_segmented_data_frame()
1167 let decoded_frames = decoder.decode(&frame_bytes[24..]).unwrap(); in ut_frame_decoder_with_segmented_data_frame()
1263 let decoded_frames = decoder.decode(frame_bytes.as_slice()).unwrap(); in ut_frame_decoder_with_series_request_frames()
[all …]
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/minimp3_adapter/
H A Dminimp3_decoder_plugin.cpp222 if (frameInfo.frame_bytes) { in AudioDecoderMp3Process()