diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-16 22:42:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-16 22:42:42 +0100 |
commit | f96148913b310c16302eb9a50f480d6e46fc04e5 (patch) | |
tree | 111f2bf583148b3dc461b06fe408f0123e8890ea /ffmpeg.c | |
parent | a46a23d30fea9c8a5570e07ec4d9c9b4eaa6eb4f (diff) | |
download | ffmpeg-f96148913b310c16302eb9a50f480d6e46fc04e5.tar.gz |
Fix precission typos
Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |