Changeset 125 in SHVCSoftware for trunk/source/App/TAppEncoder/TAppEncLayerCfg.h
- Timestamp:
- 16 Apr 2013, 06:39:31 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppEncoder/TAppEncLayerCfg.h
r2 r125 34 34 Int m_iSourceWidth; ///< source width in pixel 35 35 Int m_iSourceHeight; ///< source height in pixel 36 Int m_c roppingMode;37 Int m_c ropLeft;38 Int m_c ropRight;39 Int m_c ropTop;40 Int m_c ropBottom;36 Int m_conformanceMode; 37 Int m_confLeft; 38 Int m_confRight; 39 Int m_confTop; 40 Int m_confBottom; 41 41 Int m_aiPad[2]; ///< number of padded pixels for width and height 42 42 Int m_iIntraPeriod; ///< period of I-slice (random access period) 43 43 Double m_fQP; ///< QP value of key-picture (floating point) 44 44 #if VPS_EXTN_DIRECT_REF_LAYERS 45 Int *m_refLayerIds; 46 Int m_numDirectRefLayers; 47 #endif 45 48 #if SVC_EXTENSION 46 49 Int m_iWaveFrontSubstreams; //< If iWaveFrontSynchro, this is the number of substreams per frame (dependent tiles) or per tile (independent tiles). … … 64 67 65 68 Void setAppEncCfg(TAppEncCfg* p) {m_cAppEncCfg = p; } 69 66 70 string getInputFile() {return m_cInputFile; } 67 71 string getReconFile() {return m_cReconFile; } … … 69 73 Int getSourceWidth() {return m_iSourceWidth; } 70 74 Int getSourceHeight() {return m_iSourceHeight; } 71 Int getCroppingMode() {return m_croppingMode; } 72 Int getCropLeft() {return m_cropLeft; } 73 Int getCropRight() {return m_cropRight; } 74 Int getCropTop() {return m_cropTop; } 75 Int getCropBottom() {return m_cropBottom; } 75 Int getConformanceMode() { return m_conformanceMode; } 76 76 Int* getPad() {return m_aiPad; } 77 77 Double getFloatQP() {return m_fQP; } 78 Int getConfLeft() {return m_confLeft; } 79 Int getConfRight() {return m_confRight; } 80 Int getConfTop() {return m_confTop; } 81 Int getConfBottom() {return m_confBottom; } 78 82 79 83 Int getIntQP() {return m_iQP; } 80 84 Int* getdQPs() {return m_aidQP; } 81 85 #if VPS_EXTN_DIRECT_REF_LAYERS 86 Int getNumDirectRefLayers() {return m_numDirectRefLayers;} 87 Int* getRefLayerIds() {return m_refLayerIds; } 88 Int getRefLayerId(Int i) {return m_refLayerIds[i]; } 89 #endif 82 90 }; // END CLASS DEFINITION TAppEncLayerCfg 83 91
Note: See TracChangeset for help on using the changeset viewer.