All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ua.mobius.media.server.impl.resource.mediaplayer.mpeg.EditBox Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2011, Red Hat, Inc. and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

/*
 * 15/07/13 - Change notice:
 * This file has been modified by Mobius Software Ltd.
 * For more information please visit http://www.mobius.ua
 */
package ua.mobius.media.server.impl.resource.mediaplayer.mpeg;

import java.io.DataInputStream;
import java.io.IOException;

/**
 * 
 * 8.6.5.1 Definition
 * 
    *
  • Box Type: �?edts’
  • *
  • Container: {@link TrackBox} (�?trak’)
  • *
  • Mandatory: No
  • *
  • Quantity: Zero or one
  • *
*

* An Edit Box maps the presentation time-line to the media time-line as it is stored in the file. The Edit Box is a * container for the edit lists. *

*

* The Edit Box is optional. In the absence of this box, there is an implicit one-to-one mapping of these time-lines, * and the presentation of a track starts at the beginning of the presentation. An empty edit is used to offset the * start time of a track. *

* * @author kulikov * @author amit bhayani */ public class EditBox extends Box { // File Type = edts static byte[] TYPE = new byte[] { AsciiTable.ALPHA_e, AsciiTable.ALPHA_d, AsciiTable.ALPHA_t, AsciiTable.ALPHA_s }; static String TYPE_S = "edts"; static { bytetoTypeMap.put(TYPE, TYPE_S); } private EditListBox editList; public EditBox(long size) { super(size, TYPE_S); } @Override protected int load(DataInputStream fin) throws IOException { long len = readU32(fin); byte[] type = read(fin); if (comparebytes(type, EditListBox.TYPE)) { editList = new EditListBox(len); editList.load(fin); } return (int) getSize(); } public EditListBox getEditList() { return editList; } }