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
07ffb2e1
Commit
07ffb2e1
authored
Nov 29, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics.
parent
85dd1a0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
modules/demux/ogg.c
modules/demux/ogg.c
+15
-15
No files found.
modules/demux/ogg.c
View file @
07ffb2e1
...
@@ -1784,6 +1784,20 @@ static int dirac_bool( bs_t *p_bs )
...
@@ -1784,6 +1784,20 @@ static int dirac_bool( bs_t *p_bs )
static
bool
Ogg_ReadDiracHeader
(
logical_stream_t
*
p_stream
,
static
bool
Ogg_ReadDiracHeader
(
logical_stream_t
*
p_stream
,
ogg_packet
*
p_oggpacket
)
ogg_packet
*
p_oggpacket
)
{
{
static
const
struct
{
uint32_t
u_n
/* numerator */
,
u_d
/* denominator */
;
}
p_dirac_frate_tbl
[]
=
{
/* table 10.3 */
{
1
,
1
},
/* this first value is never used */
{
24000
,
1001
},
{
24
,
1
},
{
25
,
1
},
{
30000
,
1001
},
{
30
,
1
},
{
50
,
1
},
{
60000
,
1001
},
{
60
,
1
},
{
15000
,
1001
},
{
25
,
2
},
};
static
const
size_t
u_dirac_frate_tbl
=
sizeof
(
p_dirac_frate_tbl
)
/
sizeof
(
*
p_dirac_frate_tbl
);
static
const
uint32_t
pu_dirac_vidfmt_frate
[]
=
{
/* table C.1 */
1
,
9
,
10
,
9
,
10
,
9
,
10
,
4
,
3
,
7
,
6
,
4
,
3
,
7
,
6
,
2
,
2
,
7
,
6
,
7
,
6
,
};
static
const
size_t
u_dirac_vidfmt_frate
=
sizeof
(
pu_dirac_vidfmt_frate
)
/
sizeof
(
*
pu_dirac_vidfmt_frate
);
bs_t
bs
;
bs_t
bs
;
p_stream
->
i_granule_shift
=
22
;
/* not 32 */
p_stream
->
i_granule_shift
=
22
;
/* not 32 */
...
@@ -1801,7 +1815,7 @@ static bool Ogg_ReadDiracHeader( logical_stream_t *p_stream,
...
@@ -1801,7 +1815,7 @@ static bool Ogg_ReadDiracHeader( logical_stream_t *p_stream,
dirac_uint
(
&
bs
);
/* level */
dirac_uint
(
&
bs
);
/* level */
uint32_t
u_video_format
=
dirac_uint
(
&
bs
);
/* index */
uint32_t
u_video_format
=
dirac_uint
(
&
bs
);
/* index */
if
(
u_video_format
>
20
)
if
(
u_video_format
>
=
u_dirac_vidfmt_frate
)
{
{
/* don't know how to parse this ogg dirac stream */
/* don't know how to parse this ogg dirac stream */
return
false
;
return
false
;
...
@@ -1823,20 +1837,6 @@ static bool Ogg_ReadDiracHeader( logical_stream_t *p_stream,
...
@@ -1823,20 +1837,6 @@ static bool Ogg_ReadDiracHeader( logical_stream_t *p_stream,
dirac_uint
(
&
bs
);
/* scan_format */
dirac_uint
(
&
bs
);
/* scan_format */
}
}
static
const
struct
{
uint32_t
u_n
/* numerator */
,
u_d
/* denominator */
;
}
p_dirac_frate_tbl
[]
=
{
/* table 10.3 */
{
1
,
1
},
/* this first value is never used */
{
24000
,
1001
},
{
24
,
1
},
{
25
,
1
},
{
30000
,
1001
},
{
30
,
1
},
{
50
,
1
},
{
60000
,
1001
},
{
60
,
1
},
{
15000
,
1001
},
{
25
,
2
},
};
static
const
size_t
u_dirac_frate_tbl
=
sizeof
(
p_dirac_frate_tbl
)
/
sizeof
(
*
p_dirac_frate_tbl
);
static
const
uint32_t
pu_dirac_vidfmt_frate
[]
=
{
/* table C.1 */
1
,
9
,
10
,
9
,
10
,
9
,
10
,
4
,
3
,
7
,
6
,
4
,
3
,
7
,
6
,
2
,
2
,
7
,
6
,
7
,
6
,
};
static
const
size_t
u_dirac_vidfmt_frate
=
sizeof
(
pu_dirac_vidfmt_frate
)
/
sizeof
(
*
pu_dirac_vidfmt_frate
);
uint32_t
u_n
=
p_dirac_frate_tbl
[
pu_dirac_vidfmt_frate
[
u_video_format
]].
u_n
;
uint32_t
u_n
=
p_dirac_frate_tbl
[
pu_dirac_vidfmt_frate
[
u_video_format
]].
u_n
;
uint32_t
u_d
=
p_dirac_frate_tbl
[
pu_dirac_vidfmt_frate
[
u_video_format
]].
u_d
;
uint32_t
u_d
=
p_dirac_frate_tbl
[
pu_dirac_vidfmt_frate
[
u_video_format
]].
u_d
;
if
(
dirac_bool
(
&
bs
)
)
if
(
dirac_bool
(
&
bs
)
)
...
...
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