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
e77a3095
Commit
e77a3095
authored
Jun 07, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffplay: remove -vismv option
Use -vismv 1 instead. Simplify.
parent
21bf6d7a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
11 deletions
+0
-11
ffplay.texi
doc/ffplay.texi
+0
-2
ffplay.c
ffplay.c
+0
-9
No files found.
doc/ffplay.texi
View file @
e77a3095
...
...
@@ -97,8 +97,6 @@ the stream and the audio/video synchronisation drift.
Print specific debug info.
@item -bug
Work around bugs.
@item -vismv
Visualize motion vectors.
@item -fast
Non-spec-compliant optimizations.
@item -genpts
...
...
ffplay.c
View file @
e77a3095
...
...
@@ -240,7 +240,6 @@ static int av_sync_type = AV_SYNC_AUDIO_MASTER;
static
int64_t
start_time
=
AV_NOPTS_VALUE
;
static
int64_t
duration
=
AV_NOPTS_VALUE
;
static
int
debug
=
0
;
static
int
debug_mv
=
0
;
static
int
step
=
0
;
static
int
thread_count
=
1
;
static
int
workaround_bugs
=
1
;
...
...
@@ -2134,7 +2133,6 @@ static int stream_component_open(VideoState *is, int stream_index)
if
(
!
codec
)
return
-
1
;
avctx
->
debug_mv
=
debug_mv
;
avctx
->
debug
=
debug
;
avctx
->
workaround_bugs
=
workaround_bugs
;
avctx
->
lowres
=
lowres
;
...
...
@@ -2892,12 +2890,6 @@ static int opt_debug(const char *opt, const char *arg)
return
0
;
}
static
int
opt_vismv
(
const
char
*
opt
,
const
char
*
arg
)
{
debug_mv
=
parse_number_or_die
(
opt
,
arg
,
OPT_INT64
,
INT_MIN
,
INT_MAX
);
return
0
;
}
static
int
opt_thread_count
(
const
char
*
opt
,
const
char
*
arg
)
{
thread_count
=
parse_number_or_die
(
opt
,
arg
,
OPT_INT64
,
0
,
INT_MAX
);
...
...
@@ -2949,7 +2941,6 @@ static const OptionDef options[] = {
{
"stats"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
show_status
},
"show status"
,
""
},
{
"debug"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_debug
},
"print specific debug info"
,
""
},
{
"bug"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
workaround_bugs
},
"workaround bugs"
,
""
},
{
"vismv"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_vismv
},
"visualize motion vectors"
,
""
},
{
"fast"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
fast
},
"non spec compliant optimizations"
,
""
},
{
"genpts"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
genpts
},
"generate pts"
,
""
},
{
"drp"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
&
decoder_reorder_pts
},
"let decoder reorder pts 0=off 1=on -1=auto"
,
""
},
...
...
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