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
ac7b1f74
Commit
ac7b1f74
authored
Oct 01, 2015
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/mandelbrot: Output RGB0 instead of RGBA.
parent
f5afd1c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
version.h
libavfilter/version.h
+1
-1
vsrc_mandelbrot.c
libavfilter/vsrc_mandelbrot.c
+1
-2
No files found.
libavfilter/version.h
View file @
ac7b1f74
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MINOR 9
#define LIBAVFILTER_VERSION_MINOR 9
#define LIBAVFILTER_VERSION_MICRO 10
0
#define LIBAVFILTER_VERSION_MICRO 10
1
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
libavfilter/vsrc_mandelbrot.c
View file @
ac7b1f74
...
@@ -149,7 +149,7 @@ static av_cold void uninit(AVFilterContext *ctx)
...
@@ -149,7 +149,7 @@ static av_cold void uninit(AVFilterContext *ctx)
static
int
query_formats
(
AVFilterContext
*
ctx
)
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
AV_PIX_FMT_BGR32
,
AV_PIX_FMT_
0
BGR32
,
AV_PIX_FMT_NONE
AV_PIX_FMT_NONE
};
};
...
@@ -379,7 +379,6 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
...
@@ -379,7 +379,6 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
c
=
lrintf
((
s
->
zyklus
[
closest_index
][
0
]
/
closest
+
1
)
*
127
+
dv
)
+
lrintf
((
s
->
zyklus
[
closest_index
][
1
]
/
closest
+
1
)
*
127
+
dv
)
*
256
;
c
=
lrintf
((
s
->
zyklus
[
closest_index
][
0
]
/
closest
+
1
)
*
127
+
dv
)
+
lrintf
((
s
->
zyklus
[
closest_index
][
1
]
/
closest
+
1
)
*
127
+
dv
)
*
256
;
}
}
}
}
c
|=
0xFF000000
;
color
[
x
+
y
*
linesize
]
=
c
;
color
[
x
+
y
*
linesize
]
=
c
;
if
(
next_cidx
<
s
->
cache_allocated
){
if
(
next_cidx
<
s
->
cache_allocated
){
s
->
next_cache
[
next_cidx
].
p
[
0
]
=
cr
;
s
->
next_cache
[
next_cidx
].
p
[
0
]
=
cr
;
...
...
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