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
038c0b1e
Commit
038c0b1e
authored
Aug 19, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: make the -pass option per-stream.
parent
e2785fa7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
12 deletions
+8
-12
Changelog
Changelog
+2
-1
avconv.h
avconv.h
+2
-0
avconv_opt.c
avconv_opt.c
+3
-10
avconv.texi
doc/avconv.texi
+1
-1
No files found.
Changelog
View file @
038c0b1e
...
...
@@ -42,7 +42,8 @@ version <next>:
- RTMPE protocol support
- RTMPTE protocol support
- Canopus Lossless Codec decoder
- avconv -shortest option is now per-output file
- avconv -shortest option is now per-output file,
-pass is now per-output stream
- Ut Video encoder
...
...
avconv.h
View file @
038c0b1e
...
...
@@ -158,6 +158,8 @@ typedef struct OptionsContext {
int
nb_copy_initial_nonkeyframes
;
SpecifierOpt
*
filters
;
int
nb_filters
;
SpecifierOpt
*
pass
;
int
nb_pass
;
}
OptionsContext
;
typedef
struct
InputFilter
{
...
...
avconv_opt.c
View file @
038c0b1e
...
...
@@ -77,7 +77,6 @@ int same_quant = 0;
static
int
file_overwrite
=
0
;
static
int
video_discard
=
0
;
static
int
intra_dc_precision
=
8
;
static
int
do_pass
=
0
;
static
int
using_stdin
=
0
;
static
int
input_sync
;
...
...
@@ -886,6 +885,7 @@ static OutputStream *new_video_stream(OptionsContext *o, AVFormatContext *oc)
char
*
frame_aspect_ratio
=
NULL
,
*
frame_pix_fmt
=
NULL
;
char
*
intra_matrix
=
NULL
,
*
inter_matrix
=
NULL
;
const
char
*
filters
=
"null"
;
int
do_pass
=
0
;
int
i
;
MATCH_PER_STREAM_OPT
(
frame_rates
,
str
,
frame_rate
,
oc
,
st
);
...
...
@@ -958,6 +958,7 @@ static OutputStream *new_video_stream(OptionsContext *o, AVFormatContext *oc)
video_enc
->
intra_dc_precision
=
intra_dc_precision
-
8
;
/* two pass mode */
MATCH_PER_STREAM_OPT
(
pass
,
i
,
do_pass
,
oc
,
st
);
if
(
do_pass
)
{
if
(
do_pass
==
1
)
{
video_enc
->
flags
|=
CODEC_FLAG_PASS1
;
...
...
@@ -1495,14 +1496,6 @@ loop_end:
reset_options
(
o
);
}
/* same option as mencoder */
static
int
opt_pass
(
const
char
*
opt
,
const
char
*
arg
)
{
do_pass
=
parse_number_or_die
(
opt
,
arg
,
OPT_INT
,
1
,
2
);
return
0
;
}
static
int
opt_target
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
OptionsContext
*
o
=
optctx
;
...
...
@@ -1972,7 +1965,7 @@ const OptionDef options[] = {
"force video codec ('copy' to copy stream)"
,
"codec"
},
{
"same_quant"
,
OPT_VIDEO
|
OPT_BOOL
|
OPT_EXPERT
,
{
&
same_quant
},
"use same quantizer as source (implies VBR)"
},
{
"pass"
,
OPT_VIDEO
|
HAS_ARG
,
{
opt_pass
},
{
"pass"
,
OPT_VIDEO
|
HAS_ARG
|
OPT_SPEC
|
OPT_INT
,
{
.
off
=
OFFSET
(
pass
)
},
"select the pass number (1 or 2)"
,
"n"
},
{
"passlogfile"
,
OPT_VIDEO
|
HAS_ARG
|
OPT_STRING
|
OPT_EXPERT
,
{
&
pass_logfilename_prefix
},
"select two pass log file name prefix"
,
"prefix"
},
...
...
doc/avconv.texi
View file @
038c0b1e
...
...
@@ -479,7 +479,7 @@ Use same quantizer as source (implies VBR).
Note that this is NOT SAME QUALITY. Do not use this option unless you know you
need it.
@item -pass
@var
{
n
}
@item -pass
[:@var
{
stream
_
specifier
}
] @var
{
n
}
(@emph
{
output,per-stream
}
)
Select the pass number (1 or 2). It is used to do two-pass
video encoding. The statistics of the video are recorded in the first
pass into a log file (see also the option -passlogfile),
...
...
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