You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
3.1KB

  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. /**
  50. * Resizes a FIFO.
  51. */
  52. void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) {
  53. unsigned int old_size= f->end - f->buffer;
  54. if(old_size <= new_size){
  55. int len= av_fifo_size(f);
  56. AVFifoBuffer f2;
  57. av_fifo_init(&f2, new_size);
  58. av_fifo_read(f, f2.buffer, len);
  59. f2.wptr += len;
  60. av_free(f->buffer);
  61. *f= f2;
  62. }
  63. }
  64. void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
  65. {
  66. av_fifo_generic_write(f, (void *)buf, size, NULL);
  67. }
  68. int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
  69. {
  70. int total = size;
  71. do {
  72. int len = FFMIN(f->end - f->wptr, size);
  73. if(func) {
  74. if(func(src, f->wptr, len) <= 0)
  75. break;
  76. } else {
  77. memcpy(f->wptr, src, len);
  78. src = (uint8_t*)src + len;
  79. }
  80. f->wptr += len;
  81. if (f->wptr >= f->end)
  82. f->wptr = f->buffer;
  83. size -= len;
  84. } while (size > 0);
  85. return total - size;
  86. }
  87. int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
  88. {
  89. do {
  90. int len = FFMIN(f->end - f->rptr, buf_size);
  91. if(func) func(dest, f->rptr, len);
  92. else{
  93. memcpy(dest, f->rptr, len);
  94. dest = (uint8_t*)dest + len;
  95. }
  96. av_fifo_drain(f, len);
  97. buf_size -= len;
  98. } while (buf_size > 0);
  99. return 0;
  100. }
  101. /** discard data from the fifo */
  102. void av_fifo_drain(AVFifoBuffer *f, int size)
  103. {
  104. f->rptr += size;
  105. if (f->rptr >= f->end)
  106. f->rptr -= f->end - f->buffer;
  107. }