Searched refs:position (Results 1 - 25 of 821) sorted by path

1234567891011>>

/frameworks/av/drm/common/
H A DDrmEngineBase.cpp87 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
88 return onSetPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
86 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
H A DIDrmManagerService.cpp434 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
444 data.writeInt64(position);
1155 const int64_t position = data.readInt64(); local
1157 = setPlaybackStatus(uniqueId, &handle, playbackStatus, position);
433 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp281 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
286 result = drmEngine->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
280 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
H A DDrmManagerService.cpp218 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
223 return mDrmManager->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
217 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp85 sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) {
87 ->setPlaybackStatus(mUniqueId, decryptHandle, playbackStatus, position);
84 setPlaybackStatus( sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) argument
H A DDrmManagerClientImpl.cpp193 int playbackStatus, int64_t position) {
197 uniqueId, decryptHandle.get(), playbackStatus, position);
191 setPlaybackStatus( int uniqueId, sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/av/drm/libdrmframework/include/
H A DDrmManager.h95 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position);
H A DDrmManagerClientImpl.h201 * @param[in] position Position in the file (in milliseconds) where the start occurs.
207 int uniqueId, sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position);
302 * @param[in] offset Start position of the content
396 * @param[in] offset Offset with which to update the file position.
H A DDrmManagerService.h101 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position);
H A DIDrmManagerService.h121 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) = 0;
209 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position);
H A DNoOpDrmManagerClientImpl.h46 int uniqueId, sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position);
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DDrmEngineBase.h65 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position);
277 * @param[in] position Position in the file (in milliseconds) where the start occurs.
283 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) = 0;
378 * @param[in] offset Start position of the content
393 * @param[in] offset Start position of the content
518 * @param[in] offset Offset with which to update the file position.
H A DIDrmEngine.h221 * @param[in] position Position in the file (in milliseconds) where the start occurs.
227 int playbackStatus, int64_t position) = 0;
322 * @param[in] offset Start position of the content
423 * @param[in] offset Offset with which to update the file position.
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h211 * @param position Position in the file (in milliseconds) where the start occurs.
220 int64_t position);
225 int position);
326 * @param offset Start position of the content
453 * Updates the file position within an open DRM file.
457 * @param offset Offset with which to update the file position.
461 * @return New file position.
483 * @param offset Offset with which to update the file position.
/frameworks/av/drm/libdrmframework/plugins/passthru/include/
H A DDrmPassthruPlugIn.h59 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position);
/frameworks/av/include/drm/
H A DDrmManagerClient.h67 * @param[in] offset Start position of the content
123 * @param[in] position Position in the file (in milliseconds) where the start occurs.
129 sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position);
180 * @param[in] offset Offset with which to update the file position.
/frameworks/av/include/media/
H A DAudioRecord.h49 EVENT_MARKER = 2, // Record head is at the specified marker position
51 EVENT_NEW_POS = 3, // Record head is at a new position
100 * - EVENT_MARKER: pointer to const uint32_t containing the marker position in frames.
101 * - EVENT_NEW_POS: pointer to const uint32_t containing the new position in frames.
160 * and inform of marker, position updates, etc.
273 /* Sets marker position. When record reaches the number of frames specified,
276 * To set a marker at a position which would compute as 0,
277 * a workaround is to set the marker at a nearby position such as ~0 or 1.
283 * marker: marker position expressed in wrapping (overflow) frame units,
293 /* Sets position updat
[all...]
H A DAudioTimestamp.h33 uint32_t mPosition; // a frame position in AudioTrack::getPosition() units
71 // If this value is -1, then both time and position are invalid.
72 // If this value is 0, then the time is not valid but the position is valid.
85 // before sending to client, but differences in legacy position offset handling
103 int64_t *position, int64_t *time, int timebase, Location *location = nullptr) const {
104 if (position == nullptr || time == nullptr
113 *position = mPosition[i];
128 int64_t position, time; local
129 if (getBestTimestamp(&position, &time, TIMEBASE_MONOTONIC, location) == OK) {
130 timestamp->mPosition = position;
102 getBestTimestamp( int64_t *position, int64_t *time, int timebase, Location *location = nullptr) const argument
[all...]
H A DAudioTrack.h62 EVENT_MARKER = 3, // Playback head is at the specified marker position
64 EVENT_NEW_POS = 4, // Playback head is at a new position
73 // in the mapping from frame position to presentation time.
122 * - EVENT_MARKER: pointer to const uint32_t containing the marker position in frames.
123 * - EVENT_NEW_POS: pointer to const uint32_t containing the new position in frames.
186 * and inform of marker, position updates, etc.
481 /* Sets marker position. When playback reaches the number of frames specified, a callback with
483 * notification callback. To set a marker at a position which would compute as 0,
484 * a workaround is to set the marker at a nearby position such as ~0 or 1.
490 * marker: marker position expresse
[all...]
H A DLinearMap.h34 get a timestamp from the sink. The sink timestamp's position (mPosition)
59 We substitute the sink mPosition of 51020 with the track position 1020,
104 If you look back further, the position is extrapolated either from a passed in
269 // Returns the previous position in the mSamples array
278 ssize_t position = mPos - back; local
279 if (position < 0) position += mSize;
280 return (size_t)position;
H A DMediaPlayerInterface.h101 virtual status_t getPosition(uint32_t *position) const = 0;
H A DMmapStreamInterface.h93 * Read current read/write position in the mmap buffer with associated time stamp.
95 * \param[out] position address at which the mmap read/write position should be returned.
97 * \return OK if the position is successfully returned.
99 * NOT_ENOUGH_DATA if the position cannot be retrieved
102 virtual status_t getMmapPosition(struct audio_mmap_position *position) = 0;
/frameworks/av/include/media/audiohal/
H A DStreamHalInterface.h75 // Get current read/write position in the mmap buffer
76 virtual status_t getMmapPosition(struct audio_mmap_position *position) = 0;
/frameworks/av/include/private/media/
H A DAudioTrackShared.h48 #define CBLK_BUFFER_END 0x80 // set by server when the position reaches end of buffer if not looping
78 // The state has a sequence counter to indicate whether changes are made to loop or position.
79 // The sequence counter also currently indicates whether loop or position is first depending
87 uint32_t mPositionSequence; // a sequence counter to indicate changes to position
111 // client requests to the server for loop or position changes.
114 // position info updated asynchronously by server and read by client,
416 // static buffer position and looping parameters. These commands are not
419 // getters will read a cached version of the position and loop variables
429 void setBufferPosition(size_t position);
430 void setBufferPositionAndLoop(size_t position, size_
[all...]
/frameworks/av/media/libaaudio/src/binding/
H A DAAudioServiceMessage.h30 int64_t position; // number of frames transferred so far member in struct:aaudio::AAudioMessageTimestamp
31 int64_t deviceOffset; // add to client position to get device position
32 int64_t timestamp; // time when that position was reached

Completed in 227 milliseconds

1234567891011>>