comparison avcodec.h @ 5408:20bea6a9950c libavcodec

cosmetics: misc typo fixes
author diego
date Sat, 28 Jul 2007 12:46:26 +0000
parents 9d95fa2bd150
children ad384eda0cb7
comparison
equal deleted inserted replaced
5407:91906ea3337f 5408:20bea6a9950c
2832 2832
2833 /** 2833 /**
2834 * Frees all static arrays and resets their pointers to 0. 2834 * Frees all static arrays and resets their pointers to 0.
2835 * Call this function to release all statically allocated tables. 2835 * Call this function to release all statically allocated tables.
2836 * 2836 *
2837 * @deprecated. Code which uses av_free_static is broken/missdesigned 2837 * @deprecated. Code which uses av_free_static is broken/misdesigned
2838 * and should correctly use static arrays 2838 * and should correctly use static arrays
2839 * 2839 *
2840 */ 2840 */
2841 attribute_deprecated void av_free_static(void); 2841 attribute_deprecated void av_free_static(void);
2842 2842
2845 * 2845 *
2846 * @warning Do not use for normal allocation. 2846 * @warning Do not use for normal allocation.
2847 * 2847 *
2848 * @param[in] size The amount of memory you need in bytes. 2848 * @param[in] size The amount of memory you need in bytes.
2849 * @return block of memory of the requested size 2849 * @return block of memory of the requested size
2850 * @deprecated. Code which uses av_mallocz_static is broken/missdesigned 2850 * @deprecated. Code which uses av_mallocz_static is broken/misdesigned
2851 * and should correctly use static arrays 2851 * and should correctly use static arrays
2852 */ 2852 */
2853 attribute_deprecated void *av_mallocz_static(unsigned int size); 2853 attribute_deprecated void *av_mallocz_static(unsigned int size);
2854 2854
2855 /** 2855 /**