comparison fifo.h @ 602:0b84593767d8 libavutil

add the necessary include for LIBAV*_VERSION_*
author aurel
date Tue, 13 Jan 2009 00:14:43 +0000
parents bd4052d9050c
children 5a8d0e6cdcfb
comparison
equal deleted inserted replaced
601:b150276ce746 602:0b84593767d8
23 23
24 #ifndef AVUTIL_FIFO_H 24 #ifndef AVUTIL_FIFO_H
25 #define AVUTIL_FIFO_H 25 #define AVUTIL_FIFO_H
26 26
27 #include <stdint.h> 27 #include <stdint.h>
28 #include "avutil.h"
28 #include "common.h" 29 #include "common.h"
29 30
30 typedef struct AVFifoBuffer { 31 typedef struct AVFifoBuffer {
31 uint8_t *buffer; 32 uint8_t *buffer;
32 uint8_t *rptr, *wptr, *end; 33 uint8_t *rptr, *wptr, *end;