Searched defs:projectPath (Results 1 - 4 of 4) 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 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/
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);

Completed in 433 milliseconds