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.

118 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. AVFifoBuffer *av_fifo_alloc(unsigned int size)
  25. {
  26. AVFifoBuffer *f= av_mallocz(sizeof(AVFifoBuffer));
  27. if(!f)
  28. return NULL;
  29. f->wptr = f->rptr =
  30. f->buffer = av_malloc(size);
  31. f->end = f->buffer + size;
  32. if (!f->buffer)
  33. av_freep(&f);
  34. return f;
  35. }
  36. void av_fifo_free(AVFifoBuffer *f)
  37. {
  38. if(f){
  39. av_free(f->buffer);
  40. av_free(f);
  41. }
  42. }
  43. int av_fifo_size(AVFifoBuffer *f)
  44. {
  45. return (uint32_t)(f->wndx - f->rndx);
  46. }
  47. int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) {
  48. unsigned int old_size= f->end - f->buffer;
  49. if(old_size < new_size){
  50. int len= av_fifo_size(f);
  51. AVFifoBuffer *f2= av_fifo_alloc(new_size);
  52. if (!f2)
  53. return -1;
  54. av_fifo_generic_read(f, len, NULL, f2->buffer);
  55. f2->wptr += len;
  56. f2->wndx += len;
  57. av_free(f->buffer);
  58. *f= *f2;
  59. av_free(f2);
  60. }
  61. return 0;
  62. }
  63. int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int))
  64. {
  65. int total = size;
  66. do {
  67. int len = FFMIN(f->end - f->wptr, size);
  68. if(func) {
  69. if(func(src, f->wptr, len) <= 0)
  70. break;
  71. } else {
  72. memcpy(f->wptr, src, len);
  73. src = (uint8_t*)src + len;
  74. }
  75. // Write memory barrier needed for SMP here in theory
  76. f->wptr += len;
  77. if (f->wptr >= f->end)
  78. f->wptr = f->buffer;
  79. f->wndx += len;
  80. size -= len;
  81. } while (size > 0);
  82. return total - size;
  83. }
  84. int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
  85. {
  86. // Read memory barrier needed for SMP here in theory
  87. do {
  88. int len = FFMIN(f->end - f->rptr, buf_size);
  89. if(func) func(dest, f->rptr, len);
  90. else{
  91. memcpy(dest, f->rptr, len);
  92. dest = (uint8_t*)dest + len;
  93. }
  94. // memory barrier needed for SMP here in theory
  95. av_fifo_drain(f, len);
  96. buf_size -= len;
  97. } while (buf_size > 0);
  98. return 0;
  99. }
  100. /** Discard data from the FIFO. */
  101. void av_fifo_drain(AVFifoBuffer *f, int size)
  102. {
  103. f->rptr += size;
  104. if (f->rptr >= f->end)
  105. f->rptr -= f->end - f->buffer;
  106. f->rndx += size;
  107. }