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
374033ee
Commit
374033ee
authored
Sep 22, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: remove now unneeded old *_codec_name code
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
8ccb56ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
ffmpeg_opt.c
ffmpeg_opt.c
+0
-6
No files found.
ffmpeg_opt.c
View file @
374033ee
...
...
@@ -91,9 +91,6 @@ int frame_bits_per_raw_sample = 0;
static
int
intra_only
=
0
;
static
const
char
*
video_codec_name
=
NULL
;
static
const
char
*
audio_codec_name
=
NULL
;
static
const
char
*
subtitle_codec_name
=
NULL
;
static
int
file_overwrite
=
0
;
static
int
no_file_overwrite
=
0
;
static
int
video_discard
=
0
;
...
...
@@ -178,21 +175,18 @@ static int opt_video_standard(void *optctx, const char *opt, const char *arg)
static
int
opt_audio_codec
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
OptionsContext
*
o
=
optctx
;
audio_codec_name
=
arg
;
return
parse_option
(
o
,
"codec:a"
,
arg
,
options
);
}
static
int
opt_video_codec
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
OptionsContext
*
o
=
optctx
;
video_codec_name
=
arg
;
return
parse_option
(
o
,
"codec:v"
,
arg
,
options
);
}
static
int
opt_subtitle_codec
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
OptionsContext
*
o
=
optctx
;
subtitle_codec_name
=
arg
;
return
parse_option
(
o
,
"codec:s"
,
arg
,
options
);
}
...
...
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