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
9efd4086
Commit
9efd4086
authored
Dec 05, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Recognize RV codecs
parent
c829dc1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
modules/demux/real.c
modules/demux/real.c
+14
-0
No files found.
modules/demux/real.c
View file @
9efd4086
...
@@ -807,6 +807,20 @@ static int ReadCodecSpecificData( demux_t *p_demux, int i_len, int i_num )
...
@@ -807,6 +807,20 @@ static int ReadCodecSpecificData( demux_t *p_demux, int i_len, int i_num )
{
{
fmt
.
i_codec
=
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'3'
);
fmt
.
i_codec
=
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'3'
);
}
}
else
if
(
GetDWBE
(
&
p_peek
[
30
]
)
==
0x20001000
||
GetDWBE
(
&
p_peek
[
30
]
)
==
0x20100001
||
GetDWBE
(
&
p_peek
[
30
]
)
==
0x20200002
)
{
fmt
.
i_codec
=
VLC_FOURCC
(
'R'
,
'V'
,
'2'
,
'0'
);
}
else
if
(
GetDWBE
(
&
p_peek
[
30
]
)
==
0x30202002
)
{
fmt
.
i_codec
=
VLC_FOURCC
(
'R'
,
'V'
,
'3'
,
'0'
);
}
else
if
(
GetDWBE
(
&
p_peek
[
30
]
)
==
0x40000000
)
{
fmt
.
i_codec
=
VLC_FOURCC
(
'R'
,
'V'
,
'4'
,
'0'
);
}
msg_Dbg
(
p_demux
,
" - video %4.4s %dx%d"
,
msg_Dbg
(
p_demux
,
" - video %4.4s %dx%d"
,
(
char
*
)
&
fmt
.
i_codec
,
fmt
.
video
.
i_width
,
fmt
.
video
.
i_height
);
(
char
*
)
&
fmt
.
i_codec
,
fmt
.
video
.
i_width
,
fmt
.
video
.
i_height
);
...
...
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