Commit 0a1a8fcd authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avutil/fifo: Don't include avutil.h

Reviewed-by: 's avatarMartin Storsjö <martin@martin.st>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 99b5956a
......@@ -21,10 +21,13 @@
*/
#include <stdint.h>
#include <string.h>
#include "avassert.h"
#include "common.h"
#include "error.h"
#include "fifo.h"
#include "macros.h"
#include "mem.h"
// by default the FIFO can be auto-grown to 1MB
#define AUTO_GROW_DEFAULT_BYTES (1024 * 1024)
......
......@@ -24,9 +24,11 @@
#ifndef AVUTIL_FIFO_H
#define AVUTIL_FIFO_H
#include <stddef.h>
#include <stdint.h>
#include "avutil.h"
#include "attributes.h"
#include "version.h"
typedef struct AVFifo AVFifo;
......
......@@ -18,7 +18,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <limits.h>
#include "fifo.h"
#include "mem.h"
#include "threadmessage.h"
#include "thread.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment