Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
7fbf82b3
Commit
7fbf82b3
authored
Jan 27, 2009
by
Jean-Philippe Andre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation
Missing ;
parent
6f02f88b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
modules/control/http/macro.c
modules/control/http/macro.c
+2
-2
modules/demux/mkv/matroska_segment.cpp
modules/demux/mkv/matroska_segment.cpp
+1
-1
modules/demux/subtitle.c
modules/demux/subtitle.c
+1
-1
modules/demux/ts.c
modules/demux/ts.c
+4
-4
modules/misc/freetype.c
modules/misc/freetype.c
+1
-1
No files found.
modules/control/http/macro.c
View file @
7fbf82b3
...
...
@@ -208,12 +208,12 @@ static void MacroDo( httpd_file_sys_t *p_args,
}
case
MVLC_STOP
:
playlist_Control
(
p_sys
->
p_playlist
,
PLAYLIST_STOP
,
true
)
true
)
;
msg_Dbg
(
p_intf
,
"requested playlist stop"
);
break
;
case
MVLC_PAUSE
:
playlist_Control
(
p_sys
->
p_playlist
,
PLAYLIST_PAUSE
,
true
)
true
)
;
msg_Dbg
(
p_intf
,
"requested playlist pause"
);
break
;
case
MVLC_NEXT
:
...
...
modules/demux/mkv/matroska_segment.cpp
View file @
7fbf82b3
...
...
@@ -789,7 +789,7 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
stream_t
*
p_mp4_stream
=
stream_MemoryNew
(
VLC_OBJECT
(
&
sys
.
demuxer
),
tracks
[
i_track
]
->
p_extra_data
,
tracks
[
i_track
]
->
i_extra_data
,
true
)
true
)
;
MP4_ReadBoxCommon
(
p_mp4_stream
,
p_box
);
MP4_ReadBox_sample_vide
(
p_mp4_stream
,
p_box
);
tracks
[
i_track
]
->
fmt
.
i_codec
=
p_box
->
i_type
;
...
...
modules/demux/subtitle.c
View file @
7fbf82b3
...
...
@@ -956,7 +956,7 @@ static int ParseSubViewer( demux_t *p_demux, subtitle_t *p_subtitle,
return
ParseSubRipSubViewer
(
p_demux
,
p_subtitle
,
"%d:%d:%d.%d,%d:%d:%d.%d"
,
true
)
true
)
;
}
/* ParseSSA
...
...
modules/demux/ts.c
View file @
7fbf82b3
...
...
@@ -1337,10 +1337,10 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
{
stream_Control
(
p_demux
->
s
,
STREAM_CONTROL_ACCESS
,
ACCESS_SET_PRIVATE_ID_STATE
,
i_pmt_pid
,
true
)
true
)
;
stream_Control
(
p_demux
->
s
,
STREAM_CONTROL_ACCESS
,
ACCESS_SET_PRIVATE_ID_STATE
,
p_prg
->
i_pid_pcr
,
true
)
true
)
;
for
(
i
=
2
;
i
<
8192
;
i
++
)
{
...
...
@@ -3091,7 +3091,7 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
/* Set demux filter */
stream_Control
(
p_demux
->
s
,
STREAM_CONTROL_ACCESS
,
ACCESS_SET_PRIVATE_ID_STATE
,
prg
->
i_pid_pcr
,
true
)
true
)
;
}
else
if
(
p_sys
->
b_dvb_control
)
{
...
...
@@ -3910,7 +3910,7 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
/* Set demux filter */
stream_Control
(
p_demux
->
s
,
STREAM_CONTROL_ACCESS
,
ACCESS_SET_PRIVATE_ID_STATE
,
p_es
->
i_pid
,
true
)
true
)
;
}
}
...
...
modules/misc/freetype.c
View file @
7fbf82b3
...
...
@@ -2241,7 +2241,7 @@ static int RenderHtml( filter_t *p_filter, subpicture_region_t *p_region_out,
p_sub
=
stream_MemoryNew
(
VLC_OBJECT
(
p_filter
),
(
uint8_t
*
)
p_region_in
->
psz_html
,
strlen
(
p_region_in
->
psz_html
),
true
)
true
)
;
if
(
p_sub
)
{
p_xml
=
xml_Create
(
p_filter
);
...
...
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