comparison avcodec.h @ 3352:608659b58523 libavcodec

CODEC_CAP_SMALL_LAST_FRAME patch by Justin Ruggles jruggle earthlink net
author michael
date Sat, 24 Jun 2006 09:25:21 +0000
parents b8e31c41384a
children 5b901881d6ed
comparison
equal deleted inserted replaced
3351:42b85e03b408 3352:608659b58523
363 /** 363 /**
364 * codec has a non zero delay and needs to be feeded with NULL at the end to get the delayed data. 364 * codec has a non zero delay and needs to be feeded with NULL at the end to get the delayed data.
365 * if this is not set, the codec is guranteed to never be feeded with NULL data 365 * if this is not set, the codec is guranteed to never be feeded with NULL data
366 */ 366 */
367 #define CODEC_CAP_DELAY 0x0020 367 #define CODEC_CAP_DELAY 0x0020
368 /**
369 * Codec can be fed a final frame with a smaller size.
370 * This can be used to prevent truncation of the last audio samples.
371 */
372 #define CODEC_CAP_SMALL_LAST_FRAME 0x0040
368 373
369 //the following defines may change, don't expect compatibility if you use them 374 //the following defines may change, don't expect compatibility if you use them
370 #define MB_TYPE_INTRA4x4 0x0001 375 #define MB_TYPE_INTRA4x4 0x0001
371 #define MB_TYPE_INTRA16x16 0x0002 //FIXME h264 specific 376 #define MB_TYPE_INTRA16x16 0x0002 //FIXME h264 specific
372 #define MB_TYPE_INTRA_PCM 0x0004 //FIXME h264 specific 377 #define MB_TYPE_INTRA_PCM 0x0004 //FIXME h264 specific