Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
fae753af
Commit
fae753af
authored
Oct 27, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avplay: drop -vismv option which does not do anything anymore
parent
ccc71298
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
11 deletions
+1
-11
Changelog
Changelog
+1
-0
avplay.c
avplay.c
+0
-9
avplay.texi
doc/avplay.texi
+0
-2
No files found.
Changelog
View file @
fae753af
...
@@ -43,6 +43,7 @@ version 10:
...
@@ -43,6 +43,7 @@ version 10:
- HNM version 4 demuxer and video decoder
- HNM version 4 demuxer and video decoder
- HEVC decoder
- HEVC decoder
- raw HEVC, HEVC in MOV/MP4, HEVC in Matroska, HEVC in MPEG-TS demuxing
- raw HEVC, HEVC in MOV/MP4, HEVC in Matroska, HEVC in MPEG-TS demuxing
- remove avplay -vismv option, which has not worked for a long time
version 9:
version 9:
...
...
avplay.c
View file @
fae753af
...
@@ -242,7 +242,6 @@ static int show_status = 1;
...
@@ -242,7 +242,6 @@ static int show_status = 1;
static
int
av_sync_type
=
AV_SYNC_AUDIO_MASTER
;
static
int
av_sync_type
=
AV_SYNC_AUDIO_MASTER
;
static
int64_t
start_time
=
AV_NOPTS_VALUE
;
static
int64_t
start_time
=
AV_NOPTS_VALUE
;
static
int64_t
duration
=
AV_NOPTS_VALUE
;
static
int64_t
duration
=
AV_NOPTS_VALUE
;
static
int
debug_mv
=
0
;
static
int
step
=
0
;
static
int
step
=
0
;
static
int
workaround_bugs
=
1
;
static
int
workaround_bugs
=
1
;
static
int
fast
=
0
;
static
int
fast
=
0
;
...
@@ -2036,7 +2035,6 @@ static int stream_component_open(VideoState *is, int stream_index)
...
@@ -2036,7 +2035,6 @@ static int stream_component_open(VideoState *is, int stream_index)
opts
=
filter_codec_opts
(
codec_opts
,
avctx
->
codec_id
,
ic
,
ic
->
streams
[
stream_index
],
NULL
);
opts
=
filter_codec_opts
(
codec_opts
,
avctx
->
codec_id
,
ic
,
ic
->
streams
[
stream_index
],
NULL
);
codec
=
avcodec_find_decoder
(
avctx
->
codec_id
);
codec
=
avcodec_find_decoder
(
avctx
->
codec_id
);
avctx
->
debug_mv
=
debug_mv
;
avctx
->
workaround_bugs
=
workaround_bugs
;
avctx
->
workaround_bugs
=
workaround_bugs
;
avctx
->
idct_algo
=
idct
;
avctx
->
idct_algo
=
idct
;
avctx
->
skip_frame
=
skip_frame
;
avctx
->
skip_frame
=
skip_frame
;
...
@@ -2812,12 +2810,6 @@ static int opt_duration(void *optctx, const char *opt, const char *arg)
...
@@ -2812,12 +2810,6 @@ static int opt_duration(void *optctx, const char *opt, const char *arg)
return
0
;
return
0
;
}
}
static
int
opt_vismv
(
void
*
optctx
,
const
char
*
opt
,
const
char
*
arg
)
{
debug_mv
=
parse_number_or_die
(
opt
,
arg
,
OPT_INT64
,
INT_MIN
,
INT_MAX
);
return
0
;
}
static
const
OptionDef
options
[]
=
{
static
const
OptionDef
options
[]
=
{
#include "cmdutils_common_opts.h"
#include "cmdutils_common_opts.h"
{
"x"
,
HAS_ARG
,
{
.
func_arg
=
opt_width
},
"force displayed width"
,
"width"
},
{
"x"
,
HAS_ARG
,
{
.
func_arg
=
opt_width
},
"force displayed width"
,
"width"
},
...
@@ -2837,7 +2829,6 @@ static const OptionDef options[] = {
...
@@ -2837,7 +2829,6 @@ static const OptionDef options[] = {
{
"pix_fmt"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{
.
func_arg
=
opt_frame_pix_fmt
},
"set pixel format"
,
"format"
},
{
"pix_fmt"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{
.
func_arg
=
opt_frame_pix_fmt
},
"set pixel format"
,
"format"
},
{
"stats"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
show_status
},
"show status"
,
""
},
{
"stats"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
show_status
},
"show status"
,
""
},
{
"bug"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{
&
workaround_bugs
},
"workaround bugs"
,
""
},
{
"bug"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{
&
workaround_bugs
},
"workaround bugs"
,
""
},
{
"vismv"
,
HAS_ARG
|
OPT_EXPERT
,
{
.
func_arg
=
opt_vismv
},
"visualize motion vectors"
,
""
},
{
"fast"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
fast
},
"non spec compliant optimizations"
,
""
},
{
"fast"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
fast
},
"non spec compliant optimizations"
,
""
},
{
"genpts"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
genpts
},
"generate pts"
,
""
},
{
"genpts"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
genpts
},
"generate pts"
,
""
},
{
"drp"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{
&
decoder_reorder_pts
},
"let decoder reorder pts 0=off 1=on -1=auto"
,
""
},
{
"drp"
,
OPT_INT
|
HAS_ARG
|
OPT_EXPERT
,
{
&
decoder_reorder_pts
},
"let decoder reorder pts 0=off 1=on -1=auto"
,
""
},
...
...
doc/avplay.texi
View file @
fae753af
...
@@ -78,8 +78,6 @@ Show the stream duration, the codec parameters, the current position in
...
@@ -78,8 +78,6 @@ Show the stream duration, the codec parameters, the current position in
the stream and the audio/video synchronisation drift.
the stream and the audio/video synchronisation drift.
@item -bug
@item -bug
Work around bugs.
Work around bugs.
@item -vismv
Visualize motion vectors.
@item -fast
@item -fast
Non-spec-compliant optimizations.
Non-spec-compliant optimizations.
@item -genpts
@item -genpts
...
...
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