blob: af717fc579148f835e2a8ff4e085fe19be8bc3f3 (
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
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* import_xvid.c -- dummy module to direct users to ffmpeg module
* Written by Andrew Church <achurch@achurch.org>
*
* 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.
*/
#define MOD_NAME "import_xvid.so"
#define MOD_VERSION "v0.1.0 (2006-03-29)"
#define MOD_CODEC "(video) none/obsolete"
#include "transcode.h"
static int verbose_flag = TC_QUIET;
static int capability_flag = TC_CAP_RGB | TC_CAP_YUV | TC_CAP_VID;
#define MOD_PRE xvid
#include "import_def.h"
MOD_open
{
tc_log_error(MOD_NAME, "**************** NOTICE ****************");
tc_log_error(MOD_NAME, "This module is obsolete. Please use the");
tc_log_error(MOD_NAME, "ffmpeg module (-x ffmpeg) for XviD video.");
return TC_IMPORT_ERROR;
}
MOD_decode
{
return TC_IMPORT_ERROR;
}
MOD_close
{
return TC_IMPORT_ERROR;
}
/*
* Local variables:
* c-file-style: "stroustrup"
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
* indent-tabs-mode: nil
* End:
*
* vim: expandtab shiftwidth=4:
*/
|