Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
b7741643
Commit
b7741643
authored
Feb 22, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix compilation.
parent
06399606
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/encoder/xvid.c
modules/encoder/xvid.c
+3
-3
No files found.
modules/encoder/xvid.c
View file @
b7741643
...
...
@@ -2,7 +2,7 @@
* xvid.c: an encoder for libxvidcore, the Xvid video codec
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: xvid.c,v 1.
2 2003/02/20 01:52:46 sigmunau
Exp $
* $Id: xvid.c,v 1.
3 2003/02/22 16:10:31 fenrir
Exp $
*
* Authors: Laurent Aimar
*
...
...
@@ -65,11 +65,11 @@ vlc_module_begin();
add_integer
(
"encoder-xvid-min-quantizer"
,
2
,
NULL
,
"min quantizer"
,
"range 1-31"
,
VLC_TRUE
);
add_integer
(
"encoder-xvid-max-quantizer"
,
31
,
NULL
,
"max quantizer"
,
"1-31"
,
VLC_TRUE
);
add_integer
(
"encoder-xvid-max-key-interval"
,
-
1
,
NULL
,
"max key interval"
,
"maximum value of frames between two keyframes"
,
VLC_TRUE
);
add_category_hint
(
"advanced setting"
,
NULL
);
add_category_hint
(
"advanced setting"
,
NULL
,
VLC_TRUE
);
add_integer
(
"encoder-xvid-reaction-delay-factor"
,
-
1
,
NULL
,
"rc reaction delay factor"
,
"rate controler parameters"
,
VLC_TRUE
);
add_integer
(
"encoder-xvid-averaging-period"
,
-
1
,
NULL
,
"rc averaging period"
,
"rate controler parameters"
,
VLC_TRUE
);
add_integer
(
"encoder-xvid-buffer"
,
-
1
,
NULL
,
"rc buffer"
,
"rate controler parameters"
,
VLC_TRUE
);
add_category_hint
(
"advanced frame setting"
,
NULL
);
add_category_hint
(
"advanced frame setting"
,
NULL
,
VLC_TRUE
);
add_string_from_list
(
"encoder-xvid-quantization"
,
"MPEG"
,
ppsz_xvid_quant_algo
,
NULL
,
"quantization algorithm"
,
""
,
VLC_TRUE
);
add_bool
(
"encoder-xvid-halfpel"
,
1
,
NULL
,
"half pixel motion estimation."
,
""
,
VLC_TRUE
);
add_bool
(
"encoder-xvid-4mv"
,
0
,
NULL
,
"fourc vector per macroblock(need halfpel)"
,
""
,
VLC_TRUE
);
...
...
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