summaryrefslogtreecommitdiff
path: root/libavformat/yuv4mpeg.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-05-03 11:04:50 +0200
committerAnton Khirnov <anton@khirnov.net>2014-05-18 10:21:31 +0200
commite4dc1000d7bbbcb5b45cf9849fc5315f19578e37 (patch)
tree8617f3bbc0d357c298d0fadd8c86ce2edc298e81 /libavformat/yuv4mpeg.h
parent3ef6c5264b2590781b4ed556443ff49709dd45fb (diff)
yuv4mpeg: split the demuxer and muxer into separate files
Diffstat (limited to 'libavformat/yuv4mpeg.h')
-rw-r--r--libavformat/yuv4mpeg.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/libavformat/yuv4mpeg.h b/libavformat/yuv4mpeg.h
new file mode 100644
index 0000000000..7891ed60a7
--- /dev/null
+++ b/libavformat/yuv4mpeg.h
@@ -0,0 +1,27 @@
+/*
+ * YUV4MPEG common definitions
+ *
+ * This file is part of Libav.
+ *
+ * Libav is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * Libav is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with Libav; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef AVFORMAT_YUV4MPEG_H
+#define AVFORMAT_YUV4MPEG_H
+
+#define Y4M_MAGIC "YUV4MPEG2"
+#define Y4M_FRAME_MAGIC "FRAME"
+
+#endif /* AVFORMAT_YUV4MPEG_H */