1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

mandelbrot: increase resolution, and decrease zoom speed to maintain the cpu requirement.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2011-11-12 17:04:08 +01:00
parent 40d6e30c55
commit fd8d03457a

View File

@@ -62,7 +62,7 @@ typedef struct {
static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
{ {
MBContext *mb = ctx->priv; MBContext *mb = ctx->priv;
char frame_size [128] = "320x240"; char frame_size [128] = "640x480";
char frame_rate [128] = "25"; char frame_rate [128] = "25";
AVRational frame_rate_q; AVRational frame_rate_q;
int ret; int ret;
@@ -72,7 +72,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
mb->start_y=-0.131825904205311970493132056385139; mb->start_y=-0.131825904205311970493132056385139;
mb->start_scale=3.0; mb->start_scale=3.0;
mb->end_scale=0.3; mb->end_scale=0.3;
mb->end_pts=200; mb->end_pts=800;
mb->bailout=100; mb->bailout=100;
mb->outer= NORMALIZED_ITERATION_COUNT; mb->outer= NORMALIZED_ITERATION_COUNT;
if (args) if (args)