Rename DefaultMp4Writer to BasicMp4Writer

PiperOrigin-RevId: 611421036
This commit is contained in:
sheenachhabra 2024-02-29 04:13:28 -08:00 committed by Copybara-Service
parent 1bdc58de0b
commit bba45b8b35
2 changed files with 4 additions and 5 deletions

View File

@ -37,10 +37,9 @@ import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
/** /**
* The default implementation of {@link Mp4Writer} which writes all the samples in a single mdat * The basic implementation of {@link Mp4Writer} which writes all the samples in a single mdat box.
* box.
*/ */
/* package */ final class DefaultMp4Writer implements Mp4Writer { /* package */ final class BasicMp4Writer implements Mp4Writer {
private static final long INTERLEAVE_DURATION_US = 1_000_000L; private static final long INTERLEAVE_DURATION_US = 1_000_000L;
private final FileOutputStream outputStream; private final FileOutputStream outputStream;
@ -66,7 +65,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
* H.265 NAL units from the Annex-B format (using start codes to delineate NAL units) to the * H.265 NAL units from the Annex-B format (using start codes to delineate NAL units) to the
* AVCC format (which uses length prefixes). * AVCC format (which uses length prefixes).
*/ */
public DefaultMp4Writer( public BasicMp4Writer(
FileOutputStream outputStream, FileOutputStream outputStream,
Mp4MoovStructure moovGenerator, Mp4MoovStructure moovGenerator,
AnnexBToAvccConverter annexBToAvccConverter) { AnnexBToAvccConverter annexBToAvccConverter) {

View File

@ -181,7 +181,7 @@ public final class Mp4Muxer {
fragmentedMp4Enabled fragmentedMp4Enabled
? new FragmentedMp4Writer( ? new FragmentedMp4Writer(
fileOutputStream, moovStructure, avccConverter, fragmentDurationUs) fileOutputStream, moovStructure, avccConverter, fragmentDurationUs)
: new DefaultMp4Writer(fileOutputStream, moovStructure, avccConverter); : new BasicMp4Writer(fileOutputStream, moovStructure, avccConverter);
return new Mp4Muxer(mp4Writer, metadataCollector); return new Mp4Muxer(mp4Writer, metadataCollector);
} }