Searched refs:stream (Results 201 - 208 of 208) sorted by relevance

123456789

/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoEncoder.cpp201 // End of stream?
897 pEncoderContext->mAccessUnit->stream->streamID,
953 pEncoderContext->mAccessUnit->stream->streamID,
/frameworks/base/core/java/android/content/
H A DContentResolver.java338 * content URL can be returned when opened as as stream with
341 * many content providers cannot return a raw stream for the structured
593 * Open a stream on to the content associated with a content URI. If there
619 InputStream stream = r.r.openRawResource(r.id);
620 return stream;
633 throw new FileNotFoundException("Unable to create stream");
649 * Open a stream on to the content associated with a content URI. If there
673 throw new FileNotFoundException("Unable to create stream");
985 * data stream for the data stored there.
989 * with an associated MIME type to ensure that the returned data stream
[all...]
H A DIntent.java915 * only pick from data that can be represented as a stream. This is
933 * opened as a stream. You may use {@link #EXTRA_LOCAL_ONLY} to limit content
2633 * {@link DocumentsProvider}, which can be opened as a stream with
2674 * {@link DocumentsProvider}, which can be opened as a stream with
3017 * A content: URI holding a stream of data associated with the Intent,
7235 final Uri stream = getParcelableExtra(EXTRA_STREAM);
7238 if (stream != null || text != null || htmlText != null) {
7241 new ClipData.Item(text, htmlText, null, stream));
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java1298 static byte[] readFully(InputStream stream, int[] outLen) throws IOException { argument
1300 final int initialAvail = stream.available();
1303 int amt = stream.read(data, pos, data.length-pos);
1323 public void read(InputStream stream) { argument
1326 byte[] raw = readFully(stream, len);
1330 stream.close();
/frameworks/av/libvideoeditor/vss/src/
H A DM4VSS3GPP_Edit.c1230 stream to look for a ID3v2 tag */
2331 * Set the video stream properties */
2376 * Add the video stream */
2390 * Update AU properties for video stream */
2398 pC_ewc->WriterVideoAU.stream = &(pC_ewc->WriterVideoStream);
2452 /* If we copy the stream from the input, we copy its DSI */
2478 * Add the audio stream */
2517 * Link the AU and the stream */
2518 pC_ewc->WriterAudioAU.stream = &(pC_ewc->WriterAudioStream);
2675 "M4VSS3GPP_intComputeOutputVideoAndAudioDsi: get DSI for H264 stream");
[all...]
H A DM4VSS3GPP_EditVideo.c297 /* for h.264 stream do not read the 1st 4 bytes as they are header
319 -stream time*/
968 * @param streamID: (IN) Id of the stream to which the Access Unit is related.
1008 * @param streamID: (IN) Id of the stream to which the Access Unit is related.
1028 * Update time info for the Counter Time System to be equal to the bit-stream time */
2204 * @brief Update bit stream time info by Counter Time System to be compliant with
2205 * players using bit stream time info
2230 if( M4SYS_kH263 == pAU->stream->streamType )
2239 else if( M4SYS_kMPEG_4 == pAU->stream->streamType )
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java3700 void handleVolumeKey(int stream, int keycode) { argument
3712 if (stream == AudioSystem.STREAM_MUSIC) {
3713 audioService.adjustLocalOrRemoteStreamVolume(stream,
3719 audioService.adjustStreamVolume(stream,
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_API.c1151 /* no error message as stream can be decoded without VUI messages */
2344 * supported audio or video stream
2526 * In case we found a BIFS stream or something else...*/
2534 if( M4NO_ERROR == err ) /**< One stream found */
2537 * Found the first video stream */
2548 "M4MCS_open(): Found a H263 or MPEG-4 video stream in input 3gpp clip");
2551 * Keep pointer to the video stream */
2558 * Init our video stream state variable */
2562 * Reset the stream reader */
2591 M4OSA_TRACE1_1("M4MCS_open(): Found an unsupported video stream (
[all...]

Completed in 769 milliseconds

123456789