HomeSort by relevance Sort by last modified time
    Searched refs:opus_packet_get_nb_frames (Results 1 - 6 of 6) sorted by null

  /external/libopus/include/
opus.h 572 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_packet_get_nb_frames(const unsigned char packet[], opus_int32 len) OPUS_ARG_NONNULL(1);
    [all...]
  /external/libopus/src/
repacketizer.c 76 curr_nb_frames = opus_packet_get_nb_frames(data, len);
opus_decoder.c 964 int opus_packet_get_nb_frames(const unsigned char packet[], opus_int32 len) function
984 int count = opus_packet_get_nb_frames(packet, len);
opus_demo.c 709 nb_encoded = opus_packet_get_samples_per_frame(data[toggle], sampling_rate)*opus_packet_get_nb_frames(data[toggle], len[toggle]);
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_interface.c 412 frames = opus_packet_get_nb_frames(payload, (opus_int32)payload_length_bytes);
  /external/libopus/tests/
test_opus_api.c 264 if(OPUS_BAD_ARG!=opus_packet_get_nb_frames(packet,0))test_failed();
268 if(l1res[packet[0]&3]!=opus_packet_get_nb_frames(packet,1))test_failed();
272 if(((packet[0]&3)!=3?l1res[packet[0]&3]:packet[1]&63)!=opus_packet_get_nb_frames(packet,2))test_failed();
276 fprintf(stdout," opus_packet_get_nb_frames() .................. OK.\n");
331 if(opus_packet_get_nb_frames(NULL,1) !=OPUS_BAD_ARG)test_failed();
    [all...]

Completed in 269 milliseconds