[FFmpeg-devel] [PATCH] avfilter/vf_tile: remove limit of max tile size
Paul B Mahol
onemda at gmail.com
Fri Oct 27 23:12:20 EEST 2017
Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
libavfilter/vf_tile.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/libavfilter/vf_tile.c b/libavfilter/vf_tile.c
index 87e0b940cf..a0bfb31338 100644
--- a/libavfilter/vf_tile.c
+++ b/libavfilter/vf_tile.c
@@ -44,8 +44,6 @@ typedef struct TileContext {
uint8_t rgba_color[4];
} TileContext;
-#define REASONABLE_SIZE 1024
-
#define OFFSET(x) offsetof(TileContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
@@ -68,12 +66,6 @@ static av_cold int init(AVFilterContext *ctx)
{
TileContext *tile = ctx->priv;
- if (tile->w > REASONABLE_SIZE || tile->h > REASONABLE_SIZE) {
- av_log(ctx, AV_LOG_ERROR, "Tile size %ux%u is insane.\n",
- tile->w, tile->h);
- return AVERROR(EINVAL);
- }
-
if (tile->nb_frames == 0) {
tile->nb_frames = tile->w * tile->h;
} else if (tile->nb_frames > tile->w * tile->h) {
--
2.11.0
More information about the ffmpeg-devel
mailing list