hardware/intel/libva
Revision | e691f29aa3b9e9e2da46b8108aef4487b263cf8c (tree) |
---|---|
Zeit | 2013-05-28 17:19:08 |
Autor | Gwenole Beauchesne <gwenole.beauchesne@inte...> |
Commiter | Xiang, Haihao |
API: h264 encode: remove TABs in newly added code.
@@ -314,7 +314,7 @@ typedef enum | ||
314 | 314 | * This attribute determines the maximum number of slices the |
315 | 315 | * driver can support to encode a single frame. |
316 | 316 | */ |
317 | - VAConfigAttribEncMaxSlices = 14, | |
317 | + VAConfigAttribEncMaxSlices = 14, | |
318 | 318 | /** |
319 | 319 | * \brief Slice structure. Read-only. |
320 | 320 | * |
@@ -331,7 +331,7 @@ typedef enum | ||
331 | 331 | * See \c VA_ENC_SLICE_STRUCTURE_xxx for the supported slice |
332 | 332 | * structure types. |
333 | 333 | */ |
334 | - VAConfigAttribEncSliceStructure = 15, | |
334 | + VAConfigAttribEncSliceStructure = 15, | |
335 | 335 | /**@}*/ |
336 | 336 | } VAConfigAttribType; |
337 | 337 |
@@ -355,15 +355,15 @@ typedef struct _VAConfigAttrib { | ||
355 | 355 | /** @name Attribute values for VAConfigAttribRateControl */ |
356 | 356 | /**@{*/ |
357 | 357 | /** \brief Driver does not support any form of rate control. */ |
358 | -#define VA_RC_NONE 0x00000001 | |
358 | +#define VA_RC_NONE 0x00000001 | |
359 | 359 | /** \brief Constant bitrate. */ |
360 | -#define VA_RC_CBR 0x00000002 | |
360 | +#define VA_RC_CBR 0x00000002 | |
361 | 361 | /** \brief Variable bitrate. */ |
362 | -#define VA_RC_VBR 0x00000004 | |
363 | -/** \brief Video conference mode. */ | |
364 | -#define VA_RC_VCM 0x00000008 | |
362 | +#define VA_RC_VBR 0x00000004 | |
363 | +/** \brief Video conference mode. */ | |
364 | +#define VA_RC_VCM 0x00000008 | |
365 | 365 | /** \brief Constant QP. */ |
366 | -#define VA_RC_CQP 0x00000010 | |
366 | +#define VA_RC_CQP 0x00000010 | |
367 | 367 | /**@}*/ |
368 | 368 | |
369 | 369 | /** @name Attribute values for VAConfigAttribEncPackedHeaders */ |
@@ -395,11 +395,11 @@ typedef struct _VAConfigAttrib { | ||
395 | 395 | /** @name Attribute values for VAConfigAttribEncSliceStructure */ |
396 | 396 | /**@{*/ |
397 | 397 | /** \brief Driver supports an arbitrary number of rows per slice. */ |
398 | -#define VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS 0x00000000 | |
398 | +#define VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS 0x00000000 | |
399 | 399 | /** \brief Driver supports a power-of-two number of rows per slice. */ |
400 | 400 | #define VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS 0x00000001 |
401 | 401 | /** \brief Driver supports an arbitrary number of rows per slice. */ |
402 | -#define VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS 0x00000002 | |
402 | +#define VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS 0x00000002 | |
403 | 403 | /**@}*/ |
404 | 404 | |
405 | 405 | /* |