add test for _rotation
[swfdec.git] / plugin / gstswfdec.h
blob9cf3040383aa880177816fc3895b3e2be6d2f255
1 /* GStreamer
2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 #ifndef __GST_SWFDEC_H__
22 #define __GST_SWFDEC_H__
25 #include <gst/gst.h>
26 #include <gst/base/gstadapter.h>
27 #include <libswfdec/swfdec.h>
29 G_BEGIN_DECLS
31 #define GST_TYPE_SWFDEC \
32 (gst_swfdec_get_type())
33 #define GST_SWFDEC(obj) \
34 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SWFDEC,GstSwfdec))
35 #define GST_SWFDEC_CLASS(klass) \
36 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SWFDEC,GstSwfdec))
37 #define GST_IS_SWFDEC(obj) \
38 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SWFDEC))
39 #define GST_IS_SWFDEC_CLASS(obj) \
40 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SWFDEC))
42 typedef struct _GstSwfdec GstSwfdec;
43 typedef struct _GstSwfdecClass GstSwfdecClass;
45 struct _GstSwfdec
47 GstElement element;
49 /* pads */
50 GstPad *sinkpad;
51 GstPad *videopad;
52 GstPad *audiopad;
54 SwfdecLoader *loader;
55 SwfdecPlayer *player;
57 GstTask *task;
58 GStaticRecMutex mutex;
60 gboolean have_format;
62 gboolean send_discont;
63 int seek_frame;
65 gint64 timestamp;
66 gint64 interval;
67 int frame_rate_n;
68 int frame_rate_d;
70 /* video state */
71 gint format;
72 gint width;
73 gint height;
74 gint64 total_frames;
76 double x, y;
77 int button;
79 int skip_frames;
80 int skip_index;
83 struct _GstSwfdecClass
85 GstElementClass parent_class;
87 void (*embed_url) (GstElement *element, const char *url);
90 GType gst_swfdec_get_type (void);
92 G_END_DECLS
94 #endif /* __GST_SWFDEC_H__ */