summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-09-19 18:05:24 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-09-19 23:01:44 +0200
commit86e76762fc73ad2b21243c103b41184d0f722ce1 (patch)
treebac95cedc293163c8b14a703e4bc567e08a1837d /libavcodec
parentba175578d14e6c8f5df8b63bdbb3bcac86dcdc30 (diff)
avcodec/av1_parse: Fix bistream typo
Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/av1_parse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/av1_parse.h b/libavcodec/av1_parse.h
index 0de619dbec..276af33ba9 100644
--- a/libavcodec/av1_parse.h
+++ b/libavcodec/av1_parse.h
@@ -61,7 +61,7 @@ typedef struct AV1Packet {
/**
* Extract an OBU from a raw bitstream.
*
- * @note This function does not copy or store any bistream data. All
+ * @note This function does not copy or store any bitstream data. All
* the pointers in the AV1OBU structure will be valid as long
* as the input buffer also is.
*/
@@ -71,7 +71,7 @@ int ff_av1_extract_obu(AV1OBU *obu, const uint8_t *buf, int length,
/**
* Split an input packet into OBUs.
*
- * @note This function does not copy or store any bistream data. All
+ * @note This function does not copy or store any bitstream data. All
* the pointers in the AV1Packet structure will be valid as
* long as the input buffer also is.
*/