Home
last modified time | relevance | path

Searched refs:opus_packet_get_nb_frames (Results 1 – 6 of 6) sorted by relevance

/external/libopus/include/
Dopus.h572 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_nb_frames(const unsigned char packet[], opu…
/external/libopus/src/
Drepacketizer.c76 curr_nb_frames = opus_packet_get_nb_frames(data, len); in opus_repacketizer_cat_impl()
Dopus_decoder.c995 int opus_packet_get_nb_frames(const unsigned char packet[], opus_int32 len) in opus_packet_get_nb_frames() function
1015 int count = opus_packet_get_nb_frames(packet, len); in opus_packet_get_nb_samples()
Dopus_demo.c700 … opus_packet_get_samples_per_frame(data[toggle], sampling_rate)*opus_packet_get_nb_frames(data[tog… in main()
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.c412 frames = opus_packet_get_nb_frames(payload, (opus_int32)payload_length_bytes); in WebRtcOpus_DurationEst()
/external/libopus/tests/
Dtest_opus_api.c265 if(OPUS_BAD_ARG!=opus_packet_get_nb_frames(packet,0))test_failed(); in test_dec_api()
269 if(l1res[packet[0]&3]!=opus_packet_get_nb_frames(packet,1))test_failed(); in test_dec_api()
273 …if(((packet[0]&3)!=3?l1res[packet[0]&3]:packet[1]&63)!=opus_packet_get_nb_frames(packet,2))test_fa… in test_dec_api()
332 if(opus_packet_get_nb_frames(NULL,1) !=OPUS_BAD_ARG)test_failed(); in test_dec_api()