HomeSort by relevance Sort by last modified time
    Searched defs:bitstream (Results 1 - 21 of 21) sorted by null

  /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...]
  /external/opencv3/3rdparty/libjasper/
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/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);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
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...]
avcenc_int.h 125 Bitstream structure contains bitstream related parameters such as the pointer
375 AVCEncBitstream *bitstream; /* for current NAL */ member in struct:tagEncObject
  /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...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp 144 uint8_t *bitstream = inHeader->pBuffer + inHeader->nOffset; local
145 uint32_t *start_code = (uint32_t *)bitstream;
159 vol_data[0] = bitstream;
262 mHandle, &bitstream, &timestamp, &tmp,
  /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...]
  /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...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4lib_int.h 90 BitstreamDecVideo *bitstream; /* library bitstream buffer (input buffer) */ member in struct:tagVol
201 BitstreamDecVideo *bitstream; /* library bitstream buffer (input buffer) */ member in struct:tagVideoDecData
  /hardware/intel/common/libva/test/encode/
avcenc.c 734 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
766 bitstream_start(bitstream *bs)
774 bitstream_end(bitstream *bs)
786 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
814 bitstream_put_ue(bitstream *bs, unsigned int val)
829 bitstream_put_se(bitstream *bs, int val)
842 bitstream_byte_aligning(bitstream *bs, int bit)
862 rbsp_trailing_bits(bitstream *bs)
868 static void nal_start_code_prefix(bitstream *bs)
873 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type
    [all...]
mpeg2enc.c 161 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
175 bitstream_start(bitstream *bs)
183 bitstream_end(bitstream *bs)
195 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
226 bitstream_byte_aligning(bitstream *bs, int bit)
282 bitstream *bs)
331 bitstream *bs)
391 bitstream bs;
406 bitstream bs;
    [all...]
mpeg2vaenc.c 161 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
175 bitstream_start(bitstream *bs)
183 bitstream_end(bitstream *bs)
195 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
226 bitstream_byte_aligning(bitstream *bs, int bit)
282 bitstream *bs)
331 bitstream *bs)
391 bitstream bs;
406 bitstream bs;
    [all...]
h264encode.c 169 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
184 bitstream_start(bitstream *bs)
192 bitstream_end(bitstream *bs)
204 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
232 bitstream_put_ue(bitstream *bs, unsigned int val)
247 bitstream_put_se(bitstream *bs, int val)
260 bitstream_byte_aligning(bitstream *bs, int bit)
280 rbsp_trailing_bits(bitstream *bs)
286 static void nal_start_code_prefix(bitstream *bs)
291 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type
    [all...]
  /hardware/intel/common/libva/test/transcode/
mpeg2transcode.cpp 2441 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
h264_utils.h 102 // This type is used when parsing an H.264 bitstream to collect H.264 NAL
462 OMX_U8* bitstream; member in class:h264_stream_parser
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 107 // This type is used when parsing an H.264 bitstream to collect H.264 NAL
463 OMX_U8* bitstream; member in class:h264_stream_parser
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 107 // This type is used when parsing an H.264 bitstream to collect H.264 NAL
463 OMX_U8* bitstream; member in class:h264_stream_parser
  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 107 // This type is used when parsing an H.264 bitstream to collect H.264 NAL
463 OMX_U8* bitstream; member in class:h264_stream_parser

Completed in 1923 milliseconds