Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
0e5b0513
Commit
0e5b0513
authored
Nov 11, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mandelbrot: fix typo that led to hardcoded max iteration count.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
ef4f4031
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vsrc_mandelbrot.c
libavfilter/vsrc_mandelbrot.c
+2
-2
No files found.
libavfilter/vsrc_mandelbrot.c
View file @
0e5b0513
...
...
@@ -55,7 +55,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
AVRational
frame_rate_q
;
int
ret
;
mb
->
maxiter
=
1024
;
mb
->
maxiter
=
256
;
mb
->
start_x
=-
2
.
0
;
mb
->
start_y
=-
1
.
5
;
mb
->
start_scale
=
3
.
0
;
...
...
@@ -127,7 +127,7 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
double
zi
=
ci
;
uint32_t
c
=
0
;
for
(
i
=
0
;
i
<
256
;
i
++
){
for
(
i
=
0
;
i
<
mb
->
maxiter
;
i
++
){
double
t
;
if
(
zr
*
zr
+
zi
*
zi
>
mb
->
bailout
){
switch
(
mb
->
outer
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment