Changeset 1400 in 3DVCSoftware
- Timestamp:
- 26 May 2016, 14:22:00 (8 years ago)
- Location:
- branches/HTM-16.1-dev
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-16.1-dev/doc/Doxyfile
r1386 r1400 39 39 # control system is used. 40 40 41 PROJECT_NUMBER = HM-16. 741 PROJECT_NUMBER = HM-16.9 42 42 43 43 # Using the PROJECT_BRIEF tag one can provide an optional one line description -
branches/HTM-16.1-dev/doc/mainpage.h
r1313 r1400 25 25 * granted under this license. 26 26 * 27 * Copyright (c) 2010-201 5, ITU/ISO/IEC27 * Copyright (c) 2010-2016, ITU/ISO/IEC 28 28 * All rights reserved. 29 29 * -
branches/HTM-16.1-dev/doc/software-manual.tex
r1386 r1400 191 191 \begin{abstract} 192 192 This document is a user manual describing usage of reference software 193 for the HEVC project. It applies to version 16. 7193 for the HEVC project. It applies to version 16.9 194 194 of the software. 195 195 \end{abstract} … … 322 322 the final QP value to use for this frame. 323 323 324 \item[]\textbf{SliceCbQPOffset}: The slice-level Cb QP offset. 325 326 \item[]\textbf{SliceCrQPOffset}: The slice-level Cr QP offset. 327 324 328 \item[]\textbf{QPFactor}: Weight used during rate distortion 325 329 optimization. Higher values mean lower quality and less bits. Typical … … 451 455 Type & P & B & B & B \\ 452 456 POC & 4 & 2 & 1 & 3 \\ 453 QPoffset & 1 & 2 & 3 & 3 \\ 457 QPOffset & 1 & 2 & 3 & 3 \\ 458 SliceCbQPOffset & 0 & 0 & 0 & 0 \\ 459 SliceCrQPOffset & 0 & 0 & 0 & 0 \\ 454 460 QPfactor & 0.5 & 0.5 & 0.5 & 0.5 \\ 455 461 tcOffsetDiv2 & 0 & 1 & 2 & 2 \\ … … 476 482 477 483 \begin{verbatim} 478 Frame1: P 4 1 0 .5 0 0 0 1 1 -4 0479 Frame2: B 2 2 0 .5 1 0 1 1 2 -2 2 1 0 2 2 1 1480 Frame3: B 1 3 0 .5 2 0 2 1 3 -1 1 3 1 0 1 3 1 1 1481 Frame4: B 3 3 0 .5 2 0 2 1 2 -1 1 1 0 -2 4 0 1 1 0484 Frame1: P 4 1 0 0 0.5 0 0 0 1 1 -4 0 485 Frame2: B 2 2 0 0 0.5 1 0 1 1 2 -2 2 1 0 2 2 1 1 486 Frame3: B 1 3 0 0 0.5 2 0 2 1 3 -1 1 3 1 0 1 3 1 1 1 487 Frame4: B 3 3 0 0 0.5 2 0 2 1 2 -1 1 1 0 -2 4 0 1 1 0 482 488 \end{verbatim} 483 489 … … 760 766 %\ShortOption{-f} & 761 767 \Default{0} & 762 Specifies the number of frames to be encoded. When 0, all frames are coded. 768 Specifies 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} & 774 Temporally 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. 763 775 \\ 764 776 … … 1221 1233 \\ 1222 1234 1235 \Option{SliceChromaQPOffsetPeriodicity} & 1236 \Default{0} & 1237 Defines 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} & 1243 Defines the slice-level QP offset to be used for intra slices, or once every 'SliceChromaQPOffsetPeriodicity' pictures. 1244 \\ 1245 1223 1246 \Option{MaxCuDQPDepth (-dqd)} & 1224 1247 %\ShortOption{\None} & … … 1479 1502 \Option{DeblockingFilterMetric}& 1480 1503 %\ShortOption{\None}& 1481 \Default{ false}&1482 Enables or disables the use of a deblocking filter metric to evaluate the suitability of deblocking. If enabledthen1483 LoopFilterOffsetInPPS and LoopFilterDisable must be 0. 1504 \Default{0}& 1505 Specifies the use of a deblocking filter metric to evaluate the suitability of deblocking. If non-zero then 1506 LoopFilterOffsetInPPS and LoopFilterDisable must be 0. Currently excepted values are 0, 1 and 2. 1484 1507 \\ 1485 1508 … … 1535 1558 Enables or disables SAO parameter estimation using non-deblocked pixels 1536 1559 for LCU bottom and right boundary areas. 1560 \\ 1561 1562 \Option{SAOResetEncoderStateAfterIRAP} & 1563 %\ShortOption{\None} & 1564 \Default{false} & 1565 When true, resets the encoder's SAO state after an IRAP (POC order). 1537 1566 \\ 1538 1567 -
branches/HTM-16.1-dev/source/Lib/TLibDecoder/TDecTop.h
r1396 r1400 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 5, ITU/ISO/IEC6 * Copyright (c) 2010-2016, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 *
Note: See TracChangeset for help on using the changeset viewer.