-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: fix top-level bits documentation and add update CHANGELOG
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* | ||
Package bits - bit and bytes reading and writing including Golomb codes and EBSP. | ||
All readaer and writer accumulates errors in the sense that they will stop reading or writing at the first error. | ||
The first error can be retrieved with AccError(). | ||
All readers and writers accumulate errors in the sense that they will stop reading or writing at the first error. | ||
The first error, if any, can be retrieved with AccError(). | ||
Beyond plain bit reading and writing, reading and writing of ebsp (Encapsulated Byte Sequence Packets) | ||
with start-code emulation prevention bytes and exponential Golomb codes as used in the AVC/H.264 and HEVC video coding standards. | ||
Beyond plain bit reading and writing, reading and writing of ebsp (Encapsulated Byte Sequence Packets) is supported. | ||
EBSP uses insertion of start-code emulation prevention bytes 0x03 and is used in MPEG video standards from AVC (H.264) and forward. | ||
*/ | ||
package bits |