Changeset 1313 in 3DVCSoftware for trunk/source/App/utils/BitrateTargeting/ExtractBitrates.h
- Timestamp:
- 13 Aug 2015, 17:38:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/utils/BitrateTargeting/ExtractBitrates.h
r872 r1313 2 2 * License, included below. This software may be subject to other third party 3 3 * and contributor rights, including patent rights, and no such rights are 4 * granted under this license. 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 4, ITU/ISO/IEC6 * Copyright (c) 2010-2015, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 32 32 */ 33 33 34 #ifndef EXTRACT_BITRATES_H35 #define EXTRACT_BITRATES_H34 #ifndef __EXTRACTBITRATES__ 35 #define __EXTRACTBITRATES__ 36 36 37 37 #include "RuntimeError.h" … … 44 44 POCParseException( const std::string& pocLine ): m_pocLine( pocLine ) { } 45 45 virtual ~POCParseException( ) throw ( ) { } 46 46 47 47 protected: 48 48 void outputWhat( std::ostream& o ) const { o << "POC parse exception: " << m_pocLine; } 49 49 50 50 private: 51 51 std::string m_pocLine; … … 57 57 public: 58 58 virtual ~NonContiguousQPSetException( ) throw( ) { } 59 59 60 60 protected: 61 61 void outputWhat( std::ostream& o ) const { o << "Non-contiguous QP set exception"; }
Note: See TracChangeset for help on using the changeset viewer.