# HG changeset patch # User michaelni # Date 1047040669 0 # Node ID bbcb4fda2b8683f95bc510496f7b993464716335 # Parent 54be6aece1beaa302e269799580b27acb9c3380d Frame rate emulation patch by (Max Krasnyansky ) diff -r 54be6aece1be -r bbcb4fda2b86 avcodec.h --- a/avcodec.h Thu Mar 06 15:56:56 2003 +0000 +++ b/avcodec.h Fri Mar 07 12:37:49 2003 +0000 @@ -408,7 +408,15 @@ * - decoding: set by lavc. */ enum PixelFormat pix_fmt; - + + /** + * Frame rate emulation. If not zero lower layer (i.e. format handler) + * has to read frames at native frame rate. + * - encoding: set by user. + * - decoding: unused. + */ + int rate_emu; + /** * if non NULL, 'draw_horiz_band' is called by the libavcodec * decoder to draw an horizontal band. It improve cache usage. Not