Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
6387c3e6
Commit
6387c3e6
authored
20 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
-bug
Originally committed as revision 3098 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d01dbeb8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ffplay.c
+3
-0
3 additions, 0 deletions
ffplay.c
with
3 additions
and
0 deletions
ffplay.c
+
3
−
0
View file @
6387c3e6
...
@@ -169,6 +169,7 @@ static int debug = 0;
...
@@ -169,6 +169,7 @@ static int debug = 0;
static
int
debug_mv
=
0
;
static
int
debug_mv
=
0
;
static
int
step
=
0
;
static
int
step
=
0
;
static
int
thread_count
=
1
;
static
int
thread_count
=
1
;
static
int
workaround_bugs
=
1
;
/* current context */
/* current context */
static
int
is_full_screen
;
static
int
is_full_screen
;
...
@@ -1169,6 +1170,7 @@ static int stream_component_open(VideoState *is, int stream_index)
...
@@ -1169,6 +1170,7 @@ static int stream_component_open(VideoState *is, int stream_index)
codec
=
avcodec_find_decoder
(
enc
->
codec_id
);
codec
=
avcodec_find_decoder
(
enc
->
codec_id
);
enc
->
debug_mv
=
debug_mv
;
enc
->
debug_mv
=
debug_mv
;
enc
->
debug
=
debug
;
enc
->
debug
=
debug
;
enc
->
workaround_bugs
=
workaround_bugs
;
if
(
!
codec
||
if
(
!
codec
||
avcodec_open
(
enc
,
codec
)
<
0
)
avcodec_open
(
enc
,
codec
)
<
0
)
return
-
1
;
return
-
1
;
...
@@ -1824,6 +1826,7 @@ const OptionDef options[] = {
...
@@ -1824,6 +1826,7 @@ const OptionDef options[] = {
{
"img"
,
HAS_ARG
,
{(
void
*
)
opt_image_format
},
"force image format"
,
"img_fmt"
},
{
"img"
,
HAS_ARG
,
{(
void
*
)
opt_image_format
},
"force image format"
,
"img_fmt"
},
{
"stats"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
show_status
},
"show status"
,
""
},
{
"stats"
,
OPT_BOOL
|
OPT_EXPERT
,
{(
void
*
)
&
show_status
},
"show status"
,
""
},
{
"debug"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_debug
},
"print specific debug info"
,
""
},
{
"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"
,
""
},
{
"vismv"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_vismv
},
"visualize motion vectors"
,
""
},
#ifdef CONFIG_NETWORK
#ifdef CONFIG_NETWORK
{
"rtp_tcp"
,
OPT_EXPERT
,
{(
void
*
)
&
opt_rtp_tcp
},
"force RTP/TCP protocol usage"
,
""
},
{
"rtp_tcp"
,
OPT_EXPERT
,
{(
void
*
)
&
opt_rtp_tcp
},
"force RTP/TCP protocol usage"
,
""
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment