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
cdf95dd2
Commit
cdf95dd2
authored
Nov 07, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed ES_OUT_SET_FMT name.
parent
52f79869
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_es_out.h
include/vlc_es_out.h
+1
-1
modules/demux/ogg.c
modules/demux/ogg.c
+1
-1
No files found.
include/vlc_es_out.h
View file @
cdf95dd2
...
...
@@ -83,7 +83,7 @@ enum es_out_query_e
ES_OUT_GET_TS
,
/* arg1=int64_t i_ts(microsecond!) (using default group 0), arg2=int64_t* converted i_ts */
/* Try not to use this one as it is a bit hacky */
ES_OUT_SET_
FMT
,
/* arg1= es_out_id_t* arg2=es_format_t* */
ES_OUT_SET_
ES_FMT
,
/* arg1= es_out_id_t* arg2=es_format_t* */
/* Allow preroll of data (data with dts/pts < i_pts for all ES will be decoded but not displayed */
ES_OUT_SET_NEXT_DISPLAY_TIME
,
/* arg1=int64_t i_pts(microsecond) */
...
...
modules/demux/ogg.c
View file @
cdf95dd2
...
...
@@ -632,7 +632,7 @@ static void Ogg_DecodePacket( demux_t *p_demux,
p_stream
->
fmt
.
i_extra
=
0
;
if
(
Ogg_LogicalStreamResetEsFormat
(
p_demux
,
p_stream
)
)
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_FMT
,
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_
ES_
FMT
,
p_stream
->
p_es
,
&
p_stream
->
fmt
);
}
}
...
...
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