HomeSort by relevance Sort by last modified time
    Searched full:timems (Results 1 - 25 of 42) sorted by null

1 2

  /frameworks/av/media/libstagefright/rtsp/
UDPPusher.cpp 63 uint32_t timeMs;
64 CHECK_EQ(fread(&timeMs, 1, sizeof(timeMs), mFile), sizeof(timeMs));
65 mFirstTimeMs = fromlel(timeMs);
94 uint32_t timeMs;
95 if (fread(&timeMs, 1, sizeof(timeMs), mFile) < sizeof(timeMs)) {
100 timeMs = fromlel(timeMs)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
MediaLinearLayoutListener.java 59 * @param timeMs The time where the trim occurs
61 void onTrimMediaItem(MovieMediaItem mediaItem, long timeMs);
67 * @param timeMs The time where the trim occurs
69 void onTrimMediaItemEnd(MovieMediaItem mediaItem, long timeMs);
MediaLinearLayout.java     [all...]
  /frameworks/av/media/libstagefright/timedtext/
TextDescriptions.h 38 uint32_t flags, int timeMs, Parcel *parcel);
72 int timeMs, Parcel *parcel);
78 int timeMs, Parcel *parcel, int depth);
TextDescriptions.cpp 28 uint32_t flags, int timeMs, Parcel *parcel) {
35 return extract3GPPLocalDescriptions(data, size, timeMs, parcel, 0);
39 return extractSRTLocalDescriptions(data, size, timeMs, parcel);
50 const uint8_t *data, ssize_t size, int timeMs, Parcel *parcel) {
53 parcel->writeInt32(timeMs);
72 int timeMs, Parcel *parcel, int depth) {
78 parcel->writeInt32(timeMs);
  /frameworks/base/media/jni/mediaeditor/
VideoEditorThumbnailMain.h 52 M4OSA_UInt32 height, M4OSA_UInt32 *timeMS,
67 M4OSA_UInt32 height, M4OSA_UInt32 *timeMS,
VideoEditorThumbnailMain.cpp 267 M4OSA_UInt32 height, M4OSA_UInt32* timeMS,
281 err = ThumbnailGetPixels(pContext, pixelArray, width, height, timeMS, tolerance);
290 M4OSA_UInt32 height, M4OSA_UInt32* timeMS,
304 timeMS, tolerance);
VideoEditorMain.cpp 180 M4OSA_UInt32 timeMS);
641 frameStr.timeMs = 0;
666 M4OSA_UInt32 timeMs = (M4OSA_UInt32)fromMs;
721 if (timeMs == 0) {
726 "videoEditor_renderPreviewFrame() timeMs=%d", timeMs);
728 if (timeMs > uiTotalClipDuration) {
730 "videoEditor_renderPreviewFrame() timeMs > uiTotalClipDuration");
737 if (timeMs <= (iIncrementedDuration +
743 "videoEditor_renderPreviewFrame() iCurrentClipIndex=%d for timeMs=%d"
    [all...]
VideoBrowserMain.c 450 M4_MediaTime timeMS = 0;
480 timeMS = (M4_MediaTime)targetTime;
482 pC->m_pDecoderCtx, &timeMS, bJumpNeeded, tolerance);
490 pC->m_pDecoderCtx, &timeMS, pC->m_outputPlane, M4OSA_TRUE);
498 pC->m_currentCTS = (M4OSA_UInt32)timeMS;
  /frameworks/base/media/java/android/media/videoeditor/
