Dirac - A Video Codec

Created by the British Broadcasting Corporation.


parseunit_byteio.h

Go to the documentation of this file.
00001 /* ***** BEGIN LICENSE BLOCK *****
00002 *
00003 * $Id: parseunit_byteio.h,v 1.9 2008/01/16 02:42:08 asuraparaju Exp $ $Name: Dirac_0_9_0 $
00004 *
00005 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
00006 *
00007 * The contents of this file are subject to the Mozilla Public License
00008 * Version 1.1 (the "License"); you may not use this file except in compliance
00009 * with the License. You may obtain a copy of the License at
00010 * http://www.mozilla.org/MPL/
00011 *
00012 * Software distributed under the License is distributed on an "AS IS" basis,
00013 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
00014 * the specific language governing rights and limitations under the License.
00015 *
00016 * The Original Code is BBC Research and Development code.
00017 *
00018 * The Initial Developer of the Original Code is the British Broadcasting
00019 * Corporation.
00020 * Portions created by the Initial Developer are Copyright (C) 2004.
00021 * All Rights Reserved.
00022 *
00023 * Contributor(s): Andrew Kennedy (Original Author)
00024 *
00025 * Alternatively, the contents of this file may be used under the terms of
00026 * the GNU General Public License Version 2 (the "GPL"), or the GNU Lesser
00027 * Public License Version 2.1 (the "LGPL"), in which case the provisions of
00028 * the GPL or the LGPL are applicable instead of those above. If you wish to
00029 * allow use of your version of this file only under the terms of the either
00030 * the GPL or LGPL and not to allow others to use your version of this file
00031 * under the MPL, indicate your decision by deleting the provisions above
00032 * and replace them with the notice and other provisions required by the GPL
00033 * or LGPL. If you do not delete the provisions above, a recipient may use
00034 * your version of this file under the terms of any one of the MPL, the GPL
00035 * or the LGPL.
00036 * ***** END LICENSE BLOCK ***** */
00037 
00041 #ifndef parseunit_byteio_h
00042 #define parseunit_byteio_h
00043 
00044 //SYSTEM INLUDES
00045 #include <map>                  // Byte-map
00046 #include <string>               // stores values
00047 
00048 //LOCAL INCLUDES
00049 #include "byteio.h"             // Parent class
00050 
00051 
00052 namespace dirac
00053 {
00054 
00055     /* Types of parse-unit */
00056     typedef enum {
00057         PU_SEQ_HEADER=0,
00058         PU_FRAME,
00059         PU_END_OF_SEQUENCE,
00060         PU_AUXILIARY_DATA,
00061         PU_PADDING_DATA,
00062         PU_CORE_FRAME,
00063         PU_LOW_DELAY_FRAME,
00064         PU_UNDEFINED
00065     } ParseUnitType;
00066 
00071     class ParseUnitByteIO : public ByteIO
00072     {
00073     public:
00074 
00078         ParseUnitByteIO();
00079 
00084         ParseUnitByteIO(const ByteIO& byte_io);
00085 
00090         ParseUnitByteIO(const ParseUnitByteIO& parseunit_byteio);
00091 
00095         ~ParseUnitByteIO();
00096 
00101         virtual void CollateByteStats(DiracByteStats& dirac_byte_stats);
00102 
00107         bool Input(); // decoding
00108 
00113         bool IsValid(const ParseUnitByteIO& next_unit);
00114 
00119         bool Skip();
00120 
00124         virtual const std::string GetBytes();   // encoding
00125 
00130         void SetAdjacentParseUnits(ParseUnitByteIO *p_prev_parseunit);  // encoding
00131 
00132         /*
00133         * Gets number of bytes input/output within unit
00134         */
00135         virtual int GetSize() const;
00136 
00140         int GetNextParseOffset() const;
00141 
00145         int GetPreviousParseOffset() const;
00146 
00150         virtual ParseUnitType GetType() const;
00151 
00152     protected:
00153 
00158         virtual int CalcNextUnitOffset();
00159 
00164         virtual unsigned char CalcParseCode() const { return 0;}    // encoding
00165 
00170         bool SyncToUnitStart();   // decoding
00171 
00175         unsigned char GetParseCode() const { return m_parse_code;}
00176 
00180         bool IsSeqHeader() const
00181         { return m_parse_code==0x00; }
00182 
00186         bool IsEndOfSequence() const
00187         { return m_parse_code==0x10; }
00188 
00192         bool IsAuxiliaryData() const
00193         { return (m_parse_code&0xF8)==0x20; }
00194 
00198         bool IsPaddingData() const
00199         { return m_parse_code==0x30; }
00200 
00204         bool IsPicture() const
00205         { return ((m_parse_code&0x08)==0x08); }
00206 
00210         bool IsLowDelay() const
00211         { return ((m_parse_code&0x88)==0x88); }
00212 
00216         bool IsCoreSyntax() const
00217         { return ((m_parse_code&0x88)==0x08); }
00218 
00222         bool IsUsingAC() const
00223         { return ((m_parse_code&0x48)==0x08); }
00224 
00225     private:
00226 
00230         int m_previous_parse_offset;
00231 
00235         int m_next_parse_offset;
00236 
00240         unsigned char m_parse_code;
00241 
00242     };
00243 
00244 
00245 } // namespace dirac
00246 
00247 #endif

© 2004 British Broadcasting Corporation. Dirac code licensed under the Mozilla Public License (MPL) Version 1.1.
HTML documentation generated by Dimitri van Heesch's excellent Doxygen tool.