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
ca5d57ef
Commit
ca5d57ef
authored
Jul 14, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ac3enc: Mark AVClasses const
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
863e2046
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
ac3enc_fixed.c
libavcodec/ac3enc_fixed.c
+2
-2
ac3enc_float.c
libavcodec/ac3enc_float.c
+2
-2
eac3enc.c
libavcodec/eac3enc.c
+2
-2
No files found.
libavcodec/ac3enc_fixed.c
View file @
ca5d57ef
...
...
@@ -32,8 +32,8 @@
#define AC3ENC_TYPE AC3ENC_TYPE_AC3_FIXED
#include "ac3enc_opts_template.c"
static
AVClass
ac3enc_class
=
{
"Fixed-Point AC-3 Encoder"
,
av_default_item_name
,
ac3fixed_options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
ac3enc_class
=
{
"Fixed-Point AC-3 Encoder"
,
av_default_item_name
,
ac3fixed_options
,
LIBAVUTIL_VERSION_INT
};
#include "ac3enc_template.c"
...
...
libavcodec/ac3enc_float.c
View file @
ca5d57ef
...
...
@@ -35,8 +35,8 @@
#if CONFIG_AC3_ENCODER
#define AC3ENC_TYPE AC3ENC_TYPE_AC3
#include "ac3enc_opts_template.c"
static
AVClass
ac3enc_class
=
{
"AC-3 Encoder"
,
av_default_item_name
,
ac3_options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
ac3enc_class
=
{
"AC-3 Encoder"
,
av_default_item_name
,
ac3_options
,
LIBAVUTIL_VERSION_INT
};
#endif
#include "ac3enc_template.c"
...
...
libavcodec/eac3enc.c
View file @
ca5d57ef
...
...
@@ -31,8 +31,8 @@
#define AC3ENC_TYPE AC3ENC_TYPE_EAC3
#include "ac3enc_opts_template.c"
static
AVClass
eac3enc_class
=
{
"E-AC-3 Encoder"
,
av_default_item_name
,
eac3_options
,
LIBAVUTIL_VERSION_INT
};
static
const
AVClass
eac3enc_class
=
{
"E-AC-3 Encoder"
,
av_default_item_name
,
eac3_options
,
LIBAVUTIL_VERSION_INT
};
void
ff_eac3_set_cpl_states
(
AC3EncodeContext
*
s
)
...
...
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