comparison fifo.h @ 873:4d9ad0ed07d0 libavutil

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents 3d6e83a917d2
children 49c6800079b9
comparison
equal deleted inserted replaced
872:9d32a031ab0b 873:4d9ad0ed07d0
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"
29 #include "common.h"
30 28
31 typedef struct AVFifoBuffer { 29 typedef struct AVFifoBuffer {
32 uint8_t *buffer; 30 uint8_t *buffer;
33 uint8_t *rptr, *wptr, *end; 31 uint8_t *rptr, *wptr, *end;
34 uint32_t rndx, wndx; 32 uint32_t rndx, wndx;