|
| | EncoderParams (const VideoFormat &video_format, PictureType ftype=INTER_PICTURE, unsigned int num_refs=2, bool set_defaults=true) |
| | Default constructor.
|
| |
| bool | Verbose () const |
| | Returns true if we're operating verbosely, false otherwise.
|
| |
| bool | LocalDecode () const |
| | Returns a flag indicating that we're doing local decoding.
|
| |
| bool | Lossless () const |
| | Get whether we're doing lossless coding.
|
| |
| bool | FullSearch () const |
| | Get whether we're doing full-search motion estimation.
|
| |
| int | XRangeME () const |
| | Get the horizontal search range for full-search motion estimation.
|
| |
| int | YRangeME () const |
| | Get the vertical search range for full-search motion estimation.
|
| |
| bool | CombinedME () const |
| | Get whether we're doing combined component motion estimation.
|
| |
| float | Qf () const |
| | Get the quality factor.
|
| |
| int | NumL1 () const |
| | Return the nominal number of L1 pictures before the next I picture.
|
| |
| int | L1Sep () const |
| | Return the separation between L1 pictures (and between L1 and I pictures)
|
| |
| float | UFactor () const |
| | Return the amount we're weighting noise in the U component.
|
| |
| float | VFactor () const |
| | Return the amount we're weighting noise in the V component.
|
| |
| float | CPD () const |
| | Return the number of cycles per degree at the nominal viewing distance for the raster.
|
| |
| PrefilterType | Prefilter () const |
| | Return what prefiltering is in place.
|
| |
| int | PrefilterStrength () const |
| | Return the prefiltering strength.
|
| |
| float | ILambda () const |
| | Return the Lagrangian parameter to be used for I pictures.
|
| |
| float | L1Lambda () const |
| | Return the Lagrangian parameter to be used for L1 pictures.
|
| |
| float | L2Lambda () const |
| | Return the Lagrangian parameter to be used for L2 pictures.
|
| |
| float | L1MELambda () const |
| | Return the Lagrangian ME parameter to be used for L1 pictures.
|
| |
| float | L2MELambda () const |
| | Return the Lagrangian ME parameter to be used for L2 pictures.
|
| |
| int | GOPLength () const |
| | Return the size of the GOP.
|
| |
| char * | OutputPath () const |
| | Return the output path to be used for storing diagnositic data.
|
| |
| const EntropyCorrector & | EntropyFactors () const |
| | Return a reference to the entropy factors.
|
| |
| EntropyCorrector & | EntropyFactors () |
| | Return a reference to the entropy factors - we need to be able to change the values of the entropy factors in situ.
|
| |
| WltFilter | IntraTransformFilter () |
| | Return the Wavelet filter to be used for intra pictures.
|
| |
| WltFilter | InterTransformFilter () |
| | Return the Wavelet filter to be used for Inter pictures.
|
| |
| int | TargetRate () |
| | Return the Target Bit Rate in kbps.
|
| |
| bool | UsingAC () const |
| | Return true if using Arithmetic coding.
|
| |
| void | SetVerbose (bool v) |
| | Sets verbosity on or off.
|
| |
| void | SetLocalDecode (const bool decode) |
| | Sets a flag indicating that we're producing a locally decoded o/p.
|
| |
| void | SetLossless (const bool l) |
| | Set whether we're doing lossless coding.
|
| |
| void | SetFullSearch (const bool fs) |
| | Set whether we're doing full-search motion estimation.
|
| |
| void | SetCombinedME (const bool cme) |
| | Set whether we're doing combined component motion estimation.
|
| |
| void | SetXRangeME (const int xr) |
| | Set the horizontal search range for full-search motion estimation.
|
| |
| void | SetYRangeME (const int yr) |
| | Set the vertical search range for full-search motion estimation.
|
| |
| void | SetQf (const float qfac) |
| | Set the quality factor.
|
| |
| void | SetNumL1 (const int nl) |
| | Set the nominal number of L1 pictures between I pictures.
|
| |
| void | SetL1Sep (const int lsep) |
| | Set the separation between L1 pictures.
|
| |
| void | SetUFactor (const float uf) |
| | Set the amount to weight noise in the U component.
|
| |
| void | SetVFactor (const float vf) |
| | Set the amount to weight noise in the V component.
|
| |
| void | SetCPD (const float cpd) |
| | Set the number of cycles per degree at the nominal viewing distance.
|
| |
| void | SetPrefilter (const PrefilterType pf, const int str) |
| | Set denoising value - true or false.
|
| |
| void | SetOutputPath (const char *op) |
| | Set the output path to be used for diagnostic data.
|
| |
| void | SetEntropyFactors (EntropyCorrector *entcorrect) |
| | Sets the entropy factors - TBD: set this up in a constructor and pass encoder params around entirely by reference.
|
| |
| void | SetIntraTransformFilter (unsigned int wf_idx) |
| | Set the Wavelet filter to be used for intra pictures.
|
| |
| void | SetInterTransformFilter (unsigned int wf_idx) |
| | Set the Wavelet filter to be used for inter pictures.
|
| |
| void | SetIntraTransformFilter (WltFilter wf) |
| | Set the Wavelet filter to be used for intra pictures.
|
| |
| void | SetUsualCodeBlocks (const PictureType &ftype) |
| | Set the number of code blocks for all levels.
|
| |
| void | SetInterTransformFilter (WltFilter wf) |
| | Set the Wavelet filter to be used for inter pictures.
|
| |
| void | SetTargetRate (const int rate) |
| | Set the target bit rate.
|
| |
| void | SetUsingAC (bool using_ac) |
| | Set the arithmetic coding flag.
|
| |
| | CodecParams (const VideoFormat &video_format=VIDEO_FORMAT_CUSTOM, PictureType ftype=INTRA_PICTURE, unsigned int num_refs=0, bool set_defaults=true) |
| | Default constructor.
|
| |
| int | PictureCodingMode () const |
| | Returns the picture coding mode (independent of source format)
|
| |
| bool | FieldCoding () const |
| | Returns true if the pictures are being coded as fields (mode 1 or 3)
|
| |
| bool | TopFieldFirst () const |
| | Returns true if the topmost field comes first in time when coding.
|
| |
| int | Xl () const |
| | Return the picture/field luma width.
|
| |
| int | Yl () const |
| | Return the picture/field luma height.
|
| |
| int | ChromaXl () const |
| | Return the picture/field chroma width.
|
| |
| int | ChromaYl () const |
| | Return the picture/field chroma height.
|
| |
| unsigned int | LumaDepth () const |
| | Returns the luma depth.
|
| |
| unsigned int | ChromaDepth () const |
| | Returns the chroma depth.
|
| |
| bool | ZeroTransform () const |
| | Return zero transform flag being used for picture (de)coding.
|
| |
| WltFilter | TransformFilter () const |
| | Return the wavelet filter currently being used for picture (de)coding.
|
| |
| unsigned int | TransformDepth () const |
| | Return the transform depth being used for picture (de)coding.
|
| |
| CodeBlockMode | GetCodeBlockMode () const |
| | Return multiple quantisers flag being used for picture (de)coding.
|
| |
| bool | SpatialPartition () const |
| | Return the spatial partitioning flag being used for picture (de)coding.
|
| |
| const CodeBlocks & | GetCodeBlocks (unsigned int level) const |
| | Return the code blocks for a particular level.
|
| |
| VideoFormat | GetVideoFormat () const |
| | Return the video format currently being used for picture (de)coding.
|
| |
| PicturePredParams & | GetPicPredParams () |
| | Return the picture prediction params.
|
| |
| const PicturePredParams & | GetPicPredParams () const |
| | Return the picture prediction params.
|
| |
| void | SetPictureCodingMode (int pic_coding) |
| | Sets whether input is coded as fields or quincunxially.
|
| |
| void | SetTopFieldFirst (bool topf) |
| | Sets whether the topmost field comes first in time [NB: TBD since this duplicates metadata in the sequence header].
|
| |
| void | SetXl (const int x) |
| | Set the picture/field luma width.
|
| |
| void | SetYl (const int y) |
| | Set the picture/field luma height.
|
| |
| void | SetChromaXl (const int x) |
| | Set the frame/field chroma width.
|
| |
| void | SetChromaYl (const int y) |
| | Set the frame/field chroma height.
|
| |
| void | SetLumaDepth (unsigned int luma_depth) |
| | Set Luma Depth.
|
| |
| void | SetChromaDepth (unsigned int chroma_depth) |
| | Set Chroma Depth.
|
| |
| void | SetZeroTransform (bool zero_transform) |
| | Set the zero transform flag being used for picture (de)coding.
|
| |
| void | SetTransformFilter (const WltFilter wf) |
| | Set the wavelet filter used for picture (de)coding.
|
| |
| void | SetTransformFilter (unsigned int wf_idx) |
| | Set the wavelet filter used for picture (de)coding.
|
| |
| void | SetTransformDepth (unsigned int wd) |
| | Set the transform depth used for picture (de)coding and allocate for the code blocks array.
|
| |
| void | SetCodeBlockMode (unsigned int cb_mode) |
| | Set the multiple quantisers flag usedto picture (de)coding.
|
| |
| void | SetSpatialPartition (bool spatial_partition) |
| | Set the spatial partition flag usedto picture (de)coding.
|
| |
| void | SetCodeBlocks (unsigned int level, unsigned int hblocks, unsigned int vblocks) |
| | Set the number of code blocks for a particular level.
|
| |
| void | SetVideoFormat (const VideoFormat vd) |
| | Set the video format used for picture (de)coding.
|
| |
Parameters for the encoding process, derived from CodecParams.