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
3b99d3d3
Commit
3b99d3d3
authored
Nov 18, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Realv3: support for broken streams that speciy a wrong FourCC
parent
ff6ab8ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+2
-0
modules/demux/real.c
modules/demux/real.c
+2
-0
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
3b99d3d3
...
...
@@ -1303,6 +1303,8 @@ static struct
/* RealAudio 1.0 */
{
VLC_FOURCC
(
'1'
,
'4'
,
'_'
,
'4'
),
CODEC_ID_RA_144
,
AUDIO_ES
,
"RealAudio 1.0"
},
{
VLC_FOURCC
(
'l'
,
'p'
,
'c'
,
'J'
),
CODEC_ID_RA_144
,
AUDIO_ES
,
"RealAudio 1.0"
},
/* RealAudio 2.0 */
{
VLC_FOURCC
(
'2'
,
'8'
,
'_'
,
'8'
),
CODEC_ID_RA_288
,
...
...
modules/demux/real.c
View file @
3b99d3d3
...
...
@@ -1127,6 +1127,8 @@ static int ReadCodecSpecificData( demux_t *p_demux, int i_len, int i_num )
switch
(
fmt
.
i_codec
)
{
case
VLC_FOURCC
(
'1'
,
'4'
,
'_'
,
'4'
):
break:
case
VLC_FOURCC
(
'l'
,
'p'
,
'c'
,
'J'
):
fmt
.
i_codec
=
VLC_FOURCC
(
'1'
,
'4'
,
'_'
,
'4'
);
break
;
...
...
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