MPEGGroup / FileFormat

MPEG file format discussions
20 stars 0 forks source link

[NALU] OperatingPointRecord editorial issue #98

Closed bradh closed 6 days ago

bradh commented 3 months ago

(Edit to fix typo)

In the syntax for OperatingPointRecord (ISO/IEC 14496-15:2022 Section 9.6.2.2), the loop for operating points is for (i=0; i<num_operating_points) .... I think that should be for (i=0; i<num_operating_points; i++) ...

(I do not have permission to add labels, so added it to the title - if adding a label, please edit that).

leo-barnes commented 3 months ago

Nit:

- for (i=0; i<num_operating_points, i++)
+ for (i=0; i<num_operating_points; i++)
bradh commented 3 months ago

Nit:

- for (i=0; i<num_operating_points, i++)
+ for (i=0; i<num_operating_points; i++)

Indeed. Updated the report.

mhannuksela commented 6 days ago

This bug has already been fixed in 14496-15 7th Edition. Closing the issue.