HomeSort by relevance Sort by last modified time
    Searched refs:audioWaveformFilename (Results 1 - 4 of 4) sorted by null

  /frameworks/base/media/java/android/media/videoeditor/
WaveformData.java 52 * @param audioWaveformFilename The name of the audio waveform file
64 * @throws IllegalArgumentException if audioWaveformFilename is null
66 WaveformData(String audioWaveformFilename) throws IOException {
68 if (audioWaveformFilename == null) {
75 final File audioGraphFileContext = new File(audioWaveformFilename);
AudioTrack.java 116 * @param audioWaveformFilename The name of the waveform file
127 String audioWaveformFilename) throws IOException {
196 mAudioWaveformFilename = audioWaveformFilename;
197 if (audioWaveformFilename != null) {
199 new SoftReference<WaveformData>(new WaveformData(audioWaveformFilename));
528 * AudioWaveformFilename is generated
MediaVideoItem.java 103 * @param audioWaveformFilename The name of the audio waveform file
109 String audioWaveformFilename) throws IOException {
187 mAudioWaveformFilename = audioWaveformFilename;
188 if (audioWaveformFilename != null) {
190 new WaveformData(audioWaveformFilename));
541 * Since audioWaveformFilename will not be supplied,it is generated
VideoEditorImpl.java     [all...]

Completed in 41 milliseconds