Searched refs:projectPath (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorFactory.java36 * @param projectPath The path where all VideoEditor internal
45 public static VideoEditor create(String projectPath) throws IOException { argument
49 final File dir = new File(projectPath);
53 + projectPath);
65 return new VideoEditorImpl(projectPath);
73 * @param projectPath The path where all VideoEditor internal files
87 public static VideoEditor load(String projectPath, boolean generatePreview) argument
89 final VideoEditor videoEditor = new VideoEditorImpl(projectPath);
H A DAudioTrack.java530 final String projectPath = mMANativeHelper.getProjectPath();
531 final String audioWaveFilename = String.format(projectPath + "/audioWaveformFile-"
H A DMediaVideoItem.java535 final String projectPath = mMANativeHelper.getProjectPath();
546 String.format(projectPath + "/" + "audioWaveformFile-"+ getId() + ".dat");
H A DVideoEditorImpl.java145 * @param projectPath - The path where the VideoEditor stores all files
148 public VideoEditorImpl(String projectPath) throws IOException { argument
162 mMANativeHelper = new MediaArtistNativeHelper(projectPath, mLock, this);
163 mProjectPath = projectPath;
164 final File projectXml = new File(projectPath, PROJECT_FILENAME);
H A DMediaArtistNativeHelper.java1719 * @param projectPath The path where the VideoEditor stores all files
1724 public MediaArtistNativeHelper(String projectPath, Semaphore lock, VideoEditor veObj) { argument
1725 mProjectPath = projectPath;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DVideoEditorStressTest.java104 final String projectPath =
106 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);
813 final String[] projectPath = new String[10];
818 projectPath[i] =
821 mVideoEditorHelper.createVideoEditor(projectPath[i]);
886 VideoEditorFactory.load(projectPath[i], true);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DVideoEditorHelper.java69 * @param projectPath the directory where all files related to project will
74 public VideoEditor createVideoEditor(String projectPath) { argument
77 mVideoEditor = VideoEditorFactory.create(projectPath);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
H A DMediaItemThumbnailTest.java57 final String projectPath = mVideoEditorHelper.
59 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);
H A DMediaPropertiesTest.java58 final String projectPath = mVideoEditorHelper.
60 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);
H A DVideoEditorExportTest.java77 final String projectPath =
79 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);
H A DVideoEditorPreviewTest.java125 final String projectPath =
127 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);
H A DVideoEditorAPITest.java74 final String projectPath = mVideoEditorHelper.
76 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DVideoEditorPerformance.java87 final String projectPath =
89 mVideoEditor = mVideoEditorHelper.createVideoEditor(projectPath);

Completed in 240 milliseconds