OSDN Git Service

lsws/utils: fix typo
authorStefano Sabatini <stefasab@gmail.com>
Mon, 4 Nov 2013 22:42:44 +0000 (23:42 +0100)
committerStefano Sabatini <stefasab@gmail.com>
Mon, 4 Nov 2013 23:04:17 +0000 (00:04 +0100)
libswscale/utils.c

index 69087dc..e4c9452 100644 (file)
@@ -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;