Changeset 1400 in 3DVCSoftware for branches


Ignore:
Timestamp:
26 May 2016, 14:22:00 (8 years ago)
Author:
tech
Message:

Exchange copy right dates.

Location:
branches/HTM-16.1-dev
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-16.1-dev/doc/Doxyfile

    r1386 r1400  
    3939# control system is used.
    4040
    41 PROJECT_NUMBER         = HM-16.7
     41PROJECT_NUMBER         = HM-16.9
    4242
    4343# Using the PROJECT_BRIEF tag one can provide an optional one line description
  • branches/HTM-16.1-dev/doc/mainpage.h

    r1313 r1400  
    2525 * granted under this license. 
    2626 *
    27  * Copyright (c) 2010-2015, ITU/ISO/IEC
     27 * Copyright (c) 2010-2016, ITU/ISO/IEC
    2828 * All rights reserved.
    2929 *
  • branches/HTM-16.1-dev/doc/software-manual.tex

    r1386 r1400  
    191191\begin{abstract}
    192192This document is a user manual describing usage of reference software
    193 for the HEVC project. It applies to version 16.7
     193for the HEVC project. It applies to version 16.9
    194194of the software.
    195195\end{abstract}
     
    322322the final QP value to use for this frame.
    323323
     324\item[]\textbf{SliceCbQPOffset}: The slice-level Cb QP offset.
     325
     326\item[]\textbf{SliceCrQPOffset}: The slice-level Cr QP offset.
     327
    324328\item[]\textbf{QPFactor}: Weight used during rate distortion
    325329optimization. Higher values mean lower quality and less bits. Typical
     
    451455Type                &   P  &    B   &      B   &       B \\
    452456POC                 &   4  &    2   &      1   &       3 \\
    453 QPoffset            &   1  &    2   &      3   &       3 \\
     457QPOffset            &   1  &    2   &      3   &       3 \\
     458SliceCbQPOffset     &   0  &    0   &      0   &       0 \\
     459SliceCrQPOffset     &   0  &    0   &      0   &       0 \\
    454460QPfactor            & 0.5  &  0.5   &    0.5   &     0.5 \\
    455461tcOffsetDiv2        &   0  &    1   &      2   &       2 \\ 
     
    476482
    477483\begin{verbatim}
    478 Frame1: P 4 1 0.5 0 0 0 1 1 -4 0
    479 Frame2: B 2 2 0.5 1 0 1 1 2 -2 2 1 0 2 2 1 1
    480 Frame3: B 1 3 0.5 2 0 2 1 3 -1 1 3 1 0 1 3 1 1 1
    481 Frame4: B 3 3 0.5 2 0 2 1 2 -1 1 1 0 -2 4 0 1 1 0
     484Frame1: P 4 1 0 0 0.5 0 0 0 1 1 -4 0
     485Frame2: B 2 2 0 0 0.5 1 0 1 1 2 -2 2 1 0 2 2 1 1
     486Frame3: B 1 3 0 0 0.5 2 0 2 1 3 -1 1 3 1 0 1 3 1 1 1
     487Frame4: B 3 3 0 0 0.5 2 0 2 1 2 -1 1 1 0 -2 4 0 1 1 0
    482488\end{verbatim}
    483489
     
    760766%\ShortOption{-f} &
    761767\Default{0} &
    762 Specifies the number of frames to be encoded. When 0, all frames are coded.
     768Specifies the number of frames to be encoded (see note regarding TemporalSubsampleRatio). When 0, all frames are coded.
     769\\
     770
     771\Option{TemporalSubsampleRatio (-ts)} &
     772%\ShortOption{-fs} &
     773\Default{1} &
     774Temporally subsamples the input video sequence. A value of $N$ will skip $(N-1)$ frames of input video after each coded input video frame. Note the FramesToBeEncoded does not account for the temporal skipping of frames, which will reduce the number of frames encoded accordingly. The reported bit rates will be reduced and VUI information is scaled so as to present the video at the correct speed. The minimum and default value is 1.
    763775\\
    764776
     
    12211233\\
    12221234
     1235\Option{SliceChromaQPOffsetPeriodicity} &
     1236\Default{0} &
     1237Defines the periodicity for inter slices that use the slice-level chroma QP offsets, as defined by SliceCbQpOffsetIntraOrPeriodic and SliceCrQpOffsetIntraOrPeriodic. A value of 0 disables the periodicity. It is intended to be used in low-delay configurations where an regular intra period is not defined.
     1238\\
     1239
     1240\Option{SliceCbQpOffsetIntraOrPeriodic}%
     1241\Option{SliceCrQpOffsetIntraOrPeriodic} &
     1242\Default{0} &
     1243Defines the slice-level QP offset to be used for intra slices, or once every 'SliceChromaQPOffsetPeriodicity' pictures.
     1244\\
     1245
    12231246\Option{MaxCuDQPDepth (-dqd)} &
    12241247%\ShortOption{\None} &
     
    14791502\Option{DeblockingFilterMetric}&
    14801503%\ShortOption{\None}&
    1481 \Default{false}&
    1482 Enables or disables the use of a deblocking filter metric to evaluate the suitability of deblocking. If enabled then
    1483 LoopFilterOffsetInPPS and LoopFilterDisable must be 0.
     1504\Default{0}&
     1505Specifies the use of a deblocking filter metric to evaluate the suitability of deblocking. If non-zero then
     1506LoopFilterOffsetInPPS and LoopFilterDisable must be 0. Currently excepted values are 0, 1 and 2.
    14841507\\
    14851508
     
    15351558Enables or disables SAO parameter estimation using non-deblocked pixels
    15361559for LCU bottom and right boundary areas.
     1560\\
     1561
     1562\Option{SAOResetEncoderStateAfterIRAP} &
     1563%\ShortOption{\None} &
     1564\Default{false} &
     1565When true, resets the encoder's SAO state after an IRAP (POC order).
    15371566\\
    15381567
  • branches/HTM-16.1-dev/source/Lib/TLibDecoder/TDecTop.h

    r1396 r1400  
    44 * granted under this license.
    55 *
    6  * Copyright (c) 2010-2015, ITU/ISO/IEC
     6 * Copyright (c) 2010-2016, ITU/ISO/IEC
    77 * All rights reserved.
    88 *
Note: See TracChangeset for help on using the changeset viewer.