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
d32a6bc1
Commit
d32a6bc1
authored
Mar 06, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: remove 'lowres' option since it is ignored by libav
parent
82692c40
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
10 deletions
+0
-10
modules/codec/avcodec/avcodec.c
modules/codec/avcodec/avcodec.c
+0
-3
modules/codec/avcodec/avcodec.h
modules/codec/avcodec/avcodec.h
+0
-4
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+0
-3
No files found.
modules/codec/avcodec/avcodec.c
View file @
d32a6bc1
...
...
@@ -119,9 +119,6 @@ vlc_module_begin ()
add_integer
(
"avcodec-vismv"
,
0
,
VISMV_TEXT
,
VISMV_LONGTEXT
,
true
)
add_obsolete_integer
(
"ffmpeg-lowres"
)
/* removed since 2.1.0 */
add_integer
(
"avcodec-lowres"
,
0
,
LOWRES_TEXT
,
LOWRES_LONGTEXT
,
true
)
change_integer_range
(
0
,
2
)
add_obsolete_bool
(
"ffmpeg-fast"
)
/* removed since 2.1.0 */
add_bool
(
"avcodec-fast"
,
false
,
FAST_TEXT
,
FAST_LONGTEXT
,
false
)
add_obsolete_integer
(
"ffmpeg-skiploopfilter"
)
/* removed since 2.1.0 */
...
...
modules/codec/avcodec/avcodec.h
View file @
d32a6bc1
...
...
@@ -129,10 +129,6 @@ int ffmpeg_OpenCodec( decoder_t *p_dec );
"4 - visualize backward predicted MVs of B frames\n" \
"To visualize all vectors, the value should be 7." )
#define LOWRES_TEXT N_( "Low resolution decoding" )
#define LOWRES_LONGTEXT N_( "Only decode a low resolution version of " \
"the video. This requires less processing power" )
#define SKIPLOOPF_TEXT N_( "Skip the loop filter for H.264 decoding" )
#define SKIPLOOPF_LONGTEXT N_( "Skipping the loop filter (aka deblocking) " \
"usually has a detrimental effect on quality. However it provides a big " \
...
...
modules/codec/avcodec/video.c
View file @
d32a6bc1
...
...
@@ -225,9 +225,6 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
i_val
=
var_CreateGetInteger
(
p_dec
,
"avcodec-vismv"
);
if
(
i_val
)
p_sys
->
p_context
->
debug_mv
=
i_val
;
i_val
=
var_CreateGetInteger
(
p_dec
,
"avcodec-lowres"
);
if
(
i_val
>
0
&&
i_val
<=
2
)
p_sys
->
p_context
->
lowres
=
i_val
;
i_val
=
var_CreateGetInteger
(
p_dec
,
"avcodec-skiploopfilter"
);
if
(
i_val
>=
4
)
p_sys
->
p_context
->
skip_loop_filter
=
AVDISCARD_ALL
;
else
if
(
i_val
==
3
)
p_sys
->
p_context
->
skip_loop_filter
=
AVDISCARD_NONKEY
;
...
...
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