[FFmpeg-cvslog] Fix precission typos
Michael Niedermayer
git at videolan.org
Fri Jan 16 22:50:09 CET 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Jan 16 22:42:42 2015 +0100| [f96148913b310c16302eb9a50f480d6e46fc04e5] | committer: Michael Niedermayer
Fix precission typos
Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f96148913b310c16302eb9a50f480d6e46fc04e5
---
ffmpeg.c | 2 +-
libavcodec/mpegvideo_enc.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index 0a39274..2501e2c 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1241,7 +1241,7 @@ static int reap_filters(void)
filtered_frame = ost->filtered_frame;
while (1) {
- double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precission
+ double float_pts = AV_NOPTS_VALUE; // this is identical to filtered_frame.pts but with higher precision
ret = av_buffersink_get_frame_flags(filter, filtered_frame,
AV_BUFFERSINK_FLAG_NO_REQUEST);
if (ret < 0) {
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index 1a62ef1..d03b57e 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -342,7 +342,7 @@ av_cold int ff_mpv_encode_init(AVCodecContext *avctx)
s->rtp_mode = !!avctx->rtp_payload_size;
s->intra_dc_precision = avctx->intra_dc_precision;
- // workaround some differences between how applications specify dc precission
+ // workaround some differences between how applications specify dc precision
if (s->intra_dc_precision < 0) {
s->intra_dc_precision += 8;
} else if (s->intra_dc_precision >= 8)
More information about the ffmpeg-cvslog
mailing list