comparison mxfenc.c @ 4403:39f6b190c772 libavformat

remove implicit header inclusions from mxf.h
author bcoudurier
date Sun, 08 Feb 2009 04:42:38 +0000
parents 671d415e1786
children 7cf3b77ad6ff
comparison
equal deleted inserted replaced
4402:671d415e1786 4403:39f6b190c772
34 34
35 #include <math.h> 35 #include <math.h>
36 #include <time.h> 36 #include <time.h>
37 37
38 #include "libavutil/fifo.h" 38 #include "libavutil/fifo.h"
39 #include "libavcodec/bytestream.h"
39 #include "audiointerleave.h" 40 #include "audiointerleave.h"
41 #include "avformat.h"
40 #include "mxf.h" 42 #include "mxf.h"
41 43
42 static const int NTSC_samples_per_frame[] = { 1602, 1601, 1602, 1601, 1602, 0 }; 44 static const int NTSC_samples_per_frame[] = { 1602, 1601, 1602, 1601, 1602, 0 };
43 static const int PAL_samples_per_frame[] = { 1920, 0 }; 45 static const int PAL_samples_per_frame[] = { 1920, 0 };
44 46