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
d7646d7d
Commit
d7646d7d
authored
Mar 26, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h263 loop filter option
Originally committed as revision 2930 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b73afeac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
ffmpeg.c
ffmpeg.c
+5
-0
No files found.
ffmpeg.c
View file @
d7646d7d
...
...
@@ -126,6 +126,7 @@ static float tcplx_mask = 0;
static
float
p_mask
=
0
;
static
int
use_4mv
=
0
;
static
int
use_obmc
=
0
;
static
int
use_loop
=
0
;
static
int
use_aic
=
0
;
static
int
use_aiv
=
0
;
static
int
use_umv
=
0
;
...
...
@@ -2497,6 +2498,9 @@ static void opt_output_file(const char *filename)
if
(
use_obmc
)
{
video_enc
->
flags
|=
CODEC_FLAG_OBMC
;
}
if
(
use_loop
)
{
video_enc
->
flags
|=
CODEC_FLAG_LOOP_FILTER
;
}
if
(
use_part
)
{
video_enc
->
flags
|=
CODEC_FLAG_PART
;
...
...
@@ -3195,6 +3199,7 @@ const OptionDef options[] = {
{
"p_mask"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_p_mask
},
"inter masking"
,
""
},
{
"4mv"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_4mv
},
"use four motion vector by macroblock (MPEG4)"
},
{
"obmc"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_obmc
},
"use overlapped block motion compensation (h263+)"
},
{
"lf"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_loop
},
"use loop filter (h263+)"
},
{
"part"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_part
},
"use data partitioning (MPEG4)"
},
{
"bug"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_workaround_bugs
},
"workaround not auto detected encoder bugs"
,
"param"
},
{
"ps"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_packet_size
},
"set packet size in bits"
,
"size"
},
...
...
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