Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
abb0a998
Commit
abb0a998
authored
Jul 05, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: do not pass opaque field to init functions
Fix signature mismatch warnings.
parent
2d420087
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
avf_showwaves.c
libavfilter/avf_showwaves.c
+1
-1
vf_thumbnail.c
libavfilter/vf_thumbnail.c
+1
-1
vf_tile.c
libavfilter/vf_tile.c
+1
-1
vf_tinterlace.c
libavfilter/vf_tinterlace.c
+1
-1
vsrc_cellauto.c
libavfilter/vsrc_cellauto.c
+1
-1
vsrc_life.c
libavfilter/vsrc_life.c
+1
-1
vsrc_mandelbrot.c
libavfilter/vsrc_mandelbrot.c
+1
-1
vsrc_mptestsrc.c
libavfilter/vsrc_mptestsrc.c
+1
-1
No files found.
libavfilter/avf_showwaves.c
View file @
abb0a998
...
...
@@ -57,7 +57,7 @@ static const AVOption showwaves_options[] = {
AVFILTER_DEFINE_CLASS
(
showwaves
);
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
ShowWavesContext
*
showwaves
=
ctx
->
priv
;
int
err
;
...
...
libavfilter/vf_thumbnail.c
View file @
abb0a998
...
...
@@ -43,7 +43,7 @@ typedef struct {
struct
thumb_frame
*
frames
;
///< the n_frames frames
}
ThumbContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
ThumbContext
*
thumb
=
ctx
->
priv
;
...
...
libavfilter/vf_tile.c
View file @
abb0a998
...
...
@@ -39,7 +39,7 @@ typedef struct {
#define REASONABLE_SIZE 1024
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
TileContext
*
tile
=
ctx
->
priv
;
int
r
;
...
...
libavfilter/vf_tinterlace.c
View file @
abb0a998
...
...
@@ -80,7 +80,7 @@ static int query_formats(AVFilterContext *ctx)
return
0
;
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
TInterlaceContext
*
tinterlace
=
ctx
->
priv
;
int
i
;
...
...
libavfilter/vsrc_cellauto.c
View file @
abb0a998
...
...
@@ -158,7 +158,7 @@ static int init_pattern_from_file(AVFilterContext *ctx)
return
init_pattern_from_string
(
ctx
);
}
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
CellAutoContext
*
cellauto
=
ctx
->
priv
;
AVRational
frame_rate
;
...
...
libavfilter/vsrc_life.c
View file @
abb0a998
...
...
@@ -219,7 +219,7 @@ static int init_pattern_from_file(AVFilterContext *ctx)
return
0
;
}
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
LifeContext
*
life
=
ctx
->
priv
;
AVRational
frame_rate
;
...
...
libavfilter/vsrc_mandelbrot.c
View file @
abb0a998
...
...
@@ -108,7 +108,7 @@ static const AVOption mandelbrot_options[] = {
AVFILTER_DEFINE_CLASS
(
mandelbrot
);
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
MBContext
*
mb
=
ctx
->
priv
;
AVRational
rate_q
;
...
...
libavfilter/vsrc_mptestsrc.c
View file @
abb0a998
...
...
@@ -256,7 +256,7 @@ static void ring2_test(uint8_t *dst, int dst_linesize, int off)
}
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
{
MPTestContext
*
test
=
ctx
->
priv
;
AVRational
frame_rate_q
;
...
...
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