[FFmpeg-cvslog] lsws/utils: fix typo

Stefano Sabatini git at videolan.org
Tue Nov 5 00:08:39 CET 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Mon Nov  4 23:42:44 2013 +0100| [246e323de8a18c00ae6c3edd6cc7caea7229a050] | committer: Stefano Sabatini

lsws/utils: fix typo

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=246e323de8a18c00ae6c3edd6cc7caea7229a050
---

 libswscale/utils.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libswscale/utils.c b/libswscale/utils.c
index 69087dc..e4c9452 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -557,7 +557,7 @@ static av_cold int initFilter(int16_t **outFilter, int32_t **filterPos,
     filter = av_malloc(filterSize * dstW * sizeof(*filter));
     if (filterSize >= MAX_FILTER_SIZE * 16 /
                       ((flags & SWS_ACCURATE_RND) ? APCK_SIZE : 16) || !filter) {
-        av_log(NULL, AV_LOG_ERROR, "sws: filterSize %d is too large, try less extreem scaling or increase MAX_FILTER_SIZE and recompile\n", filterSize);
+        av_log(NULL, AV_LOG_ERROR, "sws: filterSize %d is too large, try less extreme scaling or increase MAX_FILTER_SIZE and recompile\n", filterSize);
         goto fail;
     }
     *outFilterSize = filterSize;



More information about the ffmpeg-cvslog mailing list