Internet-Draft | APV | September 2024 |
Lim, et al. | Expires 3 April 2025 | [Page] |
This document describes bitstream format of Advanced Professional Video and decoding process of it.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 3 April 2025.¶
Copyright (c) 2024 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
This document defines the bitstream formats and decoding process for Advanced Professional Video (APV) Codec. The APV codec is a professional video codec that was developed in response to the need for professional level high quality video recording and post production. The primary purpose of the APV codec is for use in professional video recording and editing workflows for various types of content.¶
The APV codec supports the following features:¶
Perceptually lossless video quality that is close to raw video quality¶
Low complexity and high throughput intra frame only coding without pixel domain prediction¶
Support for high bit-rates up to a few Gbps for 2K, 4K and 8K resolution content, enabled by a lightweight entropy coding scheme¶
Frame tiling for immersive content and for enabling parallel encoding and decoding¶
Support for various chroma sampling formats from 4:2:2 to 4:4:4, and bit depths from 10 to 16¶
Support for multiple decoding and re-encoding without severe visual quality degradation¶
access unit (AU): a collection of PBUs including various types of frames, metadata, filler, and access unit information, associated with a specific time¶
band: a defined set of constraints on the value of the maximum coded data rate of each level¶
block: MxN (M-column by N-row) array of samples, or an MxN array of transform coefficients¶
byte-aligned: a position in a bitstream that is an integer multiple of 8 bits from the position of the first bit in the bitstream¶
chroma: a sample array or single sample representing one of the two color difference signals related to the primary colors, represented by the symbols Cb and Cr in 4:2:2 or 4:4:4 color format¶
coded frame: a coded representation of a frame containing all macroblocks of the frame¶
coded representation: a data element as represented in its coded form¶
component: an array or a single sample from one of the three arrays (luma and two chroma) that compose a frame in 4:2:2, or 4:4:4 color format, or an array or a single sample from an array that compose a frame in 4:0:0 color format, or an array or a single sample from one of the four arrays that compose a frame in 4:4:4:4 color format.¶
decoded frame: a frame derived by decoding a coded frame¶
decoder: an embodiment of a decoding process¶
decoding process: a process specified that reads a bitstream and derives decoded frames from it¶
encoder: an embodiment of an encoding process¶
encoding process: a process that produces a bitstream conforming to this document¶
flag: a variable or single-bit syntax element that can take one of the two possible values: 0 and 1¶
frame: an array of luma samples and two corresponding arrays of chroma samples in 4:2:2, and 4:4:4 color format, or an array of samples in 4:0:0 color format, or four arrays of samples in 4:4:4:4 color format¶
level: a defined set of constraints on the values that may be taken by the syntax elements and variables of this document, or the value of a transform coefficient prior to scaling¶
luma: a sample array or single sample representing the monochrome signal related to the primary colors, represented by the symbol or subscript Y or L¶
macroblock (MB): a square block of luma samples and two corresponding blocks of chroma samples of a frame in 4:2:2 or 4:4:4 color format, or a sqaure block of samples of a frame in 4:0:0 color format, or a square block of four samples of a frame in 4:4:4:4 color format¶
partitioning: a division of a set into subsets such that each element of the set is in exactly one of the subsets¶
prediction: an embodiment of the prediction process¶
prediction process: use of a predictor to provide an estimate of the data element currently being decoded¶
predictor: a combination of specified values or previously decoded data elements used in the decoding process of subsequent data elements¶
primitive bitstream unit (PBU): a data structure to construct an access unit with frame and metadata¶
profile: a specified subset of the syntax of this document¶
quantization parameter (QP): a variable used by the decoding process for scaling of transform coefficient levels¶
raster scan: a mapping of a rectangular two-dimensional pattern to a one-dimensional pattern such that the first entries in the one-dimensional pattern are from the top row of the two-dimensional pattern scanned from left to right, followed by the second, third, etc., rows of the pattern each scanned from left to right¶
raw bitstream: an encapsulation of a sequence of access units where a field indicating the size of an access unit precedes each access units¶
source: a term used to describe the video material or some of its attributes before encoding process¶
syntax element: an element of data represented in the bitstream¶
syntax structure: zero or more syntax elements present together in the bitstream in a specified order¶
tile: a rectangular region of MBs within a particular tile column and a particular tile row in a frame¶
tile column: a rectangular region of MBs having a height equal to the height of the frame and width specified by syntax elements in the frame header¶
tile row: a rectangular region of MBs having a height specified by syntax elements in the frame header and a width equal to the width of the frame¶
tile scan: a specific sequential ordering of MBs partitioning a frame in which the MBs are ordered consecutively in MB raster scan in a tile and the tiles in a frame are ordered consecutively in a raster scan of the tiles of the frame¶
transform coefficient: a scalar quantity, considered to be in a frequency domain, that is associated with a particular one-dimensional or two-dimensional index¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119].¶
The operators and the order of precedence are the same as used in the C programming language [ISO9899], with the exception of the operators described in the Section 3.2.1 and Section 3.2.2¶
// : an integer division with rounding of the result toward zero. For example, 7//4 and -7//-4 are rounded to 1 and -7//4 and 7//-4 are rounded to -1¶
/ or div(x,y) : a division in mathematical equations where no truncation or rounding is intended¶
% : a modulus. x % y is a remainder of x divided by y¶
min(x,y) : the minimum value of the values x and y¶
max(x,y) : the maximum value of the values x and y¶
ceil(x) : the smallest integer value that is larger than or equal to x¶
clip(x,y,z) : clip(x,y,z)=max(x,min(z,y))¶
sum (i=x, y, f(i)) : a summation of f(i) with i taking all integer values from x up to and including y¶
log2(x) : the base-2 lograithm of x¶
& (bit-wise "and") : When operating on integer arguments, operates on a two's complement representation of the integer value. When operating on arguments with unequal bit depths, the bit depths are equalized by adding zeros in significant positions to the argument with lower bit depth.¶
| (bit-wise "or") : When operating on integer arguments, operates on a two's complement representation of the integer value. When operating on arguments with unequal bit depths, the bit depths are equalized by adding zeros in significant positions to the argument with lower bit depth.¶
x >> y : arithmetic right shift of a two's complement integer representation of x by y binary digits. This function is defined only for non-negative integer values of y. Bits shifted into the most significant bits (MSBs) as a result of the right shift have a value equal to the MSB of x prior to the shift operation.¶
x << y : arithmetic left shift of a two's complement integer representation of x by y binary digits. This function is defined only for non-negative integer values of y. Bits shifted into the least significant bits (LSBs) as a result of the left shift have a value equal to 0.¶
x = y..z¶
x takes on integer values starting from y to z, inclusive, with x, y, and z being integer numbers and z being greater than y.¶
When order of precedence is not indicated explicitly by use of parentheses, operations are evaluated in the following order.¶
Operations of a higher precedence are evaluated before any operation of a lower precedence. Table 1 specifies the precedence of operations from highest to lowest; operations closer to the top of the table indicates a higher precedence.¶
Operations of the same precedence are evaluated sequentially from left to right.¶
operations (with operands x, y, and z) |
---|
"x++", "x--" |
"!x", "-x" (as a unary prefix operator) |
x^y (power) |
"x * y", "x / y", "x // y", "x % y" |
"x + y", "x - y", "sum (i=x, y, f(i))" |
"x << y", "x >> y" |
"x < y", "x <= y", "x > y", "x >= y" |
"x == y", "x != y" |
"x & y" |
"x | y" |
"x && y" |
"x || y" |
"x ? y : z" |
"x..y" |
"x = y", "x += y", "x -= y" |
Each syntax element is described by its name in all lowercase letters and its type is provided next to the syntax code in each row. The decoding process behaves according to the value of the syntax element and to the values of previously decoded syntax elements.¶
In some cases, the syntax tables may use the values of other variables derived from syntax elements values. Such variables appear in the syntax tables, or text, named by a mixture of lower case and uppercase letters and without any underscore characters. Variables with names starting with an uppercase letter are derived for the decoding of the current syntax structure and all dependent syntax structures. Variables with names starting with an uppercase letter may be used in the decoding process for later syntax structures without mentioning the originating syntax structure of the variable. Variables with names starting with a lowercase letter are only used within the section in which they are derived.¶
Functions that specify properties of the current position in the bitstream are referred to as syntax functions. These functions are specified in Section 5.2 and assume the existence of a bitstream pointer with an indication of the position of the next bit to be read by the decoding process from the bitstream.¶
A one-dimensional array is referred to as a list. A two-dimensional array is referred to as a matrix. Arrays can either be syntax elements or variables. Square parentheses are used for the indexing of arrays. In reference to a visual depiction of a matrix, the first square bracket is used as a column (horizontal) index and the second square bracket is used as a row (vertical) index.¶
A specification of values of the entries in rows and columns of an array may be denoted by {{...}{...}}, where each inner pair of brackets specifies the values of the elements within a row in increasing column order and the rows are ordered in increasing row order. Thus, setting a matrix s equal to {{1 6}{4 9}} specifies that s[0][0] is set equal to 1, s[1][0] is set equal to 6, s[0][1] is set equal to 4, and s[1][1] is set equal to 9.¶
Binary notation is indicated by enclosing the string of bit values by single quote marks. For example, '01000001' represents an eight-bit string having only its second and its last bits (counted from the most to the least significant bit) equal to 1.¶
Hexadecimal notation, indicated by prefixing the hexadecimal number by "0x", may be used instead of binary notation when the number of bits is an integer multiple of 4. For example, 0x41 represents an eight-bit string having only its second and its last bits (counted from the most to the least significant bit) equal to 1.¶
A value equal to 0 represents a FALSE condition in a test statement. The value TRUE is represented by any value different from zero.¶
Processes are used to describe the decoding of syntax elements. A process has a separate specification and invoking. When invoking a process, the assignment of variables is specified as follows:¶
If the variables at the invoking and the process specification do not have the same name, the variables are explicitly assigned to lower case input or output variables of the process specification.¶
Otherwise (the variables at the invoking and the process specification have the same name), the assignment is implied.¶
In the specification of a process, a specific coding block may be referred to by the variable name having a value equal to the address of the specific coding block.¶
This section specifies the bitstream of the Advanced Professional Video (APV) Codec.¶
The raw bitstream format is a format consist with a sequence of AUs where the field indicating the size of access units precedes each of them. The raw bitstream format is specified in Section 10.2.¶
This section specifies the relationship between the source and the decoded frames that are the results of the decoding process.¶
The video source that is represented by the bitstream is a sequence of frames.¶
The source and decoded frames are each comprised of one or more sample arrays:¶
Monochrome (for example, Luma only)¶
Luma and two chroma (for example, YCbCr or YCgCo).¶
Green, blue, and red (GBR, also known as RGB).¶
Arrays representing other unspecified tri-stimulus color samplings (for example, YZX, also known as XYZ).¶
Arrays representing other unspecified four color sampings¶
For the convenience of notation and terminology in this document, the variables and terms associated with these arrays can be referred to as luma and chroma regardless of the actual color representation method in use.¶
The variables SubWidthC, SubHeightC and NumComp are specified in Table 2, depending on the chroma format sampling structure, which is specified through chroma_format_idc. Other values of chroma_format_idc, SubWidthC, SubHeightC and NumComp may be specified in the future.¶
chroma_format_idc | Chroma format | SubWidthC | SubHeightC | NumComp |
---|---|---|---|---|
0 | 4:0:0 | 1 | 1 | 1 |
1 | reserved | reserved | reserved | reserved |
2 | 4:2:2 | 2 | 1 | 3 |
3 | 4:4:4 | 1 | 1 | 3 |
4 | 4:4:4:4 | 1 | 1 | 4 |
5..7 | reserved | reserved | reserved | reserved |
In 4:0:0 sampling, there is only one sample array that can be considered as the luma array.¶
In 4:2:2 sampling, each of the two chroma arrays has the same height and half the width of the luma array.¶
In 4:4:4 sampling and 4:4:4:4 sampling, all the sample arrays have the same height and width as the luma array.¶
The number of bits necessary for the representation of each of the samples in the luma and chroma arrays in a video sequence is in the range of 10 to 16, inclusive.¶
When the value of chroma_format_idc is equal to 2, the chroma samples are co-sited with the corresponding luma samples and the nominal locations in a frame are as shown in Figure 1.¶
When the value of chroma_format_idc is equal to 3 or 4, for each frame, all the array samples are co-sited and the nominal locations in a frame are as shown in Figure 2.¶
The samples are processed in units of MBs. The variables MbWidth and MbHeight, which specify the width and height of the luma arrays for each MB, are defined as follows:¶
The variables MbWidthC and MbHeightC, which specify the width and height of the chroma arrays for each MB, are derived as follows:¶
This section specifies how a frame is partitioned into tiles.¶
A frame is divided into tiles. A tile is a group of MBs that cover a rectangular region of a frame and is processed independently of other tiles. Every tile has the same width and height, except possibly tiles at the right or bottom frame boundary when the frame width or height is not a multiple of the tile width or height, respectively. The tiles in a frame are scanned in raster order. Within a tile, the MBs are scanned in raster order. Each MB is comprised of one (MbWidth) x (MbHeight) luma array and zero, two, or three corresponding chroma sample arrays.¶
For example, a frame may be divided into 6 tiles (3 tile columns and 2 tile rows) as shown in Figure 3: Frame with 10 by 8 MBs that is partitioned into 6 tiles. In this example, the tile size is defined as 4 column MBs and 4 row MBs. In case of the third and sixth tiles (in raster order), the tile size is 2 column MBs and 4 row MBs since the frame width is not multiple of the tile width.¶
The following divisions of processing elements form spatial or component-wise partitioning:¶
the division of each frame into components;¶
the division of each frame into tile columns;¶
the division of each frame into tile rows;¶
the division of each tile column into tiles;¶
the division of each tile row into tiles;¶
the division of each tile into color components;¶
the division of each tile into MBs;¶
the division of each MB into blocks.¶
Inputs to this process are:¶
a variable blkWidth specifying the width of a block, and¶
a variable blkHeight specifying the height of a block.¶
Output of this process is the array zigZagScan[sPos].¶
The array index sPos specifies the scan position ranging from 0 to (blkWidth * blkHeight)-1. Depending on the value of blkWidth and blkHeight, the array zigZagScan is derived as follows:¶
Inputs to this process are:¶
a variable blkWidth specifying the width of a block, and¶
a variable blkHeight specifying the height of a block.¶
Output of this process is the array inverseScan[rPos].¶
The array index rPos specifies the raster scan position ranging from 0 to (blkWidth * blkHeight)-1. Depending on the value of blkWidth and blkHeight, the array inverseScan is derived as follows:¶
The variable forwardScan is derived by invoking zig-zag scan order 1D array initialization process as specified in Section 4.4.1 with input parameters blkWidth and blkHeight.¶
The output variable inverseScan is derived as follows:¶
The syntax tables specify a superset of the syntax of all allowed bitstreams. Note that an actual decoder must implement some means for identifying entry points into the bitstream and some means to identify and handle non-conforming bitstreams. The methods for identifying and handling errors and other such situations are not specified in this document.¶
The APV bitstream is described in this document using syntax code based on the C programming language [ISO9899] and uses its if/else, while, and for keywords as well as functions defined within this document.¶
The syntax table in syntax code is presented in a two-column format such as shown in Figure 6. In this form, the type column provides a type referenced in that same line of syntax code by using syntax elements processing function defined in Section 5.2.5.¶
The functions presented in this document are used in the syntactical description. These functions are expressed in terms of the value of a bitstream pointer that indicates the position of the next bit to be read by the decoding process from the bitstream.¶
If the current position in the tileIdx-th tile() syntax structure is less than TileSize[ tileIdx ] in bytes from the beginning of the tile_header() syntax structure of the tileIdx-th tile, the return value of more_data_in_tile() is equal to TURE.¶
Otherwise, the return value of more_data_in_tile() is equal to FALSE.¶
This function provides the next bits in the bitstream for comparison purposes, without advancing the bitstream pointer. Provides a look at the next n bits in the bitstream with n being its argument.¶
This function indicates to read the next n bits from the bitstream and advances the bitstream pointer by n bit positions. When n is equal to 0, read_bits(n) is specified to return a value equal to 0 and to not advance the bitstream pointer.¶
b(8): byte having any pattern of bit string (8 bits). The parsing process for this descriptor is specified by the return value of the function read_bits(8).¶
f(n): fixed-pattern bit string using n bits written (from left to right) with the left bit first. The parsing process for this descriptor is specified by the return value of the function read_bits(n).¶
u(n): unsigned integer using n bits. The parsing process for this descriptor is specified by the return value of the function read_bits(n) interpreted as a binary representation of an unsigned integer with most significant bit written first.¶
h(v): variable-length entropy coded syntax element with the left bit first. The parsing process for this descriptor is specified in Section 7.1.¶
pbu_size¶
indicates the size of a primitive bitstream unit in bytes. The value of 0 for pbu_size is prohibited and the value of 0xFFFFFFFF for pbu_size is reserved for future use.¶
Note: An AU consists of one "primary frame", zero or more "non-primary frame"s, zero or more "alpha frame"s, zero or more "depth frame"s, zero or more "preview frame"s, zero or more "metadata"s, and zero of more "filler"s.¶
pbu_type¶
indicates the type of data in a PBU listed in Table 3. Other values of pbu_type are reserved for future use.¶
pbu_type | meaning | notes |
---|---|---|
0 | reserved | |
1 | primary frame | |
2 | non-primary frame | |
3...24 | reserved | |
25 | preview frame | |
26 | depth frame | |
27 | alpha frame | |
28...64 | reserved | |
65 | access unit information | |
66 | metadata | |
67 | filler | |
68...255 | reserved |
Note: A PBU with pbu_type equal to 65 (access unit information) may happen in an AU. If it exists, it should be the first PBU in an AU, and it can be ignored by a decoder.¶
group_id¶
indicates the identifier to associate coded frame with metadata. More than two frame can have same group_id in a single AU. A primary frame and a non-primary frame MUST have different group_id value and two non-primary frames MUST have different group_id value. When the value of group_id is equal to 0, the value of pbu_type MUST be greater than 64. The value of 0xFFFF for group_id is reserved for future use.¶
reserved_zero_8bits¶
MUST be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_8bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1 MUST ignore PBU with values of reserved_zero_8bits greater than 0.¶
tile_size_minus1[tileIdx]¶
plus 1 indicates the size in bytes of tileIdx-th tile data (i.e., tile(tileIdx)) in raster order in a frame.¶
The variable TileSize[ tileIdx ] is set equal to tile_size_minus1[ tildIdx ] + 1¶
reserved_zero_8bits¶
MUST be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_8bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1 MUST ignore PBU with values of reserved_zero_8bits greater than 0.¶
color_description_present_flag equal to 1¶
specifies that color_primaries, transfer_characteristics and matrix_coefficients are present. color_description_present_flag equal to 0 specifies that color_primaries, transfer_characteristics and matrix_coefficients are not present.¶
color_primaries¶
MUST have the semantics of ColourPrimaries as specified in [ISO23091-2]. When the color_primaries syntax element is not present, the value of color_primaries is inferred to be equal to 2.¶
transfer_characteristics¶
MUST have the semantics of TransferCharacteristics as specified in [ISO23091-2]. When the transfer_characteristics syntax element is not present, the value of transfer_characteristics is inferred to be equal to 2.¶
matrix_coefficients¶
MUST have the semantics of MatrixCoefficients as specified in [ISO23091-2]. When the matrix_coefficients syntax element is not present, the value of matrix_coefficients is inferred to be equal to 2.¶
use_q_matrix¶
equal to 1 specifies that the quantization matrices are present. use_q_matrix equal to 0 specifies that the quantization matrices are not present.¶
reserved_zero_8bits¶
MUST be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_8bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1 MUST ignore PBU with values of reserved_zero_8bits greater than 0.¶
profile_idc¶
indicates a profile to which the coded frame conforms to as specified in Section 10.1. Bitstreams shall not contain values of profiles_idc other than those specified in Section 10.1. Other values of profile_idc are reserved for future use.¶
level_idc¶
indicates a level to which the coded frame conforms to as specified in Section 10.1. Bitstreams shall not contain values of level_idc other than those specified in Section 10.1. Other values of level_idc are reserved for future use.¶
band_idc¶
specifies a maximum coded data rate of level_idc as specified in Section 10.1. Bitstreams shall not contain values of band_idc other than those specified in Section 10.1. The value of band_idc MUST be in the range of 0 to 3. Other values of band_idc are reserved for future use.¶
reserved_zero_5bits¶
shall be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_5bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1. MUST ignore PBU with values of reserved_zero_5bits greater than 0.¶
frame_width_minus1¶
plus 1 specifies the width of frame in units of luma samples. frame_width_minus1 plus 1 MUST be as multiple of 2 when chroma_format_idc has a value of 2.¶
frame_height_minus1¶
plus 1 specifies the height of frame in units of luma samples.¶
The variables FrameWidthInMbsY, FrameHeightInMbsY, FrameWidthInSamplesY, FrameHeightInSamplesY, FrameWidthInSamplesC, FrameHeightInSamplesC, FrameSizeInMbsY, and FrameSizeInSamplesY are derived as follows:¶
FrameWidthInSamplesY = frame_width_minus1 + 1¶
FrameHeightInSamplesY = frame_height_minus1 + 1¶
FrameWidthInMbsY = ceil(FrameWidthInSamplesY / MbWidth)¶
FrameHeightInMbsY = ceil(FrameHeightInSamplesY / MbHeight)¶
FrameWidthInSamplesC = FrameWidthInSamplesY // SubWidthC¶
FrameHeightInSamplesC = FrameHeightInSamplesY // SubHeightC¶
FrameSizeInMbsY = FrameWidthInMbsY * FrameHeightInMbsY¶
FrameSizeInSamplesY = FrameWidthInSamplesY * FrameHeightInSamplesY¶
chroma_format_idc¶
specifies the chroma sampling relative to the luma sampling as specified in Table 2 The value of chroma_format_idc MUST be 0, 2, 3, or 4. Other values of chroma_format_idc are reserved for future use.¶
bit_depth_minus8¶
specifies the bit depth of the samples. The variables BitDepth and QpBdOffset are derived as follows:¶
BitDepth = bit_depth_minus8 + 8¶
QpBdOffset = bit_depth_minus8 * 6¶
bit_depth_minus8¶
MUST be in the range of 2 to 8, inclusive. Other values of bit_depth_minus8 are reserved for future use.¶
capture_time_distance¶
indicates time difference between the capture time of the previous frame and the current frame if there has been any frame preceding this frame.¶
reserved_zero_8bits¶
MUST be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_8bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1 MUST ignore PBU with values of reserved_zero_8bits greater than 0.¶
q_matrix_minus1[cIdx][x0][y0]¶
plus 1 specifies a scaling value in the quantization matrices. When q_matrix_minus1[cIdx][x0][y0] is not present, it is inferred to be equal to 15. The array index cIdx specifies an indicator for the color component; when chroma_format_idc is equal to 2 or 3, 0 for Y, 1 for Cb and 2 for Cr.¶
The quantization matrix, QMatrix[cIdx][x0][y0], is derived as follows:¶
QMatrix[cIdx][x0][y0] = q_matrix_minus1[cIdx][x0][y0] + 1¶
tile_width_in_mbs_minus1¶
plus 1 specifies the width of a tile in units of MBs.¶
tile_height_in_mbs_minus1¶
plus 1 specifies the height of a tile in units of MBs.¶
tile_size_present_in_fh_flag¶
equal to 1 specifies that tile_size_in_fh_minus1[tileIdx] is present in Frame header. tile_size_present_in_fh_flag equal to 0 specifies that tile_size_in_fh_minus1[tileIdx] is not present in Frame header.¶
tile_size_in_fh_minus1[tileIdx]¶
plus 1 indicates the size in bytes of tileIdx-th tile data in raster order in a frame. The value of tile_size_in_fh_minus1[tileIdx] MUST have the same value with tile_size_minus[tileIdx]. When it is not present, the value of tile_size_in_fh_minus1[tileIdx] is inferred to be equal to tile_size_minus1[tileIdx].¶
num_frames¶
indicates the number of frames contained in the current AU.¶
pbu_type¶
has the same semantics as pbu_type in the pbu_header() syntax. Note: The value of pbu_type MUST be 1, 2, 25, 26, or 27 in bitstreams conforming to this version of document.¶
group_id¶
has the same semantics as group_id in the pbu_header() syntax.¶
reserved_zero_8bits¶
MUST be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_8bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1 MUST ignore PBU with values of reserved_zero_8bits greater than 0.¶
metadata_size¶
specifies the size of metadata before filler() in the current PBU.¶
ff_byte¶
is a byte equal to 0xFF.¶
metadata_payload_type¶
specifies the last byte of the payload type of a metadata¶
metadata_payload_size¶
specifies the last byte of the payload size of a metadata¶
Syntax and semantics of metadata_payload() are specified in Section 10.3.¶
tile_header_size¶
indicates the size of the tile header in bytes.¶
tile_index¶
specifies the tile index in raster order in a frame. tile_index MUST have the same value with tileIdx.¶
tile_data_size_minus1[i]¶
plus 1 indicates the size of i-th color component data in a tile in bytes. The array index i specifies an indicator for the color component; when chroma_format_idc is equal to 2 or 3, 0 for Y, 1 for Cb and 2 for Cr¶
tile_qp[i]¶
specify the quantization parameter value for i-th color component. The array index i specifies an indicator for the color component; when chroma_format_idc is equal to 2 or 3, 0 for Y, 1 for Cb and 2 for Cr. Qp[i] to be used for the MBs in the tile are derived as follows¶
Qp[i] = tile_qp[i] - QpBdOffset¶
Qp[i] MUST be in the range of -QpBdOffset to 51, inclusive.¶
reserved_zero_8bits¶
MUST be equal to 0 in bitstreams conforming to this version of document. Values of reserved_zero_8bits greater than 0 are reserved for future use. Decoders conforming to a profile specified in Section 10.1 MUST ignore PBU with values of reserved_zero_8bits greater than 0.¶
abs_dc_coeff_diff¶
specifies the absolute value of the difference between the current DC transform coefficient level and PrevDC.¶
sign_dc_coeff_diff¶
specifies the sign of the difference between the current DC transform coefficient level and PrevDC. sign_dc_coeff_diff equal to 0 specifies that the difference has a positive value. sign_dc_coeff_diff equal to 1 specifies that the difference has a negative value.¶
The transform coefficients are represented by the arrays TransCoeff[cIdx][x0][y0]. The array indices x0, y0 specify the location (x0, y0) relative to the top-left sample for each component of the frame. The array index cIdx specifies an indicator for the color component; when chroma_format_idc is equal to 2 or 3, 0 for Y, 1 for Cb and 2 for Cr. The value of TransCoeff[cIdx][x0][y0] MUST be in the range of -32768 to 32767, inclusive.¶
coeff_zero_run¶
specifies the number of zero-valued transform coefficient levels that are located before the position of the next non-zero transform coefficient level in a scan of transform coefficient levels.¶
abs_ac_coeff_minus1¶
plus 1 specifies the absolute value of an AC transform coefficient level at the given scanning position.¶
sign_ac_coeff¶
specifies the sign of an AC transform coefficient level for the given scanning position. sign_ac_coeff equal to 0 specifies that the corresponding AC transform coefficient level has a positive value. sign_ac_coeff equal to 1 specifies that the corresponding AC transform coefficient level has a negative value.¶
The array ScanOrder[sPos] specifies the mapping of the zig-zag scan position sPos, ranging from 0 to (1 << log2BlkWidth) * (1 << log2BlkHeight) - 1, inclusive, to a raster scan position rPos. ScanOrder is derived by invoking Section 4.4.1 with input parameters blkWidth equal to (1 << log2BlkWidth) and blkHeight equal to (1 << log2BlkHeight).¶
alignment_bit_equal_to_zero¶
MUST be equal to 0.¶
This process is invoked to obtain a decoded frame from a bitstream. Input to this process is a bitstream of a coded frame. Output of this process is a decoded frame.¶
The decoding process operates as follows for the current frame:¶
The syntax structure for a coded frame is parsed to obtain the parsed syntax structures.¶
The processes in Section 6.1, Section 6.2 and Section 6.3 specify the decoding processes using syntax elements in all syntax structures. It is the requirement of bitstream conformance that the coded tiles of the frame MUST contain tile data for every MB of the frame, such that the division of the frame into tiles and the division of the tiles into MBs each forms a partitioning of the frame.¶
After all the tiles in the current frame have been decoded, the decoded frame is cropped using the cropping rectangle if FrameWidthInSamplesY is not equal to FrameWidthInMbY * MbWidth or FrameHeightInSamplesY is not equal to FrameHeightInMbY * MbHeight.¶
The cropping rectangle, which specifies the samples of a frame that are output, is derived as follows.¶
The cropping rectangle contains the luma samples with horizontal frame coordinates from 0 to FrameWidthInSampleY - 1 and vertical frame coordinates from 0 to FrameHeightInSampleY - 1, inclusive.¶
The cropping rectangle contains the two chroma arrays having frame coordinates (x//SubWidthC, y//SubHeightC), where (x,y) are the frame coordinates of the specified luma samples.¶
This process is invoked for each MB.¶
Input to this process is a luma location (xMb, yMb) specifying the top-left sample of the current luma MB relative to the top left luma sample of the current frame. Outputs of this process are the reconstructed samples of all the NumComp color components (when chorma_format_idc is equal to 2 or 3, Y, Cb, and Cr) for the current MB.¶
The following steps applies:¶
Let recSamples[0] be a (MbWidth)x(MbHeight) array of the reconstructed samples of the first color component (when chroma_format_idc is equal to 2 or 3, Y).¶
The block reconstruction process as specified in Section 6.2 is invoked with the luma location (xMb, yMb), the variable nBlkW set equal to MbWidth, the variable nBlkH set equal to MbHeight, the variable cIdx set equal to 0, and the (MbWidth)x(MbHeight) array recSamples[0] as inputs, the output is a modified version of the (MbWidth)x(MbHeight) array resSamples[0], which is the reconstructed samples of the first color component for the current MB.¶
When chroma_format_idc is not equal to 0, Let recSamples[1] be a (MbWidthC)x(MbHeightC) array of the reconstructed samples of the second color component (when chroma_format_idc is equal to 2 or 3, Cb).¶
When chroma_format_idc is not equal to 0, The block reconstruction process as specified in Section 6.2 is invoked with the luma location (xMb, yMb), the variable nBlkW set equal to MbWidthC, the variable nBlkH set equal to MbHeightC, the variable cIdx set equal to 1, and the (MbWidthC)x(MbHeightC) array recSamples[1] as inputs, the output is a modified version of the (MbWidthC)x(MbHeightC) array recSamples[1], which is the reconstructed samples of the second color component for the current MB.¶
When chroma_format_idc is not equal to 0, Let recSamples[2] be a (MbWidthC)x(MbHeightC) array of the reconstructed samples of the third color component(when chroma_format_idc is equal to 2 or 3, Cr).¶
When chroma_format_idc is not equal to 0, The block reconstruction process as specified in Section 6.2 is invoked with the luma location (xMb, yMb), the variable nBlkW set equal to MbWidthC, the variable nBlkH set equal to MbHeightC, the variable cIdx set equal to 2, and the (MbWidthC)x(MbHeightC) array recSamples[2] as inputs, the output is a modified version of the (MbWidthC)x(MbHeightC) array recSamples[2], which is the reconstructed samples of the third color component for the current MB.¶
When chroma_format_idc is equal to 4, let recSamples[3] be a (MbWidthC)x(MbHeightC) array of the reconstructed samples of the fourth color component.¶
When chroma_format_idc is equal to 4, the block reconstruction process as specified in Section 6.2 is invoked with the luma location (xMb, yMb), the variable nBlkW set equal to MbWidthC, the variable nBlkH set equal to MbHeightC, the variable cIdx set equal to 3, and the (MbWidthC)x(MbHeightC) array recSamples[3] as inputs, the output is a modified version of the (MbWidthC)x(MbHeightC) array recSamples[3], which is the reconstructed samples of the fourth color component for the current MB.¶
Inputs to this process are:¶
a luma location (xMb, yMb) specifying the top-left sample of the current MB relative to the top left luma sample of the current frame,¶
two variables nBlkW and nBlkH specifying the width and the height of the current block,¶
a variable cIdx specifying the color component of the current block, and¶
an (nBlkW)x(nBlkH) array recSamples of reconstructed block.¶
Output of this process is a modified version of the (nBlkW)x(nBlkH) array recSamples of reconstructed samples.¶
The following applies:¶
The variables numBlkX and numBlkY are derived as follows:¶
numBlkX = nBlkW // TrSize¶
numBlkY = nBlkH // TrSize¶
For yIdx = 0..numBlkY - 1, the following applies:¶
For xIdx = 0..numBlkX - 1, the following applies:¶
The variables xBlk and yBlk are derived as follows:¶
xBlk = xMb // (cIdx==0? 1: SubWidthC) + xIdx*TrSize¶
yBlk = yMb // (cIdx==0? 1: SubHeightC) + yIdx*TrSize¶
The scaling and transformation process as specified in Section 6.3 is invoked with the location (xBlk, yBlk), the variable cIdx set equal to cIdx, the transform width nBlkW set equal to TrSize and the transform height nBlkH set equal to TrSize as inputs, and the output is a (TrSize)x(TrSize) array r of reconstructed block.¶
The (TrSize)x(TrSize) array recSamples is modified as follows:¶
recSamples[(xIdx * TrSize) + i, (yIdx * TrSize) + j] = r[i,j], with i=0..TrSize-1, j=0..TrSize-1¶
Inputs to this process are:¶
a location (xBlkY, yBlkY) of the current color component specifying the top-left sample of the current block relative to the top-left sample of the current frame,¶
a variable cIdx specifying the color component of the current block,¶
a variable nBlkW specifying the width of the current block, and¶
a variable nBlkH specifying the height of the current block.¶
Output of this process is the (nBlkW)x(nBlkH) array of reconstructed samples r with elements r[x][y].¶
The quantization parameter qP is derived as follows:¶
qP = Qp[cIdx] + QpBdOffset¶
The (nBlKW)x(nBlkH) array of reconstructed samples r is derived as follows:¶
The scaling process for transform coefficients as specified in Section 6.3.1 is invoked with the block location (xBlkY, yBlkY), the block width nBlkW and the block height nBlkH, the color component variable cIdx, and the quantization parameter qP as inputs, and the output is an (nBlkW)x(nBlkH) array of scaled transform coefficients d.¶
The transformation process for scaled transform coefficients as specified in Section 6.3.2 is invoked with the block location (xBlkY, yBlkY), the block width nBlkW and the block height nBlkH, the color component variable cIdx, and the (nBlkW)x(nBlkH) array of scaled transform coefficients d as inputs, and the output is an (nBlkW)x(nBlkH) array of reconstructed samples r.¶
The variable bdShift is derived as follows:¶
bdShift = 20 - BitDepth¶
The reconstructed sample values r[x][y] with x = 0..nBlkW - 1, y = 0..nBlkH - 1 are modified as follows:¶
r[x][y] = clip(0, (1 << BitDepth)-1, ((r[x][y]+(1 << (bdShift-1)))>>bdShift) + (1 << (BitDepth-1)))¶
Inputs to this process are:¶
a location (xBlkY, yBlkY) of the current color component specifying the top-left sample of the current block relative to the top-left sample of the current frame,¶
a variable nBlkW specifying the width of the current block,¶
a variable nBlkH specifying the height of the current block,¶
a variable cIdx specifying the color component of the current block, and¶
a variable qP specifying the quantization parameter.¶
Output of this process is the (nBlkW)x(nBlkH) array d of scaled transform coefficients with elements d[x][y].¶
The variable bdShift is derived as follows:¶
bdShift = BitDepth + ((log2(nBlkW) + log2(nBlkH)) // 2) - 5¶
The list levelScale[] is specified as follows:¶
levelScale[k] = {40, 45, 51, 57, 64, 71} with k = 0..5.¶
For the derivation of the scaled transform coefficients d[x][y] with x = 0..nBlkW - 1, y = 0..nBlkH - 1, the following applies:¶
The scaled transform coefficient d[x][y] is derived as follows:¶
d[x][y] = clip(-32768, 32767, ((TransCoeff[cIdx][xBlkY][yBlkY] * QMatrix[cIdx][x][y] * levelScale[qP % 6] << (qP//6)) + (1 << (bdShift-1)) >> bdShift))¶
Inputs to this process are:¶
a location (xBlkY, yBlkY) of the current color component specifying the top-left sample of the current block relative to the top-left sample of the current frame,¶
a variable nBlkW specifying the width of the current block,¶
a variable nBlkH specifying the height of the current block, and¶
an (nBlkW)x(nBlkH) array d of scaled transform coefficients with elements d[ x ][ y ].¶
Output of this process is the (nBlkW)x(nBlkH) array r of reconstructed samples with elements r[x][y].¶
The (nBlkW)x(nBlkH) array r of reconstructed samples is derived as follows:¶
Each (vertical) column of scaled transform coefficients d[x][y] with x = 0..nBlkW - 1, y = 0..nBlkH - 1 is transformed to e[x][y] with x = 0..nBlkW - 1, y = 0..nBlkH - 1 by invoking the one- dimensional transformation process as specified in Section 6.3.2.2 for each column x = 0..nBlkW - 1 with the size of the transform block nBlkH, and the list d[x][y] with y = 0..nBlkH - 1 as inputs, and the output is the list e[x][y] with y = 0..nBlkH - 1.¶
The following applies:¶
g[x][y] = (e[x][y] + 64) >> 7¶
Each (horizontal) row of the resulting array g[x][y] with x = 0..nBlkW - 1, y = 0..nBlkH - 1 is transformed to r[x][y] with x = 0..nBlkW - 1, y = 0..nBlkH - 1 by invoking the one-dimensional transformation process as specified in Section 6.3.2.2 for each row y = 0..nBlkH - 1 with the size of the transform block nBlkW, and the list g[x][y] with x = 0..nBlkW - 1 as inputs, and the output is the list r[x][y] with x = 0..nBlkW - 1.¶
Inputs to this process are:¶
a variable nTbS specifying the sample size of scaled transform coefficients, and¶
a list of scaled transform coefficients x with elements x[j], with j = 0..(nTbS - 1).¶
Output of this process is the list of transformed samples y with elements y[i], with i = 0..(nTbS - 1).¶
The transformation matrix derivation process as specified in Section 6.3.2.3. invoked with the transform size nTbS as input, and the transformation matrix transMatrix as output.¶
The list of transformed samples y[i] with i = 0..(nTbS - 1) is derived as follows:¶
y[i] = sum(j = 0, nTbS - 1, transMatrix[i][j] * x[j])¶
Input to this process is a variable nTbS specifying the horizontal sample size of scaled transform coefficients.¶
Output of this process is the transformation matrix transMatrix.¶
The transformation matrix transMatrix is derived based on nTbs as follows:¶
If nTbS is equal to 8, the following applies:¶
This process is invoked for the parsing of syntax elements with descriptor h(v) in Section 5.3.15 and Section 5.3.16.¶
Inputs to this process are bits for the abs_dc_coeff_diff syntax element. Output of this process is a value of the abs_dc_coeff_diff syntax element. The variable kParam is derived as follows:¶
kParam = clip(0, 5, PrevDcDiff >> 1)¶
The value of syntax element abs_dc_coeff_diff is obtained by invoking the parsing process for variable length codes as specified in Section 7.1.4 with kParam.¶
Inputs to this process are bits for the coeff_zero_run syntax element.¶
Output of this process is a value of the coeff_zero_run syntax element.¶
The variable kParam is derived as follows:¶
kParam = clip(0, 2, PrevRun >> 2)¶
The value of syntax element coeff_zero_run is obtained by invoking the parsing process for variable length codes as specified in Section 7.1.4 with kParam.¶
Inputs to this process are bits for the abs_ac_coeff_minus1 syntax element.¶
Output of this process is a value of the abs_ac_coeff_minus1 syntax element.¶
The variable kParam is derived as follows:¶
kParam = clip(0, 4, PrevLevel >> 2)¶
The value of syntax element abs_ac_coeff_minus1 is obtained by invoking the parsing process for variable length codes as specified in Section 7.1.4 with kParam.¶
Input to this process is kParam.¶
Output of this process is a value, symbolValue, of a syntax element.¶
The symbolValue is derived as follows:¶
where the value returned from read_bits(n) is interpreted as a binary representation of a n-bit unsigned integer with most significant bit written first.¶
This process specifies the code generation process for syntax elements with descriptor h(v).¶
Input to this process is a symbol value of the abs_dc_coeff_diff syntax element.¶
Output of this process is a codeword of the abs_dc_coeff_diff syntax element.¶
The variable kParam is derived as follows:¶
kParam = clip(0, 5, PrevDcDiff >> 1)¶
The codeword of syntax element abs_dc_coeff_diff is obtained by invoking the generation process for variable length codes as specified in Section 7.2.4 with the symbol value symbolValue and kParam.¶
Input to this process is a symbol value of the coeff_zero_run syntax element.¶
Output of this process is a codeword of the coeff_zero_run syntax element.¶
The variable kParam is derived as follows:¶
kParam = clip(0, 2, PrevRun >> 2)¶
The codeword of syntax element coeff_zero_run is obtained by invoking the generation process for variable length codes as specified in Section 7.2.4 with the symbol value symbolValue and kParam.¶
Input to this process is a symbol value of the abs_ac_coeff_minus1 syntax element.¶
Output of this process is a codeword of the abs_ac_coeff_minus1 syntax element.¶
The variable kParam is derived as follows:¶
kParam = clip(0, 4, PrevLevel >> 2)¶
The codeword of syntax element abs_ac_coeff_minus1 is obtained by invoking the generation for variable length codes as specified in Section 7.2.4 with the symbol value symbolValue and kParam.¶
Inputs to this process are symbolVal and kParam¶
Output of this process is a codeword of a syntax element.¶
The codeword is derived as follows:¶
where a codeword generated from put_bits(v, n) is interpreted as a binary representation of an n-bit unsigned integer value v with most significant bit written first.¶
APV decoder should take appropriate security considerations into account. A decoder MUST be robust against any non-compliant or malicious payloads.¶
This document has no actions for IANA.¶
Profiles, levels and bands specify restrictions on a coded frame and hence limits on the capabilities needed to decode the coded frame. Profiles, levels and bands may also be used to indicate interoperability points between individual decoder implementations.¶
NOTE: This document does not include individually selectable "options" at the decoder, as this would increase interoperability difficulties. Each profile specifies a subset of algorithmic features and limits that MUST be supported by all decoders conforming to that profile.¶
NOTE: Encoders are not required to make use of any particular subset of features supported in a profile.¶
Each level with a band specifies a set of limits on the values that may be taken by the syntax elements of this document. The same set of level and band definitions is used with all profiles, but individual implementations may support a different level for each supported profile. For any given profile, a level with a band generally corresponds to a particular decoder processing load and memory capability.¶
Capabilities of video decoders conforming to this document are specified in terms of the ability to decode video streams conforming to the constraints of profiles, levels and bands specified in this section. When expressing the capabilities of a decoder for a specified profile, the level and the band supported for that profile should also be expressed.¶
Specific values are specified in this section for the syntax elements profile_idc, level_idc and band_idc. All other values of profile_idc, level_idc and band_idc are reserved for future use.¶
NOTE: Decoders must not infer that a reserved value of profile_idc between the values specified in this document indicates intermediate capabilities between the specified profiles, as there are no restrictions on the method to be chosen for the use of such future reserved values. However, decoders must infer that a reserved value of level_idc and a reserved value of band_idc between the values specified in this document indicates intermediate capabilities between the specified levels.¶
All constraints for a coded frame that are specified are constraints for the coded frame that are activated when the bitstream of the access unit is decoded.¶
Conformance of a coded frame to the 422-10 profile is indicated by profile_idc equal to 33.¶
Coded frames conforming to the 422-10 profile MUST obey the following constraints:¶
chroma_format_idc MUST be equal to 2.¶
bit_depth_minus8 MUST be equal to 2.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 422-10 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 422-10 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 422-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
Conformance of a coded frame to the 422-12 profile is indicated by profile_idc equal to 44.¶
Coded frames conforming to the 422-12 profile MUST obey the following constraints:¶
chroma_format_idc MUST be equal to 2.¶
bit_depth_minus8 MUST be in the range of 2 to 4.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 422-12 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 422-12 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 422-12 profile or the 422-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
Conformance of a coded frame to the 444-10 profile is indicated by profile_idc equal to 55.¶
Coded frames conforming to the 444-10 profile MUST obey the following constraints:¶
chroma_format_idc MUST be in the range of 2 to 3.¶
bit_depth_minus8 MUST be equal to 2.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 444-10 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 444-10 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 444-10 profile or the 422-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
Conformance of a coded frame to the 444-12 profile is indicated by profile_idc equal to 66.¶
Coded frames conforming to the 444-12 profile MUST obey the following constraints:¶
chroma_format_idc MUST be in the range of 2 to 3.¶
bit_depth_minus8 MUST be in the range of 2 to 4.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 444-12 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 444-12 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 444-12 profile, the 444-10 profile, the 422-12 profile, or the 422-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
Conformance of a coded frame to the 4444-10 profile is indicated by profile_idc equal to 77.¶
Coded frames conforming to the 4444-10 profile MUST obey the following constraints:¶
chroma_format_idc MUST be in the range of 2 to 4.¶
bit_depth_minus8 MUST be equal to 2.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 4444-10 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 4444-10 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 4444-10 profile, the 444-10 profile or the 422-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
Conformance of a coded frame to the 4444-12 profile is indicated by profile_idc equal to 88.¶
Coded frames conforming to the 4444-12 profile MUST obey the following constraints:¶
chroma_format_idc MUST be in the range of 2 to 4.¶
bit_depth_minus8 MUST be in the range of 2 to 4.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 4444-12 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 4444-12 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 4444-12 profile, the 4444-10 profile, the 444-12 profile, the 444-10 profile, the 422-12 profile or the 422-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
Conformance of a coded frame to the 400-10 profile is indicated by profile_idc equal to 99.¶
Coded frames conforming to the 400-10 profile MUST obey the following constraints:¶
chroma_format_idc MUST be equal to 0.¶
bit_depth_minus8 MUST be equal to 2.¶
pbu_type MUST be equal to 1¶
The level and the band constraints specified for the 400-10 profile in Section 10.1.4 MUST be fulfilled. Decoders conforming to the 400-10 profile at a specific level (identified by a specific value of L) and a specific band (identified by a specific value of B) MUST be capable of decoding all coded frames for which all of the following conditions apply:¶
The coded frame is indicated to conform to the 400-10 profile.¶
The coded frame is indicated to conform to a level (by a specific value of level_idc) that is lower than or equal to level L.¶
The coded frame is indicated to conform to a band (by a specific value of band_idc) that is lower than or equal to level B.¶
For purposes of comparison of level capabilities, a particular level of each band is considered to be a lower level than some other level when the value of the level_idc of the particular level of each band is less than that of the other level.¶
The luma sample rate (luma samples per second) MUST be less than or equal to "Max luma sample rate".¶
The coded data rate (bits per second) MUST be less than or equal to "Max luma sample rate".¶
The value of tile_width_in_mbs_minus1 MUST be greater than or equal to 15.¶
The value of tile_height_in_mbs_minus1 MUST be greater than or equal to 7.¶
The value of TileCols MUST be less than or equal to 20.¶
The value of TileRows MUST be less than or equal to 20.¶
Table 4 specifies the limits for each level of each band. A level to which a coded frame conforms is indicated by the syntax elements level_idc and band_idc as follows:¶
l e v e l |
Max luma sample rate (sample/sec) | Max coded data rate (kbits/sec) band_idc==0 |
Max coded data rate (kbits/sec) band_idc==1 |
Max coded data rate (kbits/sec) band_idc==2 |
Max coded data rate (kbits/sec) band_idc==3 |
---|---|---|---|---|---|
1 | 3,041,280 | 7,000 | 11,000 | 14,000 | 21,000 |
1.1 | 6,082,560 | 14,000 | 21,000 | 28,000 | 42,000 |
2 | 15,667,200 | 36,000 | 53,000 | 71,000 | 106,000 |
2.1 | 31,334,400 | 71,000 | 106,000 | 141,000 | 212,000 |
3 | 66,846,720 | 101,000 | 151,000 | 201,000 | 301,000 |
3.1 | 133,693,440 | 201,000 | 301,000 | 401,000 | 602,000 |
4 | 265,420,800 | 401,000 | 602,000 | 780,000 | 1,170,000 |
4.1 | 530,841,600 | 780,000 | 1,170,000 | 1,560,000 | 2,340,000 |
5 | 1,061,683,200 | 1,560,000 | 2,340,000 | 3,324,000 | 4,986,000 |
5.1 | 2,123,366,400 | 3,324,000 | 4,986,000 | 6,648,000 | 9,972,000 |
6 | 4,777,574,400 | 6,648,000 | 9,972,000 | 13,296,000 | 19,944,000 |
6.1 | 8,493,465,600 | 13,296,000 | 19,944,000 | 26,592,000 | 39,888,000 |
7 | 16,986,931,200 | 26,592,000 | 39,888,000 | 53,184,000 | 79,776,000 |
7.1 | 33,973,862,400 | 53,184,000 | 79,776,000 | 106,368,000 | 159,552,000 |
### Raw bitstream syntax and semantics for access unit¶
au_size¶
indicates the size of access unit in bytes. 0 is prohibited and 0xFFFFFFFF is reserved.¶
syntax code | type --------------------------------------------------------------|----- metadata_filler(payloadSize){ | for(i = 0; i < payloadSize; i++){ | ff_byte | f(8) } | } |¶
ff_byte¶
is a byte equal to 0xFF.¶
This metadata contains information registered as specified in [ITUT-T35].¶
itu_t_t35_country_code¶
itu_t_t35_country_code_extension¶
itu_t_t35_payload¶
The terminal provider code and terminal provider oriented code as specified in [ITUT-T35] shall be contained in the first one or more bytes of the itu_t_t35_payload. Any remaining bytes in itu_t_t35_payload data shall be data having syntax and semantics as specified by the entity identified by the [ITUT-T35] country code and terminal provider code.¶
primary_chromaticity_x[i]¶
specifies a 0.16 fixed-point format of X chromaticity coordinate of mastering display as defined by CIE 1931, where i = 0, 1, 2 specifies Red, Green, Blue respectively.¶
primary_chromaticity_y[i]¶
specifies a 0.16 fixed-point format of Y chromaticity coordinate of mastering display as defined by CIE 1931, where i = 0, 1, 2 specifies Red, Green, Blue respectively.¶
white_point_chromaticity_x¶
specifies a 0.16 fixed-point format of white point X chromaticity coordinate of mastering display as defined by CIE 1931.¶
white_point_chromaticity_y¶
specifies a 0.16 fixed-point format of white point Y chromaticity coordinate as mastering display defined by CIE 1931.¶
max_mastering_luminance¶
is a 24.8 fixed-point format of maximum display mastering luminance, represented in candelas per square meter.¶
min_mastering_luminance¶
is a 18.14 fixed-point format of minimum display mastering luminance, represented in candelas per square meter.¶
max_cll¶
max_fall¶
This metadata has user data identified by a universal unique identifier as specifies in [ISO11578], the contents of which are not specified in this document.¶
uuid¶
MUST be a 128-bit value specified as a generated UUID according to the procedures of [ISO11578] Annex A.¶
user_defined_data_payload¶
MUST be a byte having user defined syntax and semantics as specified by the UUID generator.¶
undefined_metadata_payload_byte¶
is a byte reserved for future case.¶