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
c43a7eca
Commit
c43a7eca
authored
Mar 13, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: remove now unused args parameter from AVFilter.init
parent
7b3eb745
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
41 additions
and
41 deletions
+41
-41
af_aformat.c
libavfilter/af_aformat.c
+1
-1
af_amix.c
libavfilter/af_amix.c
+1
-1
af_asyncts.c
libavfilter/af_asyncts.c
+1
-1
af_channelmap.c
libavfilter/af_channelmap.c
+1
-1
af_channelsplit.c
libavfilter/af_channelsplit.c
+1
-1
af_join.c
libavfilter/af_join.c
+1
-1
af_volume.c
libavfilter/af_volume.c
+1
-1
avfilter.c
libavfilter/avfilter.c
+1
-1
avfilter.h
libavfilter/avfilter.h
+3
-3
buffersrc.c
libavfilter/buffersrc.c
+2
-2
fifo.c
libavfilter/fifo.c
+1
-1
split.c
libavfilter/split.c
+1
-1
vf_aspect.c
libavfilter/vf_aspect.c
+1
-1
vf_boxblur.c
libavfilter/vf_boxblur.c
+1
-1
vf_cropdetect.c
libavfilter/vf_cropdetect.c
+1
-1
vf_delogo.c
libavfilter/vf_delogo.c
+1
-1
vf_drawbox.c
libavfilter/vf_drawbox.c
+1
-1
vf_drawtext.c
libavfilter/vf_drawtext.c
+1
-1
vf_fade.c
libavfilter/vf_fade.c
+1
-1
vf_format.c
libavfilter/vf_format.c
+1
-1
vf_fps.c
libavfilter/vf_fps.c
+1
-1
vf_frei0r.c
libavfilter/vf_frei0r.c
+2
-2
vf_gradfun.c
libavfilter/vf_gradfun.c
+1
-1
vf_hqdn3d.c
libavfilter/vf_hqdn3d.c
+1
-1
vf_libopencv.c
libavfilter/vf_libopencv.c
+1
-1
vf_lut.c
libavfilter/vf_lut.c
+3
-3
vf_pad.c
libavfilter/vf_pad.c
+1
-1
vf_scale.c
libavfilter/vf_scale.c
+1
-1
vf_select.c
libavfilter/vf_select.c
+1
-1
vf_setpts.c
libavfilter/vf_setpts.c
+1
-1
vf_unsharp.c
libavfilter/vf_unsharp.c
+1
-1
vsrc_color.c
libavfilter/vsrc_color.c
+1
-1
vsrc_movie.c
libavfilter/vsrc_movie.c
+1
-1
vsrc_testsrc.c
libavfilter/vsrc_testsrc.c
+2
-2
No files found.
libavfilter/af_aformat.c
View file @
c43a7eca
...
...
@@ -94,7 +94,7 @@ static int get_sample_rate(const char *samplerate)
return
FFMAX
(
ret
,
0
);
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
AFormatContext
*
s
=
ctx
->
priv
;
...
...
libavfilter/af_amix.c
View file @
c43a7eca
...
...
@@ -488,7 +488,7 @@ fail:
return
ret
;
}
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
init
(
AVFilterContext
*
ctx
)
{
MixContext
*
s
=
ctx
->
priv
;
int
i
;
...
...
libavfilter/af_asyncts.c
View file @
c43a7eca
...
...
@@ -64,7 +64,7 @@ static const AVClass async_class = {
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
init
(
AVFilterContext
*
ctx
)
{
ASyncContext
*
s
=
ctx
->
priv
;
...
...
libavfilter/af_channelmap.c
View file @
c43a7eca
...
...
@@ -119,7 +119,7 @@ static int get_channel(char **map, uint64_t *ch, char delim)
return
0
;
}
static
av_cold
int
channelmap_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
channelmap_init
(
AVFilterContext
*
ctx
)
{
ChannelMapContext
*
s
=
ctx
->
priv
;
int
ret
;
...
...
libavfilter/af_channelsplit.c
View file @
c43a7eca
...
...
@@ -53,7 +53,7 @@ static const AVClass channelsplit_class = {
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
arg
)
static
int
init
(
AVFilterContext
*
ctx
)
{
ChannelSplitContext
*
s
=
ctx
->
priv
;
int
nb_channels
;
...
...
libavfilter/af_join.c
View file @
c43a7eca
...
...
@@ -186,7 +186,7 @@ static int parse_maps(AVFilterContext *ctx)
return
0
;
}
static
int
join_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
join_init
(
AVFilterContext
*
ctx
)
{
JoinContext
*
s
=
ctx
->
priv
;
int
ret
,
i
;
...
...
libavfilter/af_volume.c
View file @
c43a7eca
...
...
@@ -60,7 +60,7 @@ static const AVClass volume_class = {
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
VolumeContext
*
vol
=
ctx
->
priv
;
...
...
libavfilter/avfilter.c
View file @
c43a7eca
...
...
@@ -578,7 +578,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
}
if
(
filter
->
filter
->
init
)
ret
=
filter
->
filter
->
init
(
filter
,
args
);
ret
=
filter
->
filter
->
init
(
filter
);
else
if
(
filter
->
filter
->
init_dict
)
ret
=
filter
->
filter
->
init_dict
(
filter
,
&
options
);
if
(
ret
<
0
)
...
...
libavfilter/avfilter.h
View file @
c43a7eca
...
...
@@ -403,10 +403,10 @@ typedef struct AVFilter {
*/
/**
* Filter initialization function.
Args contains the user-supplied
*
parameters. FIXME: maybe an AVOption-based system would be better?
* Filter initialization function.
Called when all the options have been
*
set.
*/
int
(
*
init
)(
AVFilterContext
*
ctx
,
const
char
*
args
);
int
(
*
init
)(
AVFilterContext
*
ctx
);
/**
* Should be set instead of init by the filters that want to pass a
...
...
libavfilter/buffersrc.c
View file @
c43a7eca
...
...
@@ -236,7 +236,7 @@ fail:
}
#endif
static
av_cold
int
init_video
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init_video
(
AVFilterContext
*
ctx
)
{
BufferSourceContext
*
c
=
ctx
->
priv
;
...
...
@@ -304,7 +304,7 @@ static const AVClass abuffer_class = {
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
init_audio
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init_audio
(
AVFilterContext
*
ctx
)
{
BufferSourceContext
*
s
=
ctx
->
priv
;
int
ret
=
0
;
...
...
libavfilter/fifo.c
View file @
c43a7eca
...
...
@@ -51,7 +51,7 @@ typedef struct {
int
allocated_samples
;
///< number of samples out was allocated for
}
FifoContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
FifoContext
*
fifo
=
ctx
->
priv
;
fifo
->
last
=
&
fifo
->
root
;
...
...
libavfilter/split.c
View file @
c43a7eca
...
...
@@ -39,7 +39,7 @@ typedef struct SplitContext {
int
nb_outputs
;
}
SplitContext
;
static
int
split_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
split_init
(
AVFilterContext
*
ctx
)
{
SplitContext
*
s
=
ctx
->
priv
;
int
i
;
...
...
libavfilter/vf_aspect.c
View file @
c43a7eca
...
...
@@ -42,7 +42,7 @@ typedef struct {
}
AspectContext
;
#if FF_API_OLD_FILTER_OPTS
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
AspectContext
*
s
=
ctx
->
priv
;
...
...
libavfilter/vf_boxblur.c
View file @
c43a7eca
...
...
@@ -80,7 +80,7 @@ typedef struct {
#define V 2
#define A 3
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
BoxBlurContext
*
boxblur
=
ctx
->
priv
;
...
...
libavfilter/vf_cropdetect.c
View file @
c43a7eca
...
...
@@ -86,7 +86,7 @@ static int checkline(void *ctx, const unsigned char *src, int stride, int len, i
return
total
;
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
CropDetectContext
*
cd
=
ctx
->
priv
;
...
...
libavfilter/vf_delogo.c
View file @
c43a7eca
...
...
@@ -173,7 +173,7 @@ static int query_formats(AVFilterContext *ctx)
return
0
;
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
DelogoContext
*
delogo
=
ctx
->
priv
;
...
...
libavfilter/vf_drawbox.c
View file @
c43a7eca
...
...
@@ -44,7 +44,7 @@ typedef struct {
int
vsub
,
hsub
;
///< chroma subsampling
}
DrawBoxContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
DrawBoxContext
*
drawbox
=
ctx
->
priv
;
uint8_t
rgba_color
[
4
];
...
...
libavfilter/vf_drawtext.c
View file @
c43a7eca
...
...
@@ -280,7 +280,7 @@ error:
return
ret
;
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
int
err
;
DrawTextContext
*
dtext
=
ctx
->
priv
;
...
...
libavfilter/vf_fade.c
View file @
c43a7eca
...
...
@@ -45,7 +45,7 @@ typedef struct {
int
hsub
,
vsub
,
bpp
;
}
FadeContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
FadeContext
*
fade
=
ctx
->
priv
;
...
...
libavfilter/vf_format.c
View file @
c43a7eca
...
...
@@ -47,7 +47,7 @@ typedef struct {
#define AV_PIX_FMT_NAME_MAXSIZE 32
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
FormatContext
*
format
=
ctx
->
priv
;
const
char
*
cur
,
*
sep
;
...
...
libavfilter/vf_fps.c
View file @
c43a7eca
...
...
@@ -64,7 +64,7 @@ static const AVClass class = {
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
FPSContext
*
s
=
ctx
->
priv
;
int
ret
;
...
...
libavfilter/vf_frei0r.c
View file @
c43a7eca
...
...
@@ -295,7 +295,7 @@ static av_cold int frei0r_init(AVFilterContext *ctx,
return
0
;
}
static
av_cold
int
filter_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
filter_init
(
AVFilterContext
*
ctx
)
{
Frei0rContext
*
frei0r
=
ctx
->
priv
;
...
...
@@ -421,7 +421,7 @@ AVFilter avfilter_vf_frei0r = {
.
outputs
=
avfilter_vf_frei0r_outputs
,
};
static
av_cold
int
source_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
source_init
(
AVFilterContext
*
ctx
)
{
Frei0rContext
*
frei0r
=
ctx
->
priv
;
AVRational
frame_rate_q
;
...
...
libavfilter/vf_gradfun.c
View file @
c43a7eca
...
...
@@ -120,7 +120,7 @@ static void filter(GradFunContext *ctx, uint8_t *dst, uint8_t *src, int width, i
}
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
GradFunContext
*
gf
=
ctx
->
priv
;
...
...
libavfilter/vf_hqdn3d.c
View file @
c43a7eca
...
...
@@ -181,7 +181,7 @@ static int16_t *precalc_coefs(double dist25, int depth)
#define PARAM2_DEFAULT 3.0
#define PARAM3_DEFAULT 6.0
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
init
(
AVFilterContext
*
ctx
)
{
HQDN3DContext
*
hqdn3d
=
ctx
->
priv
;
...
...
libavfilter/vf_libopencv.c
View file @
c43a7eca
...
...
@@ -317,7 +317,7 @@ static OCVFilterEntry ocv_filter_entries[] = {
{
"smooth"
,
sizeof
(
SmoothContext
),
smooth_init
,
NULL
,
smooth_end_frame_filter
},
};
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
OCVContext
*
ocv
=
ctx
->
priv
;
int
i
;
...
...
libavfilter/vf_lut.c
View file @
c43a7eca
...
...
@@ -101,7 +101,7 @@ static const AVOption lut_options[] = {
{
NULL
},
};
static
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
init
(
AVFilterContext
*
ctx
)
{
LutContext
*
lut
=
ctx
->
priv
;
...
...
@@ -385,7 +385,7 @@ static const AVOption negate_options[] = {
{
NULL
},
};
static
int
negate_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
int
negate_init
(
AVFilterContext
*
ctx
)
{
LutContext
*
lut
=
ctx
->
priv
;
int
i
;
...
...
@@ -401,7 +401,7 @@ static int negate_init(AVFilterContext *ctx, const char *args)
}
}
return
init
(
ctx
,
NULL
);
return
init
(
ctx
);
}
DEFINE_LUT_FILTER
(
negate
,
"Negate input video."
,
negate_init
,
negate_options
);
...
...
libavfilter/vf_pad.c
View file @
c43a7eca
...
...
@@ -112,7 +112,7 @@ typedef struct {
int
hsub
,
vsub
;
///< chroma subsampling values
}
PadContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
PadContext
*
pad
=
ctx
->
priv
;
...
...
libavfilter/vf_scale.c
View file @
c43a7eca
...
...
@@ -89,7 +89,7 @@ typedef struct {
char
*
flags_str
;
}
ScaleContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
ScaleContext
*
scale
=
ctx
->
priv
;
...
...
libavfilter/vf_select.c
View file @
c43a7eca
...
...
@@ -125,7 +125,7 @@ typedef struct {
AVFifoBuffer
*
pending_frames
;
///< FIFO buffer of video frames
}
SelectContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
SelectContext
*
select
=
ctx
->
priv
;
int
ret
;
...
...
libavfilter/vf_setpts.c
View file @
c43a7eca
...
...
@@ -74,7 +74,7 @@ typedef struct {
double
var_values
[
VAR_VARS_NB
];
}
SetPTSContext
;
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
SetPTSContext
*
setpts
=
ctx
->
priv
;
int
ret
;
...
...
libavfilter/vf_unsharp.c
View file @
c43a7eca
...
...
@@ -136,7 +136,7 @@ static void set_filter_param(FilterParam *fp, int msize_x, int msize_y, float am
fp
->
halfscale
=
1
<<
(
fp
->
scalebits
-
1
);
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
UnsharpContext
*
unsharp
=
ctx
->
priv
;
...
...
libavfilter/vsrc_color.c
View file @
c43a7eca
...
...
@@ -54,7 +54,7 @@ typedef struct {
char
*
framerate_str
;
}
ColorContext
;
static
av_cold
int
color_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
color_init
(
AVFilterContext
*
ctx
)
{
ColorContext
*
color
=
ctx
->
priv
;
AVRational
frame_rate_q
;
...
...
libavfilter/vsrc_movie.c
View file @
c43a7eca
...
...
@@ -160,7 +160,7 @@ static int movie_init(AVFilterContext *ctx)
return
0
;
}
static
av_cold
int
init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
init
(
AVFilterContext
*
ctx
)
{
MovieContext
*
movie
=
ctx
->
priv
;
...
...
libavfilter/vsrc_testsrc.c
View file @
c43a7eca
...
...
@@ -328,7 +328,7 @@ static void test_fill_picture(AVFilterContext *ctx, AVFrame *frame)
}
}
static
av_cold
int
test_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
test_init
(
AVFilterContext
*
ctx
)
{
TestSourceContext
*
test
=
ctx
->
priv
;
...
...
@@ -440,7 +440,7 @@ static void rgbtest_fill_picture(AVFilterContext *ctx, AVFrame *frame)
}
}
static
av_cold
int
rgbtest_init
(
AVFilterContext
*
ctx
,
const
char
*
args
)
static
av_cold
int
rgbtest_init
(
AVFilterContext
*
ctx
)
{
TestSourceContext
*
test
=
ctx
->
priv
;
...
...
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