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
4ccd898a
Commit
4ccd898a
authored
Nov 11, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mandelbrot: support different outer coloring methods.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
75e30916
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
vsrc_mandelbrot.c
libavfilter/vsrc_mandelbrot.c
+11
-1
No files found.
libavfilter/vsrc_mandelbrot.c
View file @
4ccd898a
...
...
@@ -30,6 +30,11 @@
#include "libavutil/imgutils.h"
#include "libavutil/parseutils.h"
enum
Outer
{
ITERATION_COUNT
,
NORMALIZED_ITERATION_COUNT
,
};
typedef
struct
{
int
w
,
h
;
AVRational
time_base
;
...
...
@@ -39,6 +44,7 @@ typedef struct {
double
start_y
;
double
start_scale
;
double
bailout
;
enum
Outer
outer
;
}
MBContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
...
...
@@ -54,6 +60,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
mb
->
start_y
=-
1
.
5
;
mb
->
start_scale
=
3
.
0
;
mb
->
bailout
=
100
;
mb
->
outer
=
NORMALIZED_ITERATION_COUNT
;
if
(
args
)
sscanf
(
args
,
"%127[^:]:%127[^:]:%d,%lf:%lf:%lf"
,
frame_size
,
frame_rate
,
&
mb
->
maxiter
,
&
mb
->
start_x
,
&
mb
->
start_y
,
&
mb
->
start_scale
);
...
...
@@ -123,7 +130,10 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
for
(
i
=
0
;
i
<
256
;
i
++
){
double
t
;
if
(
zr
*
zr
+
zi
*
zi
>
mb
->
bailout
){
zr
=
i
+
(
log
(
log
(
mb
->
bailout
))
-
log
(
log
(
sqrt
(
zr
*
zr
+
zi
*
zi
))))
/
log
(
2
);
break
;
switch
(
mb
->
outer
){
case
ITERATION_COUNT
:
zr
=
i
;
break
;
case
NORMALIZED_ITERATION_COUNT
:
zr
=
i
+
(
log
(
log
(
mb
->
bailout
))
-
log
(
log
(
sqrt
(
zr
*
zr
+
zi
*
zi
))))
/
log
(
2
);
break
;
}
c
=
lrintf
((
sin
(
zr
)
+
1
)
*
127
)
+
lrintf
((
sin
(
zr
/
1
.
234
)
+
1
)
*
127
)
*
256
*
256
+
lrintf
((
sin
(
zr
/
100
)
+
1
)
*
127
)
*
256
;
break
;
}
...
...
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