1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/av1_parse: Fix bistream typo

Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2018-09-19 18:05:24 +02:00
parent ba175578d1
commit 86e76762fc

View File

@ -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.
*/