comparison avcodec.h @ 4555:8d1303d3777d libavcodec

cosmetics: Fix another common typo, gurantee --> guArantee.
author diego
date Wed, 21 Feb 2007 19:19:46 +0000
parents c0bf618fbe7e
children 53ed3a394b4b
comparison
equal deleted inserted replaced
4554:384e4c438534 4555:8d1303d3777d
330 #define CODEC_FLAG_4MV 0x0004 ///< 4 MV per MB allowed / Advanced prediction for H263 330 #define CODEC_FLAG_4MV 0x0004 ///< 4 MV per MB allowed / Advanced prediction for H263
331 #define CODEC_FLAG_QPEL 0x0010 ///< use qpel MC 331 #define CODEC_FLAG_QPEL 0x0010 ///< use qpel MC
332 #define CODEC_FLAG_GMC 0x0020 ///< use GMC 332 #define CODEC_FLAG_GMC 0x0020 ///< use GMC
333 #define CODEC_FLAG_MV0 0x0040 ///< always try a MB with MV=<0,0> 333 #define CODEC_FLAG_MV0 0x0040 ///< always try a MB with MV=<0,0>
334 #define CODEC_FLAG_PART 0x0080 ///< use data partitioning 334 #define CODEC_FLAG_PART 0x0080 ///< use data partitioning
335 /* parent program gurantees that the input for b-frame containing streams is not written to 335 /* parent program guarantees that the input for b-frame containing streams is not written to
336 for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */ 336 for at least s->max_b_frames+1 frames, if this is not set than the input will be copied */
337 #define CODEC_FLAG_INPUT_PRESERVED 0x0100 337 #define CODEC_FLAG_INPUT_PRESERVED 0x0100
338 #define CODEC_FLAG_PASS1 0x0200 ///< use internal 2pass ratecontrol in first pass mode 338 #define CODEC_FLAG_PASS1 0x0200 ///< use internal 2pass ratecontrol in first pass mode
339 #define CODEC_FLAG_PASS2 0x0400 ///< use internal 2pass ratecontrol in second pass mode 339 #define CODEC_FLAG_PASS2 0x0400 ///< use internal 2pass ratecontrol in second pass mode
340 #define CODEC_FLAG_EXTERN_HUFF 0x1000 ///< use external huffman table (for mjpeg) 340 #define CODEC_FLAG_EXTERN_HUFF 0x1000 ///< use external huffman table (for mjpeg)
398 #define CODEC_CAP_TRUNCATED 0x0008 398 #define CODEC_CAP_TRUNCATED 0x0008
399 /* codec can export data for HW decoding (XvMC) */ 399 /* codec can export data for HW decoding (XvMC) */
400 #define CODEC_CAP_HWACCEL 0x0010 400 #define CODEC_CAP_HWACCEL 0x0010
401 /** 401 /**
402 * codec has a non zero delay and needs to be feeded with NULL at the end to get the delayed data. 402 * codec has a non zero delay and needs to be feeded with NULL at the end to get the delayed data.
403 * if this is not set, the codec is guranteed to never be feeded with NULL data 403 * if this is not set, the codec is guaranteed to never be feeded with NULL data
404 */ 404 */
405 #define CODEC_CAP_DELAY 0x0020 405 #define CODEC_CAP_DELAY 0x0020
406 /** 406 /**
407 * Codec can be fed a final frame with a smaller size. 407 * Codec can be fed a final frame with a smaller size.
408 * This can be used to prevent truncation of the last audio samples. 408 * This can be used to prevent truncation of the last audio samples.