OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:beginMs
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/media/java/android/media/videoeditor/
AudioTrack.java
104
* @param
beginMs
start time in the audio track in milliseconds (relative to
124
long startTimeMs,long
beginMs
, long endMs, boolean loop,
184
mTimelineDurationMs = endMs -
beginMs
;
187
mBeginBoundaryTimeMs =
beginMs
;
356
* @param
beginMs
start time in the audio track in milliseconds (relative to
361
public void setExtractBoundaries(long
beginMs
, long endMs) {
362
if (
beginMs
> mDurationMs) {
368
if (
beginMs
< 0) {
380
mBeginBoundaryTimeMs =
beginMs
;
MediaVideoItem.java
96
* @param
beginMs
Start time in milliseconds. Set to 0 to extract from the
108
int renderingMode, long
beginMs
, long endMs, int volumePercent, boolean muted,
183
mBeginBoundaryTimeMs =
beginMs
;
203
* @param
beginMs
Start time in milliseconds. Set to 0 to extract from the
212
public void setExtractBoundaries(long
beginMs
, long endMs) {
213
if (
beginMs
> mDurationMs) {
221
if ((endMs != -1) && (
beginMs
>= endMs) ) {
225
if ((
beginMs
< 0) || ((endMs != -1) && (endMs < 0))) {
231
if (
beginMs
!= mBeginBoundaryTimeMs) {
243
mBeginBoundaryTimeMs =
beginMs
;
[
all
...]
VideoEditorImpl.java
[
all
...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieAudioTrack.java
320
* @param
beginMs
start time in the audio track in milliseconds (relative to
325
void setExtractBoundaries(long
beginMs
, long endMs) {
326
mBeginBoundaryTimeMs =
beginMs
;
VideoEditorProject.java
665
long
beginMs
= 0;
672
endMs =
beginMs
+ mediaItem.getAppTimelineDuration();
680
if (timeMs >=
beginMs
&& timeMs <= endMs) {
681
if (timeMs -
beginMs
< endMs - timeMs) { // Closer to the beginning
688
beginMs
= endMs;
971
long
beginMs
= 0;
979
beginMs
+= mi.getAppTimelineDuration();
983
beginMs
-= mi.getEndTransition().getAppDuration();
988
return
beginMs
;
[
all
...]
MovieMediaItem.java
305
* @param
beginMs
Start time in milliseconds. Set to 0 to extract from the
309
public void setAppExtractBoundaries(long
beginMs
, long endMs) {
310
mAppBeginBoundaryTimeMs =
beginMs
;
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
MediaLinearLayout.java
[
all
...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java
[
all
...]
Completed in 268 milliseconds