RetroArch
fifo_queue.h
Go to the documentation of this file.
1 /* Copyright (C) 2010-2018 The RetroArch team
2  *
3  * ---------------------------------------------------------------------------------------
4  * The following license statement only applies to this file (fifo_queue.h).
5  * ---------------------------------------------------------------------------------------
6  *
7  * Permission is hereby granted, free of charge,
8  * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11  * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16  * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef __LIBRETRO_SDK_FIFO_BUFFER_H
24 #define __LIBRETRO_SDK_FIFO_BUFFER_H
25 
26 #include <stdint.h>
27 #include <stddef.h>
28 #include <stdlib.h>
29 
30 #include <retro_common_api.h>
31 #include <retro_inline.h>
32 
34 
36 {
38  size_t size;
39  size_t first;
40  size_t end;
41 };
42 
43 typedef struct fifo_buffer fifo_buffer_t;
44 
45 fifo_buffer_t *fifo_new(size_t size);
46 
48 {
49  buffer->first = 0;
50  buffer->end = 0;
51 }
52 
53 void fifo_write(fifo_buffer_t *buffer, const void *in_buf, size_t size);
54 
55 void fifo_read(fifo_buffer_t *buffer, void *in_buf, size_t size);
56 
58 {
59  if (!buffer)
60  return;
61 
62  free(buffer->buffer);
63  free(buffer);
64 }
65 
67 {
68  return (buffer->end + ((buffer->end < buffer->first) ? buffer->size : 0)) - buffer->first;
69 }
70 
72 {
73  return (buffer->size - 1) - ((buffer->end + ((buffer->end < buffer->first) ? buffer->size : 0)) - buffer->first);
74 }
75 
77 
78 #endif
79 
static INLINE void fifo_free(fifo_buffer_t *buffer)
Definition: fifo_queue.h:57
#define INLINE
Definition: retro_inline.h:35
#define RETRO_BEGIN_DECLS
Definition: retro_common_api.h:41
static INLINE size_t fifo_write_avail(fifo_buffer_t *buffer)
Definition: fifo_queue.h:71
GLsizeiptr size
Definition: glext.h:6559
void fifo_read(fifo_buffer_t *buffer, void *in_buf, size_t size)
Definition: fifo_queue.c:68
size_t end
Definition: fifo_queue.h:40
size_t size
Definition: fifo_queue.h:38
Definition: fifo_queue.h:35
uint8_t * buffer
Definition: fifo_queue.h:37
size_t first
Definition: fifo_queue.h:39
static INLINE size_t fifo_read_avail(fifo_buffer_t *buffer)
Definition: fifo_queue.h:66
#define RETRO_END_DECLS
Definition: retro_common_api.h:42
fifo_buffer_t * fifo_new(size_t size)
Definition: fifo_queue.c:28
void free(void *)
void fifo_write(fifo_buffer_t *buffer, const void *in_buf, size_t size)
Definition: fifo_queue.c:50
static INLINE void fifo_clear(fifo_buffer_t *buffer)
Definition: fifo_queue.h:47
Definition: video4linux2.c:51
unsigned char uint8_t
Definition: stdint.h:124