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
1a26c53f
Commit
1a26c53f
authored
Oct 05, 2015
by
Petri Hintukainen
Committed by
Jean-Baptiste Kempf
Oct 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: use VLC_DEMUXER_ defines for Demux() return values
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
887ce251
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/access/bluray.c
modules/access/bluray.c
+4
-4
No files found.
modules/access/bluray.c
View file @
1a26c53f
...
@@ -1829,7 +1829,7 @@ static int blurayDemux(demux_t *p_demux)
...
@@ -1829,7 +1829,7 @@ static int blurayDemux(demux_t *p_demux)
block_t
*
p_block
=
block_Alloc
(
NB_TS_PACKETS
*
(
int64_t
)
BD_TS_PACKET_SIZE
);
block_t
*
p_block
=
block_Alloc
(
NB_TS_PACKETS
*
(
int64_t
)
BD_TS_PACKET_SIZE
);
if
(
!
p_block
)
if
(
!
p_block
)
return
-
1
;
return
VLC_DEMUXER_EGENERIC
;
int
nread
;
int
nread
;
...
@@ -1900,8 +1900,8 @@ static int blurayDemux(demux_t *p_demux)
...
@@ -1900,8 +1900,8 @@ static int blurayDemux(demux_t *p_demux)
if
(
nread
<=
0
)
{
if
(
nread
<=
0
)
{
block_Release
(
p_block
);
block_Release
(
p_block
);
if
(
nread
<
0
)
if
(
nread
<
0
)
return
-
1
;
return
VLC_DEMUXER_EGENERIC
;
return
1
;
return
VLC_DEMUXER_SUCCESS
;
}
}
p_block
->
i_buffer
=
nread
;
p_block
->
i_buffer
=
nread
;
...
@@ -1912,5 +1912,5 @@ static int blurayDemux(demux_t *p_demux)
...
@@ -1912,5 +1912,5 @@ static int blurayDemux(demux_t *p_demux)
p_sys
->
b_flushed
=
false
;
p_sys
->
b_flushed
=
false
;
return
1
;
return
VLC_DEMUXER_SUCCESS
;
}
}
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