diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-09-25 07:42:32 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-09-25 07:42:32 +0200 |
commit | 4390f8c28daab9ac9f2c7b9164bdb79b3689d484 (patch) | |
tree | 9565d11ffbd7cfd49e403cdb2571b12e57d6f53a /ffmpeg.c | |
parent | aea15df3b4c264b5b13d5f85341f52c7ec756c6f (diff) | |
download | ffmpeg-4390f8c28daab9ac9f2c7b9164bdb79b3689d484.tar.gz |
Fix two "skiping" typo.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |