Mercurial > libavcodec.hg
comparison bitstream.c @ 5409:13d52b7647a0 libavcodec
Ahem, fix typos overlooked in last commit.
| author | diego |
|---|---|
| date | Sat, 28 Jul 2007 12:50:28 +0000 |
| parents | 20bea6a9950c |
| children | 6335f2688c04 |
comparison
equal
deleted
inserted
replaced
| 5408:20bea6a9950c | 5409:13d52b7647a0 |
|---|---|
| 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/misdesigned. | 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) |
