diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-11-04 23:42:44 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-11-05 00:04:17 +0100 |
commit | 246e323de8a18c00ae6c3edd6cc7caea7229a050 (patch) | |
tree | af512b0813c54de7af526aa57425dab54abbc227 /libswscale/utils.c | |
parent | 988e2e7c1c18cc31aebae1a6b21c9305f715e6a8 (diff) | |
download | ffmpeg-246e323de8a18c00ae6c3edd6cc7caea7229a050.tar.gz |
lsws/utils: fix typo
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 69087dc3fa..e4c945278a 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; |