Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2d1483b4
Commit
2d1483b4
authored
Jul 30, 2004
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/util/id3tag.c modules/codec/ffmpeg/demux.c:
+ Fixed compiler warnings.
parent
10840a4a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
modules/codec/ffmpeg/demux.c
modules/codec/ffmpeg/demux.c
+6
-2
modules/demux/util/id3tag.c
modules/demux/util/id3tag.c
+1
-1
No files found.
modules/codec/ffmpeg/demux.c
View file @
2d1483b4
...
...
@@ -37,6 +37,8 @@
# include <avformat.h>
#endif
#include "ffmpeg.h"
/* Version checking */
#if (LIBAVFORMAT_BUILD >= 4611) && defined(HAVE_LIBAVFORMAT)
...
...
@@ -134,9 +136,11 @@ int E_(OpenDemux)( vlc_object_t *p_this )
p_sys
->
url
.
prot
=
&
p_sys
->
prot
;
p_sys
->
url
.
prot
->
name
=
"VLC I/O wrapper"
;
p_sys
->
url
.
prot
->
url_open
=
0
;
p_sys
->
url
.
prot
->
url_read
=
IORead
;
p_sys
->
url
.
prot
->
url_read
=
(
int
(
*
)
(
URLContext
*
,
unsigned
char
*
,
int
))
IORead
;
p_sys
->
url
.
prot
->
url_write
=
0
;
p_sys
->
url
.
prot
->
url_seek
=
IOSeek
;
p_sys
->
url
.
prot
->
url_seek
=
(
offset_t
(
*
)
(
URLContext
*
,
offset_t
,
int
))
IOSeek
;
p_sys
->
url
.
prot
->
url_close
=
0
;
p_sys
->
url
.
prot
->
next
=
0
;
init_put_byte
(
&
p_sys
->
io
,
p_sys
->
io_buffer
,
p_sys
->
io_buffer_size
,
...
...
modules/demux/util/id3tag.c
View file @
2d1483b4
...
...
@@ -72,7 +72,7 @@ static void ParseID3Tag( demux_t *p_demux, uint8_t *p_data, int i_size )
FIND_PARENT
);
if
(
!
p_input
)
{
return
VLC_EGENERIC
;
return
;
}
var_Get
(
p_input
,
"demuxed-id3"
,
&
val
);
...
...
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