comparison avcodec.h @ 1113:bbcb4fda2b86 libavcodec

Frame rate emulation patch by (Max Krasnyansky <maxk at qualcomm dot com>)
author michaelni
date Fri, 07 Mar 2003 12:37:49 +0000
parents 54be6aece1be
children e4762efc3617
comparison
equal deleted inserted replaced
1112:54be6aece1be 1113:bbcb4fda2b86
406 * pixel format, see PIX_FMT_xxx. 406 * pixel format, see PIX_FMT_xxx.
407 * - encoding: unused 407 * - encoding: unused
408 * - decoding: set by lavc. 408 * - decoding: set by lavc.
409 */ 409 */
410 enum PixelFormat pix_fmt; 410 enum PixelFormat pix_fmt;
411 411
412 /**
413 * Frame rate emulation. If not zero lower layer (i.e. format handler)
414 * has to read frames at native frame rate.
415 * - encoding: set by user.
416 * - decoding: unused.
417 */
418 int rate_emu;
419
412 /** 420 /**
413 * if non NULL, 'draw_horiz_band' is called by the libavcodec 421 * if non NULL, 'draw_horiz_band' is called by the libavcodec
414 * decoder to draw an horizontal band. It improve cache usage. Not 422 * decoder to draw an horizontal band. It improve cache usage. Not
415 * all codecs can do that. You must check the codec capabilities 423 * all codecs can do that. You must check the codec capabilities
416 * before 424 * before