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
5efe481a
Commit
5efe481a
authored
Apr 24, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-qpel option
Originally committed as revision 3055 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
45d6de92
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 @
5efe481a
...
...
@@ -140,6 +140,7 @@ static int use_ss = 0;
static
int
use_alt_scan
=
0
;
static
int
use_trell
=
0
;
static
int
use_scan_offset
=
0
;
static
int
use_qpel
=
0
;
static
int
qns
=
0
;
static
int
closed_gop
=
0
;
static
int
do_deinterlace
=
0
;
...
...
@@ -2807,6 +2808,9 @@ static void opt_output_file(const char *filename)
if
(
closed_gop
)
{
video_enc
->
flags
|=
CODEC_FLAG_CLOSED_GOP
;
}
if
(
use_qpel
)
{
video_enc
->
flags
|=
CODEC_FLAG_QPEL
;
}
if
(
b_frames
)
{
video_enc
->
max_b_frames
=
b_frames
;
video_enc
->
b_frame_strategy
=
0
;
...
...
@@ -3535,6 +3539,7 @@ const OptionDef options[] = {
{
"trell"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_trell
},
"enable trellis quantization"
},
{
"cgop"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
closed_gop
},
"closed gop"
},
{
"scan_offset"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_scan_offset
},
"enable SVCD Scan Offset placeholder"
},
{
"qpel"
,
OPT_BOOL
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
&
use_qpel
},
"enable 1/4-pel"
},
{
"intra_matrix"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_intra_matrix
},
"specify intra matrix coeffs"
,
"matrix"
},
{
"inter_matrix"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_inter_matrix
},
"specify inter matrix coeffs"
,
"matrix"
},
{
"top"
,
HAS_ARG
|
OPT_EXPERT
|
OPT_VIDEO
,
{(
void
*
)
opt_top_field_first
},
"top=1/bottom=0/auto=-1 field first"
,
""
},
...
...
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