MediaVideoItem.java 283 public Bitmap getThumbnail(int width, int height, long timeMs) {
284 if (timeMs > mDurationMs) {
288 if (timeMs < 0) {
303 getFilename(), width, height, timeMs, mVideoRotationDegree);
488 * @param timeMs time corresponding to the frame to display (relative to the
496 public long renderFrame(SurfaceHolder surfaceHolder, long timeMs) {
501 if (timeMs > mDurationMs || timeMs < 0) {
512 mFilename,timeMs,mWidth,mHeight);
VideoEditor.java 88 * @param timeMs The current preview position (expressed in milliseconds
93 public void onProgress(VideoEditor videoEditor, long timeMs,
710 * @param timeMs time corresponding to the frame to display
720 public long renderPreviewFrame(SurfaceHolder surfaceHolder, long timeMs,
MediaArtistNativeHelper.java     [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
VideoEditorActivity.java 273 public void onTrimMediaItem(MovieMediaItem mediaItem, long timeMs) {
277 if (timeMs >= 0) {
278 mPreviewThread.renderMediaItemFrame(mediaItem, timeMs);
282 mProject.getMediaItemBeginTime(mediaItem.getId()) + timeMs,
289 public void onTrimMediaItemEnd(MovieMediaItem mediaItem, long timeMs) {
331 final long timeMs = (scrollX * mDurationMs) / mActiveWidth;
332 if (setPlayhead(timeMs < 0 ? 0 : timeMs)) {
    [all...]
  /frameworks/base/core/java/android/os/
IPowerManager.aidl 45 void setMaximumScreenOffTimeoutFromDeviceAdmin(int timeMs);
  /frameworks/base/media/java/android/media/
IRemoteControlClient.aidl 51 void seekTo(int clientGeneration, long timeMs);
IAudioService.aidl 173 * @param timeMs the time in ms to seek to, must be positive.
175 void setRemoteControlClientPlaybackPosition(int generationId, long timeMs);
191 void setPlaybackStateForRcc(int rccId, int state, long timeMs, float speed);
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
VideoEditorProject.java 660 * @param timeMs The inquiry position
664 public MovieMediaItem getInsertAfterMediaItem(long timeMs) {
680 if (timeMs >= beginMs && timeMs <= endMs) {
681 if (timeMs - beginMs < endMs - timeMs) { // Closer to the beginning
1016 * @param timeMs time corresponding to the frame to display
1025 public long renderPreviewFrame(SurfaceHolder surfaceHolder, long timeMs,
1028 return mVideoEditor.renderPreviewFrame(surfaceHolder, timeMs, overlayData);
1039 * @param timeMs time corresponding to the frame to displa
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPreviewController.h 142 M4OSA_UInt32 timeMs, M4OSA_Void* outPtr);
VideoEditorPreviewController.cpp 865 if((mEffectsSettings[i].uiStartTime <= pFrameStr->timeMs) &&
867 pFrameStr->timeMs) && (mEffectsSettings[i].uiDuration != 0)) {
885 if((mEffectsSettings[index].uiStartTime <= pFrameInfo->timeMs) &&
887 mEffectsSettings[index].uiDuration) >= pFrameInfo->timeMs))
904 pFrameStr->uiFrameHeight, pFrameStr->timeMs,
    [all...]
VideoEditorTools.h 57 M4OSA_UInt32 timeMs;
  /frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorMain.h 66 M4OSA_UInt32 timeMs; /* time stamp of the frame to be rendered*/
  /frameworks/base/core/java/android/app/admin/
IDevicePolicyManager.aidl 68 void setMaximumTimeToLock(in ComponentName who, long timeMs, int userHandle);
  /frameworks/av/media/libstagefright/timedtext/test/
TimedTextSRTSource_test.cpp 91 void CheckStartTimeMs(const Parcel& parcel, int32_t timeMs) {
95 EXPECT_EQ(timeMs, intval);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorPreviewTest.java 177 public void onProgress(VideoEditor videoEditor, long timeMs,
489 public void onProgress(VideoEditor videoEditor, long timeMs,
728 public void onProgress(VideoEditor videoEditor, long timeMs,
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java 204 private String stringForTime(int timeMs) {
205 int totalSeconds = timeMs / 1000;

Completed in 1323 milliseconds

1 2