/* * RED5 Open Source Flash Server - http://code.google.com/p/red5/ * * Copyright 2006-2012 by respective authors (see below). All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.red5.io; public interface ITagReader { /** * Return the file that is loaded. * * @return the file to be loaded */ public IStreamableFile getFile(); /** * Returns the offet length * * @return int */ public int getOffset(); /** * Returns the amount of bytes read * * @return long */ public long getBytesRead(); /** * Return length in seconds * @return length in seconds */ public long getDuration(); /** * Get the total readable bytes in a file or ByteBuffer * * @return Total readable bytes */ public long getTotalBytes(); /** * Decode the header of the stream; * */ public void decodeHeader(); /** * Move the reader pointer to given position in file. * * @param pos File position to move to */ public void position(long pos); /** * Returns a boolean stating whether the FLV has more tags * * @return boolean */ public boolean hasMoreTags(); /** * Returns a Tag object * * @return Tag */ public ITag readTag(); /** * Closes the reader and free any allocated memory. */ public void close(); /** * Check if the reader also has video tags. * * @return has video */ public boolean hasVideo(); }