Skip to content

Commit

Permalink
Merge pull request #198 from AOMediaCodec/conformance_speclink
Browse files Browse the repository at this point in the history
add a link to the conformance page and a script for section highlighting
  • Loading branch information
cconcolato authored Mar 4, 2024
2 parents 4d8cbfe + 91ddf1b commit 824cf4e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
3 changes: 1 addition & 2 deletions conformance/conformance_page/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,7 @@ export default function App() {
version: {coverage_raw["cw_version"]}
</span>
<span className="border-l-4 border-red-400 pl-2 text-xl">
<b>WARNING: </b> These files are still{" "}
<u>under review.</u>
<b>WARNING: </b> This page is under development and does not yet reflect the current status of the conformance test framework.
</span>
</div>
</div>
Expand Down
22 changes: 18 additions & 4 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Abstract: This document specifies the storage format for [[!AV1]] bitstreams in
Date: 2023-12-11
Repository: AOMediaCodec/av1-isobmff
Group: AOM
Test Suite: https://aomediacodec.github.io/av1-isobmff/conformance/
!Previously approved version: <a href="v1.2.0.html">https://aomediacodec.github.io/av1-isobmff/v1.2.0.html</a>
!Latest approved version: <a href="latest-approved.html">https://aomediacodec.github.io/av1-isobmff/latest-approved.html</a>
!Latest draft version: <a href="latest-draft.html">https://aomediacodec.github.io/av1-isobmff/latest-draft.html</a>
Expand Down Expand Up @@ -710,18 +711,31 @@ If any character that is not '.', digits, part of the AV1 4CC, or a tier value i

Changes since v1.2.0 release {#changelist}
==========================================
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/142">Clarify the color info in the codecs string.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/151">Update encryption diagram.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/152">Remove clap restriction.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/153">Clarify compactness and encryption.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/156">Add a NOTE to clarify the mdcv box.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/162">Clarify requirements on sample entry when encryption is used.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/167">Clarify the colr box.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/174">Correct the page numbers in links to the AV1 spec.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/175">Shorten long lines</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/170">Update the CMAF section to mention the cmf2 brand.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/142">Clarify the color info in the codecs string.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/182">Clarify storage of Sequence Header OBU.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/171">Make assert-id's unique and add them to the previous version.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/174">Correct the page numbers in links to the AV1 spec.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/175">Shorten long lines</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/181">Add a note on the identification of the T.35 message.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/182">Clarify storage of Sequence Header OBU.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/183">Use undated reference for ISOBMFF.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/195">Add note for encryption description limit.</a>
- <a href="https://github.com/AOMediaCodec/av1-isobmff/pull/198">Add a link to the conformance page.</a>

<script>
if (window.location.hash) {
const highlight_span = document.querySelector(window.location.hash);
if (highlight_span) {
highlight_span.parentNode.style.backgroundColor = "#F4EA565A";
setTimeout(() => {
highlight_span.parentNode.style.backgroundColor = "";
}, 5000);
}
}
</script>

0 comments on commit 824cf4e

Please sign in to comment.