blob: 458808791c520ff69ac14b777bc65a7082e84fb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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:
*/
|