HomeSort by relevance Sort by last modified time
    Searched refs:bitstream (Results 26 - 50 of 120) sorted by null

12 3 4 5

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_g7221c.h 37 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_g729.h 32 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_g7291.h 32 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_opus.h 31 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_amr.h 34 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_amrwb.h 32 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_g722.cc 40 int16_t ACMG722::InternalEncode(uint8_t* /* bitstream */,
105 int16_t ACMG722::InternalEncode(uint8_t* bitstream,
129 bitstream[i] = (out_left[j] & 0xF0) + (out_right[j] >> 4);
130 bitstream[i + 1] = ((out_left[j] & 0x0F) << 4) + (out_right[j] & 0x0F);
135 reinterpret_cast<int16_t*>(bitstream));
acm_speex.h 32 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_gsmfr.cc 32 int16_t ACMGSMFR::InternalEncode(uint8_t* /* bitstream */,
71 int16_t ACMGSMFR::InternalEncode(uint8_t* bitstream,
75 reinterpret_cast<int16_t*>(bitstream));
acm_ilbc.cc 28 int16_t ACMILBC::InternalEncode(uint8_t* /* bitstream */,
62 int16_t ACMILBC::InternalEncode(uint8_t* bitstream,
66 reinterpret_cast<int16_t*>(bitstream));
acm_generic_codec.h 79 // -bitstream : a buffer where bit-stream will be written to.
109 int16_t Encode(uint8_t* bitstream,
766 // -bitstream : pointer to a buffer where the bit-stream is
775 virtual int16_t InternalEncode(uint8_t* bitstream,
    [all...]
acm_speex.cc 39 int16_t ACMSPEEX::InternalEncode(uint8_t* /* bitstream */,
110 int16_t ACMSPEEX::InternalEncode(uint8_t* bitstream,
141 encoder_inst_ptr_, reinterpret_cast<int16_t*>(bitstream));
147 encoder_inst_ptr_, reinterpret_cast<int16_t*>(bitstream));
acm_celt.cc 39 int16_t ACMCELT::InternalEncode(uint8_t* /* bitstream */,
89 int16_t ACMCELT::InternalEncode(uint8_t* bitstream,
96 bitstream);
acm_g729.cc 33 int16_t ACMG729::InternalEncode(uint8_t* /* bitstream */,
77 int16_t ACMG729::InternalEncode(uint8_t* bitstream,
89 reinterpret_cast<int16_t*>(&(bitstream[*bitstream_len_byte])));
acm_g7291.cc 38 int16_t ACMG729_1::InternalEncode(uint8_t* /* bitstream */,
81 int16_t ACMG729_1::InternalEncode(uint8_t* bitstream,
100 reinterpret_cast<int16_t*>(bitstream), my_rate_, num_20ms_frames);
acm_isac.h 42 int16_t InternalEncode(uint8_t* bitstream,
92 int16_t Transcode(uint8_t* bitstream,
acm_opus.cc 38 int16_t ACMOpus::InternalEncode(uint8_t* /* bitstream */,
96 int16_t ACMOpus::InternalEncode(uint8_t* bitstream,
102 MAX_PAYLOAD_SIZE_BYTE, bitstream);
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/
Android.mk 9 ./srce/bitstream-decode.c \
  /external/chromium_org/content/common/gpu/media/
vt_video_decode_accelerator.cc 34 void VTVideoDecodeAccelerator::Decode(const media::BitstreamBuffer& bitstream) {
vt_video_decode_accelerator.h 32 virtual void Decode(const media::BitstreamBuffer& bitstream) OVERRIDE;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
opus_test.cc 273 uint8_t bitstream[kMaxBytes]; local
278 frame_length, kMaxBytes, bitstream);
283 frame_length, kMaxBytes, bitstream);
306 opus_mono_decoder_, bitstream, bitstream_len_byte,
315 opus_stereo_decoder_, bitstream, bitstream_len_byte,
326 bitstream, bitstream_len_byte, NULL);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
crc.c 73 * - bitstream : payload bitstream
83 int16_t WebRtcIsac_GetCrc(const int16_t* bitstream,
93 if (bitstream == NULL) {
97 bitstream_ptr_uw8 = (uint8_t *)bitstream;
  /external/libvorbis/include/vorbis/
vorbisfile.h 190 int *bitstream);
192 int bigendianp,int word,int sgned,int *bitstream,
195 int bigendianp,int word,int sgned,int *bitstream);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
crc.c 73 * - bitstream : payload bitstream
83 WebRtc_Word16 WebRtcIsac_GetCrc(const WebRtc_Word16* bitstream,
93 if (bitstream == NULL) {
97 bitstream_ptr_uw8 = (WebRtc_UWord8 *)bitstream;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
packet_util.cpp 20 #include "bitstream.h"
33 BitstreamDecVideo *stream = video->bitstream;
148 BitstreamDecVideo *stream = video->bitstream;
199 BitstreamDecVideo *stream = video->bitstream;

Completed in 278 milliseconds

12 3 4 5