Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
f2274a34
Commit
f2274a34
authored
14 years ago
by
John Koleszar
Browse files
Options
Download
Patches
Plain Diff
dixie: decode token partitions header
Change-Id: Id894ef22c1a22a426fa4fcf3a3733711b723b9ec
parent
8d6fbc1b
dixie
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp8/dixie/dixie.c
+49
-1
vp8/dixie/dixie.c
vp8/dixie/dixie.h
+16
-0
vp8/dixie/dixie.h
with
65 additions
and
1 deletion
vp8/dixie/dixie.c
+
49
−
1
View file @
f2274a34
...
...
@@ -10,7 +10,6 @@
#include
"vpx/internal/vpx_codec_internal.h"
#include
"bit_ops.h"
#include
"dixie.h"
#include
"bool_decoder.h"
#include
<string.h>
enum
...
...
@@ -20,6 +19,47 @@ enum
};
static
void
decode_and_init_token_partitions
(
struct
vp8_decoder_ctx
*
ctx
,
struct
bool_decoder
*
bool
,
const
unsigned
char
*
data
,
unsigned
int
sz
,
struct
vp8_token_hdr
*
hdr
)
{
int
i
;
hdr
->
partitions
=
1
<<
bool_get_uint
(
bool
,
2
);
if
(
sz
<
3
*
(
hdr
->
partitions
-
1
))
vpx_internal_error
(
&
ctx
->
error
,
VPX_CODEC_CORRUPT_FRAME
,
"Truncated packet found parsing partition lengths."
);
sz
-=
3
*
(
hdr
->
partitions
-
1
);
for
(
i
=
0
;
i
<
hdr
->
partitions
;
i
++
)
{
if
(
i
<
hdr
->
partitions
-
1
)
hdr
->
partition_sz
[
i
]
=
(
data
[
2
]
<<
16
)
|
(
data
[
1
]
<<
8
)
|
data
[
0
];
else
hdr
->
partition_sz
[
i
]
=
sz
;
if
(
sz
<
hdr
->
partition_sz
[
i
])
vpx_internal_error
(
&
ctx
->
error
,
VPX_CODEC_CORRUPT_FRAME
,
"Truncated partition %d"
,
i
);
data
+=
3
;
sz
-=
hdr
->
partition_sz
[
i
];
}
for
(
i
=
0
;
i
<
ctx
->
token_hdr
.
partitions
;
i
++
)
{
vp8dx_bool_init
(
&
ctx
->
bool
[
i
],
data
,
ctx
->
token_hdr
.
partition_sz
[
i
]);
data
+=
ctx
->
token_hdr
.
partition_sz
[
i
];
}
}
static
void
decode_loopfilter_header
(
struct
vp8_decoder_ctx
*
ctx
,
struct
bool_decoder
*
bool
,
...
...
@@ -97,6 +137,7 @@ decode_frame(struct vp8_decoder_ctx *ctx,
{
vpx_codec_err_t
res
;
struct
bool_decoder
bool
;
int
i
;
if
((
res
=
vp8_parse_frame_header
(
data
,
sz
,
&
ctx
->
frame_hdr
)))
vpx_internal_error
(
&
ctx
->
error
,
res
,
"Failed to parse frame header"
);
...
...
@@ -134,6 +175,13 @@ decode_frame(struct vp8_decoder_ctx *ctx,
decode_segmentation_header
(
ctx
,
&
bool
,
&
ctx
->
segment_hdr
);
decode_loopfilter_header
(
ctx
,
&
bool
,
&
ctx
->
loopfilter_hdr
);
decode_and_init_token_partitions
(
ctx
,
&
bool
,
data
+
ctx
->
frame_hdr
.
part0_sz
,
sz
-
ctx
->
frame_hdr
.
part0_sz
,
&
ctx
->
token_hdr
);
}
...
...
This diff is collapsed.
Click to expand it.
vp8/dixie/dixie.h
+
16
−
0
View file @
f2274a34
...
...
@@ -9,6 +9,7 @@
*/
#ifndef DIXIE_H
#define DIXIE_H
#include
"bool_decoder.h"
struct
vp8_frame_hdr
{
...
...
@@ -64,6 +65,18 @@ struct vp8_loopfilter_hdr
};
enum
{
MAX_PARTITIONS
=
8
};
struct
vp8_token_hdr
{
unsigned
int
partitions
;
unsigned
int
partition_sz
[
MAX_PARTITIONS
];
};
struct
vp8_decoder_ctx
{
struct
vpx_internal_error_info
error
;
...
...
@@ -71,6 +84,9 @@ struct vp8_decoder_ctx
struct
vp8_frame_hdr
frame_hdr
;
struct
vp8_segment_hdr
segment_hdr
;
struct
vp8_loopfilter_hdr
loopfilter_hdr
;
struct
vp8_token_hdr
token_hdr
;
struct
bool_decoder
bool
[
MAX_PARTITIONS
];
};
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets