diff options
author | Moritz Barsnick <barsnick@gmx.net> | 2016-10-09 12:57:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-10-09 20:09:00 +0200 |
commit | 468c596a31ca90012ed78cfe6966ca6f3ec11f38 (patch) | |
tree | bc8f7edb71c4eda13db26764013b52e86d1bad8e /libavformat/oggparsevp8.c | |
parent | f4e4bde1f4cff99d4ec59ed361ff9228b2050e6b (diff) | |
download | ffmpeg-468c596a31ca90012ed78cfe6966ca6f3ec11f38.tar.gz |
lavf: fix typos
Signed-off-by: Moritz Barsnick <barsnick@gmx.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/oggparsevp8.c')
-rw-r--r-- | libavformat/oggparsevp8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevp8.c b/libavformat/oggparsevp8.c index 6716dd2f45..c534ab117d 100644 --- a/libavformat/oggparsevp8.c +++ b/libavformat/oggparsevp8.c @@ -84,7 +84,7 @@ static uint64_t vp8_gptopts(AVFormatContext *s, int idx, int invcnt = !((granule >> 30) & 3); // If page granule is that of an invisible vp8 frame, its pts will be - // that of the end of the next visible frame. We substract 1 for those + // that of the end of the next visible frame. We subtract 1 for those // to prevent messing up pts calculations. uint64_t pts = (granule >> 32) - invcnt; uint32_t dist = (granule >> 3) & 0x07ffffff; |