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
97cfe1d8
Commit
97cfe1d8
authored
Jun 10, 2017
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert all AVClass struct declarations to designated initializers.
parent
98ea9806
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
98 additions
and
39 deletions
+98
-39
aacenc.c
libavcodec/aacenc.c
+4
-4
ac3enc_fixed.c
libavcodec/ac3enc_fixed.c
+7
-2
ac3enc_float.c
libavcodec/ac3enc_float.c
+7
-2
dnxhdenc.c
libavcodec/dnxhdenc.c
+4
-4
eac3enc.c
libavcodec/eac3enc.c
+7
-2
flacenc.c
libavcodec/flacenc.c
+4
-4
libfdk-aacdec.c
libavcodec/libfdk-aacdec.c
+4
-1
libfdk-aacenc.c
libavcodec/libfdk-aacenc.c
+4
-1
libilbc.c
libavcodec/libilbc.c
+8
-2
libopencore-amr.c
libavcodec/libopencore-amr.c
+4
-1
libopenh264enc.c
libavcodec/libopenh264enc.c
+4
-1
libvo-amrwbenc.c
libavcodec/libvo-amrwbenc.c
+4
-1
libvorbis.c
libavcodec/libvorbis.c
+6
-1
vf_drawtext.c
libavfilter/vf_drawtext.c
+3
-3
vsrc_movie.c
libavfilter/vsrc_movie.c
+3
-3
eval.c
libavutil/eval.c
+8
-1
file.c
libavutil/file.c
+6
-2
imgutils.c
libavutil/imgutils.c
+8
-1
opt.c
libavutil/tests/opt.c
+3
-3
No files found.
libavcodec/aacenc.c
View file @
97cfe1d8
...
...
@@ -803,10 +803,10 @@ static const AVOption aacenc_options[] = {
};
static
const
AVClass
aacenc_class
=
{
"AAC encoder"
,
av_default_item_name
,
aacenc_options
,
LIBAVUTIL_VERSION_INT
,
.
class_name
=
"AAC encoder"
,
.
item_name
=
av_default_item_name
,
.
option
=
aacenc_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
AVCodec
ff_aac_encoder
=
{
...
...
libavcodec/ac3enc_fixed.c
View file @
97cfe1d8
...
...
@@ -35,8 +35,13 @@
#define AC3ENC_TYPE AC3ENC_TYPE_AC3_FIXED
#include "ac3enc_opts_template.c"
static
const
AVClass
ac3enc_class
=
{
"Fixed-Point AC-3 Encoder"
,
av_default_item_name
,
ac3_options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
ac3enc_class
=
{
.
class_name
=
"Fixed-Point AC-3 Encoder"
,
.
item_name
=
av_default_item_name
,
.
option
=
ac3_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
/*
* Normalize the input samples to use the maximum available precision.
...
...
libavcodec/ac3enc_float.c
View file @
97cfe1d8
...
...
@@ -36,8 +36,13 @@
#define AC3ENC_TYPE AC3ENC_TYPE_AC3
#include "ac3enc_opts_template.c"
static
const
AVClass
ac3enc_class
=
{
"AC-3 Encoder"
,
av_default_item_name
,
ac3_options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
ac3enc_class
=
{
.
class_name
=
"AC-3 Encoder"
,
.
item_name
=
av_default_item_name
,
.
option
=
ac3_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
/*
...
...
libavcodec/dnxhdenc.c
View file @
97cfe1d8
...
...
@@ -52,10 +52,10 @@ static const AVOption options[] = {
};
static
const
AVClass
class
=
{
"dnxhd"
,
av_default_item_name
,
options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"dnxhd"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
void
dnxhd_8bit_get_pixels_8x4_sym
(
int16_t
*
restrict
block
,
...
...
libavcodec/eac3enc.c
View file @
97cfe1d8
...
...
@@ -34,8 +34,13 @@
#define AC3ENC_TYPE AC3ENC_TYPE_EAC3
#include "ac3enc_opts_template.c"
static
const
AVClass
eac3enc_class
=
{
"E-AC-3 Encoder"
,
av_default_item_name
,
ac3_options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
eac3enc_class
=
{
.
class_name
=
"E-AC-3 Encoder"
,
.
item_name
=
av_default_item_name
,
.
option
=
ac3_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
/**
...
...
libavcodec/flacenc.c
View file @
97cfe1d8
...
...
@@ -1359,10 +1359,10 @@ static const AVOption options[] = {
};
static
const
AVClass
flac_encoder_class
=
{
"FLAC encoder"
,
av_default_item_name
,
options
,
LIBAVUTIL_VERSION_INT
,
.
class_name
=
"FLAC encoder"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
AVCodec
ff_flac_encoder
=
{
...
...
libavcodec/libfdk-aacdec.c
View file @
97cfe1d8
...
...
@@ -79,7 +79,10 @@ static const AVOption fdk_aac_dec_options[] = {
};
static
const
AVClass
fdk_aac_dec_class
=
{
"libfdk-aac decoder"
,
av_default_item_name
,
fdk_aac_dec_options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libfdk-aac decoder"
,
.
item_name
=
av_default_item_name
,
.
option
=
fdk_aac_dec_options
,
.
version
=
LIBAVUTIL_VERSION_INT
};
static
int
get_stream_info
(
AVCodecContext
*
avctx
)
...
...
libavcodec/libfdk-aacenc.c
View file @
97cfe1d8
...
...
@@ -54,7 +54,10 @@ static const AVOption aac_enc_options[] = {
};
static
const
AVClass
aac_enc_class
=
{
"libfdk_aac"
,
av_default_item_name
,
aac_enc_options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libfdk_aac"
,
.
item_name
=
av_default_item_name
,
.
option
=
aac_enc_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
const
char
*
aac_get_error
(
AACENC_ERROR
err
)
...
...
libavcodec/libilbc.c
View file @
97cfe1d8
...
...
@@ -51,7 +51,10 @@ static const AVOption ilbc_dec_options[] = {
};
static
const
AVClass
ilbc_dec_class
=
{
"libilbc"
,
av_default_item_name
,
ilbc_dec_options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libilbc"
,
.
item_name
=
av_default_item_name
,
.
option
=
ilbc_dec_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
ilbc_decode_init
(
AVCodecContext
*
avctx
)
...
...
@@ -126,7 +129,10 @@ static const AVOption ilbc_enc_options[] = {
};
static
const
AVClass
ilbc_enc_class
=
{
"libilbc"
,
av_default_item_name
,
ilbc_enc_options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libilbc"
,
.
item_name
=
av_default_item_name
,
.
option
=
ilbc_enc_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
ilbc_encode_init
(
AVCodecContext
*
avctx
)
...
...
libavcodec/libopencore-amr.c
View file @
97cfe1d8
...
...
@@ -184,7 +184,10 @@ static const AVOption options[] = {
};
static
const
AVClass
class
=
{
"libopencore_amrnb"
,
av_default_item_name
,
options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libopencore_amrnb"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
amr_nb_encode_init
(
AVCodecContext
*
avctx
)
...
...
libavcodec/libopenh264enc.c
View file @
97cfe1d8
...
...
@@ -75,7 +75,10 @@ static const AVOption options[] = {
};
static
const
AVClass
class
=
{
"libopenh264enc"
,
av_default_item_name
,
options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libopenh264enc"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
av_cold
int
svc_encode_close
(
AVCodecContext
*
avctx
)
...
...
libavcodec/libvo-amrwbenc.c
View file @
97cfe1d8
...
...
@@ -46,7 +46,10 @@ static const AVOption options[] = {
};
static
const
AVClass
class
=
{
"libvo_amrwbenc"
,
av_default_item_name
,
options
,
LIBAVUTIL_VERSION_INT
.
class_name
=
"libvo_amrwbenc"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
int
get_wb_bitrate_mode
(
int
bitrate
,
void
*
log_ctx
)
...
...
libavcodec/libvorbis.c
View file @
97cfe1d8
...
...
@@ -72,7 +72,12 @@ static const AVCodecDefault defaults[] = {
{
NULL
},
};
static
const
AVClass
class
=
{
"libvorbis"
,
av_default_item_name
,
options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
class
=
{
.
class_name
=
"libvorbis"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
int
vorbis_error_to_averror
(
int
ov_err
)
...
...
libavfilter/vf_drawtext.c
View file @
97cfe1d8
...
...
@@ -209,9 +209,9 @@ static const char *drawtext_get_name(void *ctx)
}
static
const
AVClass
drawtext_class
=
{
"DrawTextContext"
,
drawtext_get_name
,
drawtext_options
.
class_name
=
"DrawTextContext"
,
.
item_name
=
drawtext_get_name
,
.
option
=
drawtext_options
,
};
#undef __FTERRORS_H__
...
...
libavfilter/vsrc_movie.c
View file @
97cfe1d8
...
...
@@ -81,9 +81,9 @@ static const char *movie_get_name(void *ctx)
}
static
const
AVClass
movie_class
=
{
"MovieContext"
,
movie_get_name
,
movie_options
.
class_name
=
"MovieContext"
,
.
item_name
=
movie_get_name
,
.
option
=
movie_options
,
};
static
av_cold
int
movie_init
(
AVFilterContext
*
ctx
)
...
...
libavutil/eval.c
View file @
97cfe1d8
...
...
@@ -52,7 +52,14 @@ typedef struct Parser {
double
var
[
VARS
];
}
Parser
;
static
const
AVClass
class
=
{
"Eval"
,
av_default_item_name
,
NULL
,
LIBAVUTIL_VERSION_INT
,
offsetof
(
Parser
,
log_offset
),
offsetof
(
Parser
,
log_ctx
)
};
static
const
AVClass
class
=
{
.
class_name
=
"Eval"
,
.
item_name
=
av_default_item_name
,
.
option
=
NULL
,
.
version
=
LIBAVUTIL_VERSION_INT
,
.
log_level_offset_offset
=
offsetof
(
Parser
,
log_offset
),
.
parent_log_context_offset
=
offsetof
(
Parser
,
log_ctx
),
};
static
const
int8_t
si_prefixes
[
'z'
-
'E'
+
1
]
=
{
[
'y'
-
'E'
]
=
-
24
,
...
...
libavutil/file.c
View file @
97cfe1d8
...
...
@@ -42,8 +42,12 @@ typedef struct FileLogContext {
}
FileLogContext
;
static
const
AVClass
file_log_ctx_class
=
{
"FILE"
,
av_default_item_name
,
NULL
,
LIBAVUTIL_VERSION_INT
,
offsetof
(
FileLogContext
,
log_offset
),
offsetof
(
FileLogContext
,
log_ctx
)
.
class_name
=
"FILE"
,
.
item_name
=
av_default_item_name
,
.
option
=
NULL
,
.
version
=
LIBAVUTIL_VERSION_INT
,
.
log_level_offset_offset
=
offsetof
(
FileLogContext
,
log_offset
),
.
parent_log_context_offset
=
offsetof
(
FileLogContext
,
log_ctx
),
};
int
av_file_map
(
const
char
*
filename
,
uint8_t
**
bufptr
,
size_t
*
size
,
...
...
libavutil/imgutils.c
View file @
97cfe1d8
...
...
@@ -219,7 +219,14 @@ typedef struct ImgUtils {
void
*
log_ctx
;
}
ImgUtils
;
static
const
AVClass
imgutils_class
=
{
"IMGUTILS"
,
av_default_item_name
,
NULL
,
LIBAVUTIL_VERSION_INT
,
offsetof
(
ImgUtils
,
log_offset
),
offsetof
(
ImgUtils
,
log_ctx
)
};
static
const
AVClass
imgutils_class
=
{
.
class_name
=
"IMGUTILS"
,
.
item_name
=
av_default_item_name
,
.
option
=
NULL
,
.
version
=
LIBAVUTIL_VERSION_INT
,
.
log_level_offset_offset
=
offsetof
(
ImgUtils
,
log_offset
),
.
parent_log_context_offset
=
offsetof
(
ImgUtils
,
log_ctx
),
};
int
av_image_check_size
(
unsigned
int
w
,
unsigned
int
h
,
int
log_offset
,
void
*
log_ctx
)
{
...
...
libavutil/tests/opt.c
View file @
97cfe1d8
...
...
@@ -59,9 +59,9 @@ static const char *test_get_name(void *ctx)
}
static
const
AVClass
test_class
=
{
"TestContext"
,
test_get_name
,
test_options
.
class_name
=
"TestContext"
,
.
item_name
=
test_get_name
,
.
option
=
test_options
,
};
int
main
(
void
)
...
...
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