Remove more functions disabled by major version bump.
Originally committed as revision 17876 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3fb1084306
commit
fe4032b66a
4 changed files with 0 additions and 47 deletions
|
@ -48,12 +48,6 @@ int av_fifo_size(AVFifoBuffer *f)
|
|||
return (uint32_t)(f->wndx - f->rndx);
|
||||
}
|
||||
|
||||
#if LIBAVUTIL_VERSION_MAJOR < 50
|
||||
void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) {
|
||||
av_fifo_realloc2(f, new_size);
|
||||
}
|
||||
#endif
|
||||
|
||||
int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
|
||||
unsigned int old_size= f->end - f->buffer;
|
||||
|
||||
|
@ -73,13 +67,6 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if LIBAVUTIL_VERSION_MAJOR < 50
|
||||
void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
|
||||
{
|
||||
av_fifo_generic_write(f, (void *)buf, size, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
|
||||
{
|
||||
int total = size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue