Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-09-25 09:42:32 +0400
committerClément Bœsch <ubitux@gmail.com>2012-09-25 09:42:32 +0400
commit4390f8c28daab9ac9f2c7b9164bdb79b3689d484 (patch)
tree9565d11ffbd7cfd49e403cdb2571b12e57d6f53a /ffmpeg.c
parentaea15df3b4c264b5b13d5f85341f52c7ec756c6f (diff)
Fix two "skiping" typo.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index a30ffb19aa..b74c1121cc 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -821,7 +821,7 @@ static void do_video_out(AVFormatContext *s,
return;
} else if (nb_frames > 1) {
if (nb_frames > dts_error_threshold * 30) {
- av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skiping\n", nb_frames - 1);
+ av_log(NULL, AV_LOG_ERROR, "%d frame duplication too large, skipping\n", nb_frames - 1);
nb_frames_drop++;
return;
}