summaryrefslogtreecommitdiffstats
path: root/debian/transcode/transcode-1.1.7/src/video_trans.h
diff options
context:
space:
mode:
Diffstat (limited to 'debian/transcode/transcode-1.1.7/src/video_trans.h')
-rw-r--r--debian/transcode/transcode-1.1.7/src/video_trans.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/transcode/transcode-1.1.7/src/video_trans.h b/debian/transcode/transcode-1.1.7/src/video_trans.h
new file mode 100644
index 00000000..45880879
--- /dev/null
+++ b/debian/transcode/transcode-1.1.7/src/video_trans.h
@@ -0,0 +1,37 @@
+/*
+ * video_trans.h - header for video frame transformation routines
+ * Written by Andrew Church <achurch@achurch.org>
+ * Based on code written by Thomas Oestreich.
+ *
+ * This file is part of transcode, a video stream processing tool.
+ * transcode is free software, distributable under the terms of the GNU
+ * General Public License (version 2 or later). See the file COPYING
+ * for details.
+ */
+
+#ifndef _VIDEO_TRANS_H
+#define _VIDEO_TRANS_H
+
+#include "transcode.h"
+
+/*************************************************************************/
+
+/* Video frame processing functions. */
+
+int process_vid_frame(vob_t *vob, vframe_list_t *ptr);
+int preprocess_vid_frame(vob_t *vob, vframe_list_t *ptr);
+int postprocess_vid_frame(vob_t *vob, vframe_list_t *ptr);
+
+/*************************************************************************/
+
+#endif /* _VIDEO_TRANS_H */
+
+/*
+ * Local variables:
+ * c-file-style: "stroustrup"
+ * c-file-offsets: ((case-label . *) (statement-case-intro . *))
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vim: expandtab shiftwidth=4:
+ */