comparison avcodec.h @ 4588:fc155ff94878 libavcodec

cosmetics: Fix another common typo, dependAnt --> dependEnt.
author diego
date Sat, 24 Feb 2007 09:41:43 +0000
parents dae72d303a8d
children 2aea8bf268d8
comparison
equal deleted inserted replaced
4587:644687c58928 4588:fc155ff94878
381 #define CODEC_FLAG2_SKIP_RD 0x00004000 ///< RD optimal MB level residual skiping 381 #define CODEC_FLAG2_SKIP_RD 0x00004000 ///< RD optimal MB level residual skiping
382 382
383 /* Unsupported options : 383 /* Unsupported options :
384 * Syntax Arithmetic coding (SAC) 384 * Syntax Arithmetic coding (SAC)
385 * Reference Picture Selection 385 * Reference Picture Selection
386 * Independant Segment Decoding */ 386 * Independent Segment Decoding */
387 /* /Fx */ 387 /* /Fx */
388 /* codec capabilities */ 388 /* codec capabilities */
389 389
390 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< decoder can use draw_horiz_band callback 390 #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< decoder can use draw_horiz_band callback
391 /** 391 /**
1703 */ 1703 */
1704 int quantizer_noise_shaping; 1704 int quantizer_noise_shaping;
1705 1705
1706 /** 1706 /**
1707 * Thread count. 1707 * Thread count.
1708 * is used to decide how many independant tasks should be passed to execute() 1708 * is used to decide how many independent tasks should be passed to execute()
1709 * - encoding: set by user 1709 * - encoding: set by user
1710 * - decoding: set by user 1710 * - decoding: set by user
1711 */ 1711 */
1712 int thread_count; 1712 int thread_count;
1713 1713
1714 /** 1714 /**
1715 * the codec may call this to execute several independant things. it will return only after 1715 * the codec may call this to execute several independent things. it will return only after
1716 * finishing all tasks, the user may replace this with some multithreaded implementation, the 1716 * finishing all tasks, the user may replace this with some multithreaded implementation, the
1717 * default implementation will execute the parts serially 1717 * default implementation will execute the parts serially
1718 * @param count the number of things to execute 1718 * @param count the number of things to execute
1719 * - encoding: set by lavc, user can override 1719 * - encoding: set by lavc, user can override
1720 * - decoding: set by lavc, user can override 1720 * - decoding: set by lavc, user can override