Skip to content

Commit

Permalink
Include Annex B in preserveIndents
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhaughton-argon committed Apr 5, 2018
1 parent 897fa45 commit d3d7489
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module.exports = (grunt) ->
{ src: '98.testing.md', dest: '_tmp/' },
{ src: '04.conventions.md', dest: '_tmp/' },
{ src: '06.bitstream.syntax.md', dest: '_tmp/' }
{ src: 'annex.b.superframes.md', dest: '_tmp/' }
]
copy:
docs:
Expand Down
38 changes: 19 additions & 19 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

<h1 class="no_toc" id="av1-bitstream--decoding-process-specification">AV1 Bitstream &amp; Decoding Process Specification</h1>

<p><em>Last modified: 2018-04-05 08:44 PT</em></p>
<p><em>Last modified: 2018-04-05 08:57 PT</em></p>

<p><strong>Authors</strong><br />
Peter de Rivaz, Argon Design Ltd<br />
Expand Down Expand Up @@ -44801,27 +44801,27 @@ <h3 class="no_count" id="bitstream-syntax">Bitstream Syntax</h3>
<td><strong>Type</strong></td>
</tr>
<tr>
<td>while ( fileSz &gt; 0 ) {</td>
<td>   while ( fileSz &gt; 0 ) {</td>
<td> </td>
</tr>
<tr>
<td><b class="syntax-element">temporal_unit_size</b></td>
<td>       <b class="syntax-element">temporal_unit_size</b></td>
<td>leb128()</td>
</tr>
<tr>
<td>fileSz -= Leb128Bytes</td>
<td>       fileSz -= Leb128Bytes</td>
<td> </td>
</tr>
<tr>
<td>temporal_unit( temporal_unit_size )</td>
<td>       temporal_unit( temporal_unit_size )</td>
<td> </td>
</tr>
<tr>
<td>fileSz -= temporal_unit_size</td>
<td>       fileSz -= temporal_unit_size</td>
<td> </td>
</tr>
<tr>
<td>}</td>
<td>   }</td>
<td> </td>
</tr>
<tr>
Expand All @@ -44838,27 +44838,27 @@ <h3 class="no_count" id="bitstream-syntax">Bitstream Syntax</h3>
<td><strong>Type</strong></td>
</tr>
<tr>
<td>while ( sz &gt; 0 ) {</td>
<td>   while ( sz &gt; 0 ) {</td>
<td> </td>
</tr>
<tr>
<td><b class="syntax-element">frame_size</b></td>
<td>       <b class="syntax-element">frame_size</b></td>
<td>leb128()</td>
</tr>
<tr>
<td>sz -= Leb128Bytes</td>
<td>       sz -= Leb128Bytes</td>
<td> </td>
</tr>
<tr>
<td>frame_unit( frame_size )</td>
<td>       frame_unit( frame_size )</td>
<td> </td>
</tr>
<tr>
<td>sz -= frame_size</td>
<td>       sz -= frame_size</td>
<td> </td>
</tr>
<tr>
<td>}</td>
<td>   }</td>
<td> </td>
</tr>
<tr>
Expand All @@ -44875,27 +44875,27 @@ <h3 class="no_count" id="bitstream-syntax">Bitstream Syntax</h3>
<td><strong>Type</strong></td>
</tr>
<tr>
<td>while ( sz &gt; 0 ) {</td>
<td>   while ( sz &gt; 0 ) {</td>
<td> </td>
</tr>
<tr>
<td><b class="syntax-element">obu_length</b></td>
<td>       <b class="syntax-element">obu_length</b></td>
<td>leb128()</td>
</tr>
<tr>
<td>sz -= Leb128Bytes</td>
<td>       sz -= Leb128Bytes</td>
<td> </td>
</tr>
<tr>
<td>open_bitstream_unit( obu_length )</td>
<td>       open_bitstream_unit( obu_length )</td>
<td> </td>
</tr>
<tr>
<td>sz -= obu_length</td>
<td>       sz -= obu_length</td>
<td> </td>
</tr>
<tr>
<td>}</td>
<td>   }</td>
<td> </td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ version_date: Released 2017-xx-xx
<div class="annex">
{::options parse_block_html="false" /}
{% include_relative annex.a.levels.md %}
{% include_relative annex.b.superframes.md %}
{% include_relative _tmp/annex.b.superframes.md %}
{% include_relative annex.c.experiments.md %}
</div>

Expand Down
2 changes: 1 addition & 1 deletion pdf.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ version_date: Released 2017-xx-xx
<div style="page-break-before: always"></div>
{% include_relative annex.a.levels.md %}
<div style="page-break-before: always"></div>
{% include_relative annex.b.superframes.md %}
{% include_relative _tmp/annex.b.superframes.md %}
<div style="page-break-before: always"></div>
{% include_relative annex.c.experiments.md %}
</div>
Expand Down

0 comments on commit d3d7489

Please sign in to comment.