HomeSort by relevance Sort by last modified time
    Searched refs:bitstream (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/opencv3/3rdparty/libjasper/
jpc_bs.h 139 int jpc_bitstream_close(jpc_bitstream_t *bitstream);
147 #define jpc_bitstream_getbit(bitstream) \
148 jpc_bitstream_getbit_func(bitstream)
150 #define jpc_bitstream_getbit(bitstream) \
151 jpc_bitstream_getbit_macro(bitstream)
156 #define jpc_bitstream_putbit(bitstream, v) \
157 jpc_bitstream_putbit_func(bitstream, v)
159 #define jpc_bitstream_putbit(bitstream, v) \
160 jpc_bitstream_putbit_macro(bitstream, v)
164 long jpc_bitstream_getbits(jpc_bitstream_t *bitstream, int n)
    [all...]
jpc_bs.c 97 jpc_bitstream_t *bitstream; local
106 if (!(bitstream = jpc_bitstream_alloc())) {
112 bitstream->flags_ = JPC_BITSTREAM_NOCLOSE;
114 bitstream->stream_ = stream;
115 bitstream->openmode_ = (mode[0] == 'w') ? JPC_BITSTREAM_WRITE :
119 bitstream->cnt_ = (bitstream->openmode_ == JPC_BITSTREAM_READ) ? 0 : 8;
120 bitstream->buf_ = 0;
122 return bitstream;
126 int jpc_bitstream_close(jpc_bitstream_t *bitstream)
151 jpc_bitstream_t *bitstream; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
pack_bits.h 25 * unpacking of bits from bitstream, i.e., vector of bytes
29 uint16_t *bitstream, /* (o) The packetized bitstream */
unpack_bits.h 25 * unpacking of bits from bitstream, i.e., vector of bytes
29 const uint16_t *bitstream, /* (i) The packatized bitstream */
30 iLBC_bits *enc_bits, /* (o) Paramerers from bitstream */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.h 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
26 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
27 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
28 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
29 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
30 Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream);
31 Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
32 Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
    [all...]
vlc_encode.cpp 64 * Description: Functions for writing to bitstream
142 Int PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
143 Int PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream);
144 Int PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream);
145 Int PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream);
146 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
147 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
148 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
149 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
150 Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream);
    [all...]
bitstream_io.h 44 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount);
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
Mp3.java 21 import javazoom.jl.decoder.Bitstream;
35 private Bitstream bitstream; field in class:Mp3.Music
42 bitstream = new Bitstream(file.read());
46 Header header = bitstream.readFrame();
59 boolean setup = bitstream == null;
61 bitstream = new Bitstream(file.read());
68 Header header = bitstream.readFrame();
113 Bitstream bitstream = new Bitstream(file.read()); local
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
Mp3.java 21 import javazoom.jl.decoder.Bitstream;
35 private Bitstream bitstream; field in class:Mp3.Music
42 bitstream = new Bitstream(file.read());
46 Header header = bitstream.readFrame();
59 boolean setup = bitstream == null;
61 bitstream = new Bitstream(file.read());
68 Header header = bitstream.readFrame();
113 Bitstream bitstream = new Bitstream(file.read()); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
bits2prm.cpp 84 bitstream = pointer to buffer where bits are read
102 Purpose : Read "no_of_bits" bits from the array bitstream[]
120 Word16 *bitstream // output: address where bits are written
129 bit = *bitstream++;
164 Word16 *bitstream /* input: address where bits are read from */
175 single_bit = *(bitstream++);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.cpp 95 bitstream = pointer to address where bits are written of type Word16
112 bitstream[]. The most significant bits are written first.
130 Word16 *bitstream // output: address where bits are written
135 pt_bitstream = &bitstream[no_of_bits];
181 Word16 *bitstream /* output: address where bits are written */
187 pt_bitstream = &bitstream[no_of_bits-1];
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
vlc_encode.cpp 22 AVCEnc_Status ue_v(AVCEncBitstream *bitstream, uint codeNum)
24 if (AVCENC_SUCCESS != SetEGBitstring(bitstream, codeNum))
32 AVCEnc_Status se_v(AVCEncBitstream *bitstream, int value)
46 status = ue_v(bitstream, codeNum);
51 AVCEnc_Status te_v(AVCEncBitstream *bitstream, uint value, uint range)
57 return ue_v(bitstream, value);
61 status = BitstreamWrite1Bit(bitstream, 1 - value);
70 AVCEnc_Status SetEGBitstring(AVCEncBitstream *bitstream, uint codeNum)
78 status = BitstreamWrite1Bit(bitstream, 1);
91 status = BitstreamWriteBits(bitstream, leadingZeros, 0)
    [all...]
avcenc_api.cpp 24 /* Purpose : Sniff NAL type from the bitstream */
29 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncGetNALType(unsigned char *bitstream, int size,
35 forbidden_zero_bit = bitstream[0] >> 7;
38 *nal_ref_idc = (bitstream[0] & 0x60) >> 5;
39 *nal_type = bitstream[0] & 0x1F;
93 /* allocate bitstream structure */
94 encvid->bitstream = (AVCEncBitstream*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCEncBitstream), DEFAULT_ATTR);
95 if (encvid->bitstream == NULL)
99 encvid->bitstream->encvid = encvid; /* to point back for reallocation */
372 AVCEncBitstream *bitstream = encvid->bitstream local
524 AVCEncBitstream *bitstream = encvid->bitstream; local
    [all...]
