fifo.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * a very simple circular buffer FIFO implementation
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  4. * Copyright (c) 2006 Roman Shaposhnik
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "common.h"
  23. #include "fifo.h"
  24. int av_fifo_init(AVFifoBuffer *f, unsigned int size)
  25. {
  26. size= FFMAX(size, size+1);
  27. f->wptr = f->rptr =
  28. f->buffer = av_malloc(size);
  29. f->end = f->buffer + size;
  30. if (!f->buffer)
  31. return -1;
  32. return 0;
  33. }
  34. void av_fifo_free(AVFifoBuffer *f)
  35. {
  36. av_free(f->buffer);
  37. }
  38. int av_fifo_size(AVFifoBuffer *f)
  39. {
  40. int size = f->wptr - f->rptr;
  41. if (size < 0)
  42. size += f->end - f->buffer;
  43. return size;
  44. }
  45. int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size)
  46. {
  47. return av_fifo_generic_read(f, buf_size, NULL, buf);
  48. }
  49. #if LIBAVUTIL_VERSION_MAJOR < 50
  50. void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) {
  51. av_fifo_realloc2(f, new_size);
  52. }
  53. #endif
  54. int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
  55. unsigned int old_size= f->end - f->buffer;
  56. if(old_size <= new_size){
  57. int len= av_fifo_size(f);
  58. AVFifoBuffer f2;
  59. if (av_fifo_init(&f2, new_size) < 0)
  60. return -1;
  61. av_fifo_read(f, f2.buffer, len);
  62. f2.wptr += len;
  63. av_free(f->buffer);
  64. *f= f2;
  65. }
  66. return 0;
  67. }
  68. #if LIBAVUTIL_VERSION_MAJOR < 50
  69. void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
  70. {
  71. av_fifo_generic_write(f, (void *)buf, size, NULL);
  72. }
  73. #endif
  74. int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
  75. {
  76. int total = size;
  77. do {
  78. int len = FFMIN(f->end - f->wptr, size);
  79. if(func) {
  80. if(func(src, f->wptr, len) <= 0)
  81. break;
  82. } else {
  83. memcpy(f->wptr, src, len);
  84. src = (uint8_t*)src + len;
  85. }
  86. f->wptr += len;
  87. if (f->wptr >= f->end)
  88. f->wptr = f->buffer;
  89. size -= len;
  90. } while (size > 0);
  91. return total - size;
  92. }
  93. int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
  94. {
  95. do {
  96. int len = FFMIN(f->end - f->rptr, buf_size);
  97. if(func) func(dest, f->rptr, len);
  98. else{
  99. memcpy(dest, f->rptr, len);
  100. dest = (uint8_t*)dest + len;
  101. }
  102. av_fifo_drain(f, len);
  103. buf_size -= len;
  104. } while (buf_size > 0);
  105. return 0;
  106. }
  107. /** Discard data from the FIFO. */
  108. void av_fifo_drain(AVFifoBuffer *f, int size)
  109. {
  110. f->rptr += size;
  111. if (f->rptr >= f->end)
  112. f->rptr -= f->end - f->buffer;
  113. }