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
9135a883
Commit
9135a883
authored
Dec 01, 2012
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed write only ts_es_t::b_gather
parent
d12bc4b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
modules/demux/ts.c
modules/demux/ts.c
+0
-5
No files found.
modules/demux/ts.c
View file @
9135a883
...
...
@@ -245,7 +245,6 @@ typedef struct
block_t
**
pp_last
;
es_mpeg4_descriptor_t
*
p_mpeg4desc
;
int
b_gather
;
}
ts_es_t
;
...
...
@@ -2161,7 +2160,6 @@ static void PIDFillFormat( ts_es_t *es, int i_stream_type )
break
;
case
0x10
:
/* MPEG4 (video) */
es_format_Init
(
fmt
,
VIDEO_ES
,
VLC_CODEC_MP4V
);
es
->
b_gather
=
true
;
break
;
case
0x1B
:
/* H264 <- check transport syntax/needed descriptor */
es_format_Init
(
fmt
,
VIDEO_ES
,
VLC_CODEC_H264
);
...
...
@@ -2202,7 +2200,6 @@ static void PIDFillFormat( ts_es_t *es, int i_stream_type )
case
0xa0
:
/* MSCODEC vlc (video) (fixed later) */
es_format_Init
(
fmt
,
UNKNOWN_ES
,
0
);
es
->
b_gather
=
true
;
break
;
case
0x06
:
/* PES_PRIVATE (fixed later) */
...
...
@@ -3182,7 +3179,6 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
p_es
->
i_data_gathered
=
0
;
p_es
->
pp_last
=
&
p_es
->
p_data
;
p_es
->
p_mpeg4desc
=
NULL
;
p_es
->
b_gather
=
false
;
TAB_APPEND
(
pid
->
i_extra_es
,
pid
->
extra_es
,
p_es
);
}
...
...
@@ -3266,7 +3262,6 @@ static void PMTSetupEsDvbSubtitle( demux_t *p_demux, ts_pid_t *pid,
p_es
->
i_data_gathered
=
0
;
p_es
->
pp_last
=
&
p_es
->
p_data
;
p_es
->
p_mpeg4desc
=
NULL
;
p_es
->
b_gather
=
false
;
TAB_APPEND
(
pid
->
i_extra_es
,
pid
->
extra_es
,
p_es
);
}
...
...
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