GstCodecParsers.Vp8Parser¶
Fields¶
Name |
Type |
Access |
Description |
|---|---|---|---|
mb_lf_adjust |
r/w |
MB-level loop filter adjustments |
|
mode_probs |
r/w |
probabilities used for intra-prediction mode decoding tree. |
|
mv_probs |
r/w |
probabilities used for motion vector decoding |
|
segmentation |
r/w |
segmentation feature data |
|
token_probs |
r/w |
token probabilities |
Methods¶
|
|
|
Details¶
- class GstCodecParsers.Vp8Parser¶
For more details about the structures, you can refer to the specifications: VP8-rfc6386.pdf
- init()¶
Initializes the supplied self structure with its default values.
New in version 1.4.
- parse_frame_header(frame_hdr, data, size)¶
- Parameters:
frame_hdr (
GstCodecParsers.Vp8FrameHdr) – TheGstCodecParsers.Vp8FrameHdrto filldata (
int) – The data to parsesize (
int) – The size of the data to parse
- Returns:
- Return type:
Parses the VP8 bitstream contained in data, and fills in frame_hdr with the information. The supplied data shall point to a complete frame since there is no sync code specified for VP8 bitstreams. Thus, the size argument shall represent the whole frame size.
New in version 1.4.