summaryrefslogtreecommitdiff
path: root/libavformat/yuv4mpeg.c
diff options
context:
space:
mode:
authorColin Ward <hitman@codehq.org>2006-02-08 15:39:12 +0000
committerDiego Biurrun <diego@biurrun.de>2006-02-08 15:39:12 +0000
commit72fbc5092a10e4139cbfddcdc4bc1b40e9326bde (patch)
tree823314432483ba3f23866540ed4f47479e5e6422 /libavformat/yuv4mpeg.c
parent3845b56dd16fa3d1a168f3e8b7e3ac37ff78422e (diff)
Move CONIG_MUXERS below struct frame_attributes, it's not muxer-specific.
patch by Colin Ward, hitman*at*codehq*dot*org Originally committed as revision 4962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/yuv4mpeg.c')
-rw-r--r--libavformat/yuv4mpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/yuv4mpeg.c b/libavformat/yuv4mpeg.c
index 361ef8eeec..dd623205da 100644
--- a/libavformat/yuv4mpeg.c
+++ b/libavformat/yuv4mpeg.c
@@ -22,13 +22,13 @@
#define Y4M_FRAME_MAGIC "FRAME"
#define Y4M_LINE_MAX 256
-#ifdef CONFIG_MUXERS
-
struct frame_attributes {
int interlaced_frame;
int top_field_first;
};
+#ifdef CONFIG_MUXERS
+
static int yuv4_generate_header(AVFormatContext *s, char* buf)
{
AVStream *st;