提交 beebfdb1 编写于 作者: P Panagiotis Issaris

Move the av_realloc_static() declaration out of avcodec.h into bitstream.c.

Originally committed as revision 8088 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 e0b67c76
...@@ -2920,15 +2920,6 @@ void av_free_static(void); ...@@ -2920,15 +2920,6 @@ void av_free_static(void);
*/ */
void *av_mallocz_static(unsigned int size); void *av_mallocz_static(unsigned int size);
/**
* Same as av_mallocz_static(), but does a realloc.
*
* @param[in] ptr The block of memory to reallocate.
* @param[in] size The requested size.
* @return Block of memory of requested size.
*/
void *av_realloc_static(void *ptr, unsigned int size);
void img_copy(AVPicture *dst, const AVPicture *src, void img_copy(AVPicture *dst, const AVPicture *src,
int pix_fmt, int width, int height); int pix_fmt, int width, int height);
......
...@@ -30,6 +30,15 @@ ...@@ -30,6 +30,15 @@
#include "avcodec.h" #include "avcodec.h"
#include "bitstream.h" #include "bitstream.h"
/**
* Same as av_mallocz_static(), but does a realloc.
*
* @param[in] ptr The block of memory to reallocate.
* @param[in] size The requested size.
* @return Block of memory of requested size.
*/
void *av_realloc_static(void *ptr, unsigned int size);
void align_put_bits(PutBitContext *s) void align_put_bits(PutBitContext *s)
{ {
#ifdef ALT_BITSTREAM_WRITER #ifdef ALT_BITSTREAM_WRITER
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册