Commit 60df845d by OxygenCobalt

Fix vorbis tests

The vorbis tests did not expect metadata normally. Now they do.
parent d7a40679
......@@ -7,6 +7,10 @@ supported by Android’s MediaPlayer API, including DASH and SmoothStreaming
adaptive playbacks. Unlike the MediaPlayer API, ExoPlayer is easy to customize
and extend, and can be updated through Play Store application updates.
This fork implements metadata parsing for OGG files. It contains a bit of a breaking
change, as I renamed the `metadata.flac` module to `metadata.xiph` to reflect it's
new nature.
## Documentation
* The [developer guide][] provides a wealth of information.
......
......@@ -117,8 +117,6 @@ import org.checkerframework.checker.nullness.qual.EnsuresNonNullIf;
Arrays.asList(vorbisSetup.commentHeader.comments)
);
Log.d("VorbisReader", "hi metadata" + vorbisMetadata.toString());
setupData.format =
new Format.Builder()
.setSampleMimeType(MimeTypes.AUDIO_VORBIS)
......
......@@ -15,6 +15,7 @@
*/
package com.google.android.exoplayer2.extractor.ogg;
import com.google.android.exoplayer2.testutil.DumpFileAsserts;
import com.google.android.exoplayer2.testutil.ExtractorAsserts;
import com.google.common.collect.ImmutableList;
import org.junit.Test;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment