Skip to content

Commit

Permalink
Merge pull request #234 from alfredh/patch-1
Browse files Browse the repository at this point in the history
remove trailing semicolon from write_ns()
  • Loading branch information
agrange authored Aug 23, 2023
2 parents 95d3ebc + b1305a8 commit 13ea905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions av1-rtp-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ ns(n) {
}
</code></pre>

The serialization proccess for this descriptor is specified as:
The serialization process for this descriptor is specified as:

<pre><code>
write_ns(n,v) {
Expand All @@ -873,7 +873,7 @@ write_ns(n,v) {
}
m = (1 << w) - n
if (v < m)
write_f(w - 1, val);
write_f(w - 1, v)
else
write_f(w, v + m)
}
Expand Down

0 comments on commit 13ea905

Please sign in to comment.