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
bb337b4f
Commit
bb337b4f
authored
Aug 18, 2011
by
Alex Converse
Committed by
Luca Barbato
Aug 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: Fix spelling errors.
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
44920d04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
avconv.c
avconv.c
+4
-4
No files found.
avconv.c
View file @
bb337b4f
...
...
@@ -393,7 +393,7 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost)
codec
->
width
=
ost
->
output_video_filter
->
inputs
[
0
]
->
w
;
codec
->
height
=
ost
->
output_video_filter
->
inputs
[
0
]
->
h
;
codec
->
sample_aspect_ratio
=
ost
->
st
->
sample_aspect_ratio
=
ost
->
frame_aspect_ratio
?
// overriden by the -aspect cli option
ost
->
frame_aspect_ratio
?
// overrid
d
en by the -aspect cli option
av_d2q
(
ost
->
frame_aspect_ratio
*
codec
->
height
/
codec
->
width
,
255
)
:
ost
->
output_video_filter
->
inputs
[
0
]
->
sample_aspect_ratio
;
...
...
@@ -1074,7 +1074,7 @@ static void do_video_resample(OutputStream *ost,
if
(
resample_changed
)
{
avfilter_graph_free
(
&
ost
->
graph
);
if
(
configure_video_filters
(
ist
,
ost
))
{
fprintf
(
stderr
,
"Error reinitiali
s
ing filters!
\n
"
);
fprintf
(
stderr
,
"Error reinitiali
z
ing filters!
\n
"
);
exit_program
(
1
);
}
}
...
...
@@ -1151,7 +1151,7 @@ static void do_video_out(AVFormatContext *s,
if
(
s
->
oformat
->
flags
&
AVFMT_RAWPICTURE
)
{
/* raw pictures are written as AVPicture structure to
avoid any copies. We support temorarily the older
avoid any copies. We support tem
p
orarily the older
method. */
AVFrame
*
old_frame
=
enc
->
coded_frame
;
enc
->
coded_frame
=
dec
->
coded_frame
;
//FIXME/XXX remove this hack
...
...
@@ -4097,7 +4097,7 @@ static const OptionDef options[] = {
{
"qscale"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_qscale
},
"use fixed video quantizer scale (VBR)"
,
"q"
},
{
"rc_override"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_video_rc_override_string
},
"rate control override for specific intervals"
,
"override"
},
{
"vcodec"
,
HAS_ARG
|
OPT_VIDEO
,
{(
void
*
)
opt_video_codec
},
"force video codec ('copy' to copy stream)"
,
"codec"
},
{
"me_threshold"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_me_threshold
},
"motion estimaton threshold"
,
"threshold"
},
{
"me_threshold"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_me_threshold
},
"motion estimat
i
on threshold"
,
"threshold"
},
{
"same_quant"
,
OPT_BOOL
|
OPT_VIDEO
,
{(
void
*
)
&
same_quant
},
"use same quantizer as source (implies VBR)"
},
{
"pass"
,
HAS_ARG
|
OPT_VIDEO
,
{(
void
*
)
opt_pass
},
"select the pass number (1 or 2)"
,
"n"
},
...
...
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