summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2022-09-29 18:48:04 -0700
committerJames Zern <jzern@google.com>2022-10-11 15:05:33 -0700
commit902dd787627f2263fe740e652830e06cb00afa41 (patch)
tree25cdf43ad7d020d95120b60e6ff49cc3a28be8d4
parenta8f6b5ee949048a772561e053bb162d4cfcb5c3a (diff)
downloadlibwebp-902dd787627f2263fe740e652830e06cb00afa41.tar.gz
webp-container-spec: prefer hex literals
to ABNF-style values; this makes the doc more consistent with doc/webp-lossless-bitstream-spec.txt. based on comments from: https://datatracker.ietf.org/doc/draft-zern-webp/ballot/#draft-zern-webp_lars-eggert Bug: webp:448 Change-Id: I751cf0b7f728866ae663beb06e6352e5b3d848b2
-rw-r--r--doc/webp-container-spec.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/webp-container-spec.txt b/doc/webp-container-spec.txt
index 28e1fef9..c73f7356 100644
--- a/doc/webp-container-spec.txt
+++ b/doc/webp-container-spec.txt
@@ -84,8 +84,8 @@ _uint32_
_FourCC_
: A _FourCC_ (four-character code) is a _uint32_ created by concatenating four
- ASCII characters in little-endian order. This means 'aaaa' (%x61.61.61.61) and
- 'AAAA' (%x41.41.41.41) are treated as different _FourCCs_.
+ ASCII characters in little-endian order. This means 'aaaa' (0x61616161) and
+ 'AAAA' (0x41414141) are treated as different _FourCCs_.
_1-based_
@@ -206,7 +206,7 @@ VP8 data: _Chunk Size_ bytes
: VP8 bitstream data.
-Note the fourth character in the 'VP8 ' FourCC is an ASCII space (%x20).
+Note the fourth character in the 'VP8 ' FourCC is an ASCII space (0x20).
The VP8 bitstream format specification can be found at [VP8 Data Format and
Decoding Guide][vp8spec]. Note that the VP8 frame header contains the VP8 frame
@@ -721,7 +721,7 @@ XMP Metadata: _Chunk Size_ bytes
: image metadata in XMP format.
-Note the fourth character in the 'XMP ' FourCC is an ASCII space (%x20).
+Note the fourth character in the 'XMP ' FourCC is an ASCII space (0x20).
Additional guidance about handling metadata can be found in the
Metadata Working Group's [Guidelines for Handling Metadata][metadata].