comparison bitstream.c @ 4670:aab60ff3d468 libavcodec

deprecate ff_realloc_static
author michael
date Wed, 14 Mar 2007 13:25:15 +0000
parents 88cf097ebe75
children 2c8f88e7397a
comparison
equal deleted inserted replaced
4669:d161ec980995 4670:aab60ff3d468
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 */ 39 */
40 void *ff_realloc_static(void *ptr, unsigned int size); 40 attribute_deprecated void *ff_realloc_static(void *ptr, unsigned int size);
41 41
42 void align_put_bits(PutBitContext *s) 42 void align_put_bits(PutBitContext *s)
43 { 43 {
44 #ifdef ALT_BITSTREAM_WRITER 44 #ifdef ALT_BITSTREAM_WRITER
45 put_bits(s,( - s->index) & 7,0); 45 put_bits(s,( - s->index) & 7,0);