Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
cdbc7092
Commit
cdbc7092
authored
Dec 09, 2004
by
gbazin
Browse files
* src/libvlc.h: --video-deco is enabled by default.
* src/input/input.c: fixed small memory leak.
parent
9cef330d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/input/input.c
View file @
cdbc7092
...
...
@@ -61,7 +61,7 @@ static void UpdateItemLength( input_thread_t *, int64_t i_length );
static
void
ParseOption
(
input_thread_t
*
p_input
,
const
char
*
psz_option
);
static
void
DecodeUrl
(
char
*
);
static
void
DecodeUrl
(
char
*
);
static
void
MRLSplit
(
input_thread_t
*
,
char
*
,
char
**
,
char
**
,
char
**
);
static
void
MRLSections
(
input_thread_t
*
,
char
*
,
int
*
,
int
*
,
int
*
,
int
*
);
...
...
@@ -740,8 +740,8 @@ static int Init( input_thread_t * p_input )
}
psz
=
psz_delim
;
}
free
(
psz
);
}
if
(
psz
)
free
(
psz
);
/* Set up es_out */
es_out_Control
(
p_input
->
p_es_out
,
ES_OUT_SET_ACTIVE
,
VLC_TRUE
);
...
...
src/libvlc.h
View file @
cdbc7092
...
...
@@ -886,7 +886,7 @@ vlc_module_begin();
add_bool
(
"video-on-top"
,
0
,
NULL
,
VIDEO_ON_TOP_TEXT
,
VIDEO_ON_TOP_LONGTEXT
,
VLC_FALSE
);
add_bool
(
"video-deco"
,
0
,
NULL
,
VIDEO_DECO_TEXT
,
add_bool
(
"video-deco"
,
1
,
NULL
,
VIDEO_DECO_TEXT
,
VIDEO_DECO_LONGTEXT
,
VLC_TRUE
);
add_module
(
"filter"
,
"video filter"
,
NULL
,
NULL
,
FILTER_TEXT
,
FILTER_LONGTEXT
,
VLC_FALSE
);
...
...
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