Searched defs:endMs (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
H A DVideoEditorPreviewTest.java148 protected void validatePreviewProgress(int startMs, int endMs, argument
167 if (endMs == -1) {
171 waitingTime += (endMs - startMs);
175 mVideoEditor.startPreview(surfaceHolder, startMs, endMs, loop, 1,
/frameworks/base/media/java/android/media/videoeditor/
H A DAudioTrack.java106 * @param endMs end time in the audio track in milliseconds (relative to the
124 long startTimeMs,long beginMs, long endMs, boolean loop,
172 if (endMs == MediaItem.END_OF_FILE) {
173 endMs = properties.audioDuration;
184 mTimelineDurationMs = endMs - beginMs;
188 mEndBoundaryTimeMs = endMs;
358 * @param endMs end time in the audio track in milliseconds (relative to the
361 public void setExtractBoundaries(long beginMs, long endMs) { argument
365 if (endMs > mDurationMs) {
371 if (endMs <
123 AudioTrack(VideoEditor editor, String audioTrackId, String filename, long startTimeMs,long beginMs, long endMs, boolean loop, int volume, boolean muted,boolean duckingEnabled, int duckThreshold, int duckedTrackVolume, String audioWaveformFilename) argument
[all...]
H A DMediaImageItem.java620 long startMs, long endMs,
632 if (startMs > endMs) {
636 if (endMs > mDurationMs) {
641 height, startMs, endMs, thumbnailCount, indices, callback, 0);
619 getThumbnailList(int width, int height, long startMs, long endMs, int thumbnailCount, int[] indices, GetThumbnailListCallback callback) argument
H A DMediaItem.java565 * @param endMs The end of the time range in milliseconds
573 long startMs, long endMs,
585 long startMs, long endMs,
593 getThumbnailList(width, height, startMs, endMs,
572 getThumbnailList(int width, int height, long startMs, long endMs, int thumbnailCount, int[] indices, GetThumbnailListCallback callback) argument
584 getThumbnailList(int width, int height, long startMs, long endMs, int thumbnailCount) argument
H A DMediaVideoItem.java98 * @param endMs End time in milliseconds. Set to {@link #END_OF_FILE} to
108 int renderingMode, long beginMs, long endMs, int volumePercent, boolean muted,
184 mEndBoundaryTimeMs = endMs == END_OF_FILE ? mDurationMs : endMs;
205 * @param endMs End time in milliseconds. Set to {@link #END_OF_FILE} to
212 public void setExtractBoundaries(long beginMs, long endMs) { argument
217 if (endMs > mDurationMs) {
221 if ((endMs != -1) && (beginMs >= endMs) ) {
225 if ((beginMs < 0) || ((endMs !
107 MediaVideoItem(VideoEditor editor, String mediaItemId, String filename, int renderingMode, long beginMs, long endMs, int volumePercent, boolean muted, String audioWaveformFilename) argument
310 getThumbnailList(int width, int height, long startMs, long endMs, int thumbnailCount, int[] indices, GetThumbnailListCallback callback) argument
[all...]
H A DMediaArtistNativeHelper.java3788 * @param endMs The end time in ms
3797 long startMs, long endMs, int thumbnailCount, int[] indices,
3826 thumbnailCount, startMs, endMs, indices,
3796 getPixelsList(String filename, final int width, final int height, long startMs, long endMs, int thumbnailCount, int[] indices, final MediaItem.GetThumbnailListCallback callback, final int videoRotation) argument

Completed in 267 milliseconds