Initial Stable Commit
[synfig.git] / synfig-core / trunk / src / modules / mod_libavcodec / mptr.cpp
1 /* === S I N F G =========================================================== */
2 /*!     \file mptr.cpp
3 **      \brief writeme
4 **
5 **      $Id: mptr.cpp,v 1.1.1.1 2005/01/04 01:23:11 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #define SINFG_NO_ANGLE
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "mptr.h"
34 #include <sinfg/general.h>
35 #include <sinfg/surface.h>
36
37 #include <algorithm>
38 #include <functional>
39 #endif
40
41 /* === U S I N G =========================================================== */
42
43 using namespace sinfg;
44 using namespace std;
45 using namespace etl;
46
47 /* === G L O B A L S ======================================================= */
48
49 SINFG_IMPORTER_INIT(Importer_LibAVCodec);
50 SINFG_IMPORTER_SET_NAME(Importer_LibAVCodec,"Importer_LibAVCodec");
51 SINFG_IMPORTER_SET_EXT(Importer_LibAVCodec,"avi");
52 SINFG_IMPORTER_SET_VERSION(Importer_LibAVCodec,"0.1");
53 SINFG_IMPORTER_SET_CVS_ID(Importer_LibAVCodec,"$Id: mptr.cpp,v 1.1.1.1 2005/01/04 01:23:11 darco Exp $");
54
55 /* === M E T H O D S ======================================================= */
56
57
58 Importer_LibAVCodec::Importer_LibAVCodec(const char *file):
59         filename(file)
60 {
61 }
62
63 Importer_LibAVCodec::~Importer_LibAVCodec()
64 {
65 }
66
67 bool
68 Importer_LibAVCodec::get_frame(sinfg::Surface &surface,Time, sinfg::ProgressCallback *cb)
69 {
70         return false;
71 }