bitstream_io.cpp 29 /* Purpose : Populate bitstream structure with bitstream buffer and size */
227 AVCEnc_Status BitstreamTrailingBits(AVCEncBitstream *bitstream, uint *nal_size)
232 int bit_left = bitstream->bit_left;
236 /* bitstream->bit_left == 0 cannot happen here since it would have been Saved already */
238 status = BitstreamWriteBits(bitstream, bit_left, trailing_bits[bit_left]);
246 //if(bitstream->bit_left<(WORD_SIZE<<3)) /* in fact, no need to check */
248 status = AVCBitstreamSaveWord(bitstream);
  /hardware/intel/common/libmix/videoencoder/
bitstream.h 23 struct bitstream { struct
41 static void bitstream_start(bitstream *bs)
48 static void bitstream_end(bitstream *bs)
59 static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
88 static void bitstream_put_ue(bitstream *bs, unsigned int val)
102 static void bitstream_put_se(bitstream *bs, int val)
114 static void bitstream_byte_aligning(bitstream *bs, int bit)
133 static void rbsp_trailing_bits(bitstream *bs)
139 static void nal_start_code_prefix(bitstream *bs)
144 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 34 * PurgeableBitmapView decodes an encoded bitstream to a Bitmap each time update()
39 private final byte[] bitstream; field in class:PurgeableBitmapView
61 bitstream = generateBitstream(src, Bitmap.CompressFormat.JPEG, 80);
84 bitstream, 0, bitstream.length, mOptions);
  /external/opencv3/3rdparty/libwebp/webp/
mux.h 123 // bitstream - (in) the bitstream data in WebP RIFF format
129 static WEBP_INLINE WebPMux* WebPMuxCreate(const WebPData* bitstream,
131 return WebPMuxCreateInternal(bitstream, copy_data, WEBP_MUX_ABI_VERSION);
193 WebPData bitstream; // image data: can either be a raw VP8/VP8L bitstream member in struct:WebPMuxFrameInfo
209 // bitstream - (in) can either be a raw VP8/VP8L bitstream or a single-image
214 // WEBP_MUX_INVALID_ARGUMENT - if mux is NULL or bitstream is NULL.
218 WebPMux* mux, const WebPData* bitstream, int copy_data)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_bitstream_parser.h 23 // Stateful H264 bitstream parser (due to SPS/PPS). Used to parse out QP values
24 // from the bitstream.
31 // Parse an additional chunk of H264 bitstream.
32 void ParseBitstream(const uint8_t* bitstream, size_t length);
34 // Get the last extracted QP value from the parsed bitstream.
  /system/bt/embdrv/sbc/decoder/
Android.mk 12 ./srce/bitstream-decode.c \
  /external/webrtc/webrtc/modules/audio_coding/test/
opus_test.cc 277 uint8_t bitstream[kMaxBytes]; local
281 &audio[read_samples], frame_length, kMaxBytes, bitstream);
304 opus_mono_decoder_, bitstream, bitstream_len_byte,
313 opus_stereo_decoder_, bitstream, bitstream_len_byte,
324 bitstream, bitstream_len_byte, NULL);
  /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/webrtc/modules/audio_coding/codecs/isac/main/source/
crc.c 73 * - bitstream : payload bitstream
83 int WebRtcIsac_GetCrc(const int16_t* bitstream,
93 if (bitstream == NULL) {
97 bitstream_ptr_uw8 = (uint8_t *)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;
  /external/opencv3/3rdparty/libwebp/mux/
muxedit.c 151 // Outputs image data given a bitstream. The bitstream can either be a
153 // Also outputs 'is_lossless' to be true if the given bitstream is lossless.
154 static WebPMuxError GetImageData(const WebPData* const bitstream,
158 if (bitstream->size < TAG_SIZE ||
159 memcmp(bitstream->bytes, "RIFF", TAG_SIZE)) {
161 *image = *bitstream;
165 WebPMux* const mux = WebPMuxCreate(bitstream, 0);
247 // Extracts image & alpha data from the given bitstream and then sets wpi.alpha_
250 const WebPData* const bitstream, int copy_data, WebPMuxImage* const wpi)
302 const WebPData* const bitstream = &frame->bitstream; local
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_video_config_parser.cpp 65 int32 GetNAL_Config(uint8** bitstream, int32* size);
243 /* This function finds a nal from the SC's, moves the bitstream pointer to the beginning of the NAL unit, returns the
244 size of the NAL, and at the same time, updates the remaining size in the bitstream buffer that is passed in */
245 int32 GetNAL_Config(uint8** bitstream, int32* size)
249 uint8* nal_unit = *bitstream;
259 *bitstream = nal_unit + i;

Completed in 792 milliseconds

1 2 3 4