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
423ec777
Commit
423ec777
authored
Dec 16, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove excess whitespace
parent
1be52364
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
12 deletions
+2
-12
modules/codec/telx.c
modules/codec/telx.c
+0
-3
modules/demux/ps.h
modules/demux/ps.h
+1
-1
modules/misc/gtk_main.c
modules/misc/gtk_main.c
+0
-1
src/control/vlm.c
src/control/vlm.c
+0
-6
src/input/vlm.c
src/input/vlm.c
+1
-1
No files found.
modules/codec/telx.c
View file @
423ec777
...
...
@@ -183,7 +183,6 @@ static int Open( vlc_object_t *p_this )
return
VLC_ENOMEM
;
}
memset
(
p_sys
,
0
,
sizeof
(
decoder_sys_t
)
);
p_sys
->
i_align
=
0
;
...
...
@@ -629,7 +628,6 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
dbg
((
p_dec
,
"%s
\n
"
,
dbg
));
}
#endif
}
else
if
(
row
==
25
)
{
...
...
@@ -736,4 +734,3 @@ error:
block_Release
(
p_block
);
return
NULL
;
}
modules/demux/ps.h
View file @
423ec777
...
...
@@ -165,7 +165,7 @@ static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id )
/* PES packets usually contain truncated frames */
tk
->
fmt
.
b_packetized
=
VLC_FALSE
;
if
(
ps_id_to_lang
(
p_psm
,
i_id
)
)
if
(
ps_id_to_lang
(
p_psm
,
i_id
)
)
{
tk
->
fmt
.
psz_language
=
malloc
(
4
);
memcpy
(
tk
->
fmt
.
psz_language
,
ps_id_to_lang
(
p_psm
,
i_id
),
3
);
...
...
modules/misc/gtk_main.c
View file @
423ec777
...
...
@@ -193,4 +193,3 @@ static void GtkMain( vlc_object_t *p_this )
gdk_threads_leave
();
}
src/control/vlm.c
View file @
423ec777
...
...
@@ -232,7 +232,6 @@ void libvlc_vlm_add_input( libvlc_instance_t *p_instance, char *psz_name,
#undef VLM_CHANGE_CODE
}
void
libvlc_vlm_change_media
(
libvlc_instance_t
*
p_instance
,
char
*
psz_name
,
char
*
psz_input
,
char
*
psz_output
,
int
i_options
,
char
**
ppsz_options
,
int
b_enabled
,
int
b_loop
,
...
...
@@ -259,7 +258,6 @@ void libvlc_vlm_change_media( libvlc_instance_t *p_instance, char *psz_name,
void
libvlc_vlm_play_media
(
libvlc_instance_t
*
p_instance
,
char
*
psz_name
,
libvlc_exception_t
*
p_exception
)
{
vlm_t
*
p_vlm
;
int64_t
id
;
...
...
@@ -275,7 +273,6 @@ void libvlc_vlm_play_media( libvlc_instance_t *p_instance, char *psz_name,
void
libvlc_vlm_stop_media
(
libvlc_instance_t
*
p_instance
,
char
*
psz_name
,
libvlc_exception_t
*
p_exception
)
{
vlm_t
*
p_vlm
;
int64_t
id
;
...
...
@@ -291,7 +288,6 @@ void libvlc_vlm_stop_media( libvlc_instance_t *p_instance, char *psz_name,
void
libvlc_vlm_pause_media
(
libvlc_instance_t
*
p_instance
,
char
*
psz_name
,
libvlc_exception_t
*
p_exception
)
{
vlm_t
*
p_vlm
;
int64_t
id
;
...
...
@@ -307,7 +303,6 @@ void libvlc_vlm_pause_media( libvlc_instance_t *p_instance, char *psz_name,
void
libvlc_vlm_seek_media
(
libvlc_instance_t
*
p_instance
,
char
*
psz_name
,
float
f_percentage
,
libvlc_exception_t
*
p_exception
)
{
vlm_t
*
p_vlm
;
int64_t
id
;
...
...
@@ -385,4 +380,3 @@ char* libvlc_vlm_show_media( libvlc_instance_t *p_instance, char *psz_name,
libvlc_exception_raise
(
p_exception
,
"Unable to call show %s"
,
psz_name
);
return
NULL
;
}
src/input/vlm.c
View file @
423ec777
...
...
@@ -34,7 +34,6 @@
#ifdef ENABLE_VLM
#ifdef HAVE_TIME_H
# include <time.h>
/* ctime() */
# include <sys/timeb.h>
/* ftime() */
...
...
@@ -867,6 +866,7 @@ error:
}
return
VLC_EGENERIC
;
}
static
int
ExecuteNew
(
vlm_t
*
p_vlm
,
const
char
*
psz_name
,
const
char
*
psz_type
,
const
int
i_property
,
char
*
ppsz_property
[],
vlm_message_t
**
pp_status
)
{
/* Check name */
...
...
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