comparison bitstream.c @ 5408:20bea6a9950c libavcodec

cosmetics: misc typo fixes
author diego
date Sat, 28 Jul 2007 12:46:26 +0000
parents 32b69770ae23
children 13d52b7647a0
comparison
equal deleted inserted replaced
5407:91906ea3337f 5408:20bea6a9950c
34 * Same as av_mallocz_static(), but does a realloc. 34 * Same as av_mallocz_static(), but does a realloc.
35 * 35 *
36 * @param[in] ptr The block of memory to reallocate. 36 * @param[in] ptr The block of memory to reallocate.
37 * @param[in] size The requested size. 37 * @param[in] size The requested size.
38 * @return Block of memory of requested size. 38 * @return Block of memory of requested size.
39 * @deprecated. Code which uses ff_realloc_static is broken/missdesigned 39 * @deprecated. Code which uses ff_realloc_static is broken/misdesigned.
40 * and should correctly use static arrays 40 * and should correctly use static arrays
41 */ 41 */
42 attribute_deprecated void *ff_realloc_static(void *ptr, unsigned int size); 42 attribute_deprecated void *ff_realloc_static(void *ptr, unsigned int size);
43 43
44 void align_put_bits(PutBitContext *s) 44 void align_put_bits(PutBitContext *s)