• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/libva


Commit MetaInfo

Revisión2c379e2e46071f2f355851eb36a1d13f6ad914c5 (tree)
Tiempo2014-02-13 16:07:31
AutorJonathan Bian <jonathan.bian@inte...>
CommiterXiang, Haihao

Log Message

Added VASliceParameterBufferVP8 to describe data partition related fields.

Cambiar Resumen

Diferencia incremental

--- a/va/va_dec_vp8.h
+++ b/va/va_dec_vp8.h
@@ -155,16 +155,32 @@ typedef struct _VAPictureParameterBufferVP8
155155
156156 VABoolCoderContextVPX bool_coder_ctx;
157157
158+} VAPictureParameterBufferVP8;
159+
160+/**
161+ * \brief VP8 Slice Parameter Buffer Structure
162+ *
163+ * This structure conveys parameters related to data partitions and should be
164+ * sent once per frame.
165+ *
166+ */
167+typedef struct _VASliceParameterBufferVP8
168+{
158169 /* Partitions */
159170 unsigned char num_of_partitions;
160171 unsigned int partition_size[9];
172+ /*
173+ * slice data buffer of VASliceDataBufferType is used to send the
174+ * partition data. This field specifies the offset to the first byte of
175+ * partition data in the buffer.
176+ */
177+ unsigned int partition_data_offset;
161178
162179 /*
163180 * offset to the first bit of MB from the first byte of slice data buffer
164181 */
165182 unsigned int macroblock_offset;
166-
167-} VAPictureParameterBufferVP8;
183+} VASliceParameterBufferVP8;
168184
169185 /**
170186 * \brief VP8 Coefficient Probability Data Buffer Structure