interleave: port to 0.11
[platform/upstream/gst-plugins-good.git] / ext / libmng / gstmngenc.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * Filter:
5  * Copyright (C) 2000 Donald A. Graft
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  * Library General Public License for more details.
11  *
12  * You should have received a copy of the GNU Library General Public
13  * License along with this library; if not, write to the
14  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
15  * Boston, MA 02111-1307, USA.
16  *
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22 #include <string.h>
23 #include <gst/gst.h>
24 #include "gstmngenc.h"
25 #include <gst/video/video.h>
26
27 #define MAX_HEIGHT              4096
28
29 /* Filter signals and args */
30 enum
31 {
32   /* FILL ME */
33   LAST_SIGNAL
34 };
35
36 #define DEFAULT_SNAPSHOT        TRUE
37
38 enum
39 {
40   ARG_0
41 };
42
43 static void gst_mng_enc_set_property (GObject * object,
44     guint prop_id, const GValue * value, GParamSpec * pspec);
45 static void gst_mng_enc_get_property (GObject * object,
46     guint prop_id, GValue * value, GParamSpec * pspec);
47
48 static GstFlowReturn gst_mng_enc_chain (GstPad * pad, GstBuffer * buf);
49
50 GstPadTemplate *mngenc_src_template, *mngenc_sink_template;
51
52 GST_BOILERPLATE (GstMngEnc, gst_mng_enc, GstElement, GST_TYPE_ELEMENT);
53
54 static GstCaps *
55 mng_caps_factory (void)
56 {
57   return gst_caps_new_simple ("video/x-mng",
58       "width", GST_TYPE_INT_RANGE, 16, 4096,
59       "height", GST_TYPE_INT_RANGE, 16, 4096,
60       "framerate", GST_TYPE_DOUBLE_RANGE, 0.0, G_MAXDOUBLE, NULL);
61 }
62
63
64 static GstCaps *
65 raw_caps_factory (void)
66 {
67   return gst_caps_from_string (GST_VIDEO_CAPS_RGB);
68 }
69
70 static void
71 gst_mng_enc_base_init (gpointer g_class)
72 {
73   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
74   GstCaps *raw_caps, *mng_caps;
75
76   raw_caps = raw_caps_factory ();
77   mng_caps = mng_caps_factory ();
78
79   mngenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
80       GST_PAD_ALWAYS, raw_caps);
81
82   mngenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC,
83       GST_PAD_ALWAYS, mng_caps);
84
85   gst_element_class_add_pad_template (element_class, mngenc_sink_template);
86   gst_element_class_add_pad_template (element_class, mngenc_src_template);
87   gst_element_class_set_details_simple (element_class, "MNG video encoder",
88       "Codec/Encoder/Video",
89       "Encode a video frame to an .mng video", "Wim Taymans <wim@fluendo.com>");
90 }
91
92 static void
93 gst_mng_enc_class_init (GstMngEncClass * klass)
94 {
95   GObjectClass *gobject_class;
96   GstElementClass *gstelement_class;
97
98   gobject_class = (GObjectClass *) klass;
99   gstelement_class = (GstElementClass *) klass;
100
101   gobject_class->get_property = gst_mng_enc_get_property;
102   gobject_class->set_property = gst_mng_enc_set_property;
103 }
104
105 static gboolean
106 gst_mng_enc_sink_setcaps (GstPad * pad, GstCaps * caps)
107 {
108   GstMngEnc *mngenc;
109   gdouble fps;
110   GstStructure *structure;
111
112   mngenc = GST_MNG_ENC (gst_pad_get_parent (pad));
113
114   structure = gst_caps_get_structure (caps, 0);
115   gst_structure_get_int (structure, "width", &mngenc->width);
116   gst_structure_get_int (structure, "height", &mngenc->height);
117   gst_structure_get_double (structure, "framerate", &fps);
118   gst_structure_get_int (structure, "bpp", &mngenc->bpp);
119
120   caps = gst_caps_new_simple ("video/x-mng",
121       "framerate", G_TYPE_DOUBLE, fps,
122       "width", G_TYPE_INT, mngenc->width,
123       "height", G_TYPE_INT, mngenc->height, NULL);
124
125   gst_pad_set_caps (mngenc->srcpad, caps);
126   gst_caps_unref (caps);
127
128   gst_object_unref (mngenc);
129
130   return TRUE;
131 }
132
133 static void
134 gst_mng_enc_init (GstMngEnc * mngenc, GstMngEncClass * gclass)
135 {
136   mngenc->sinkpad = gst_pad_new_from_template (mngenc_sink_template, "sink");
137   gst_element_add_pad (GST_ELEMENT (mngenc), mngenc->sinkpad);
138
139   mngenc->srcpad = gst_pad_new ("src", GST_PAD_SRC);
140   gst_element_add_pad (GST_ELEMENT (mngenc), mngenc->srcpad);
141
142   gst_pad_set_chain_function (mngenc->sinkpad, gst_mng_enc_chain);
143   gst_pad_set_setcaps_function (mngenc->sinkpad, gst_mng_enc_sink_setcaps);
144 }
145
146 static GstFlowReturn
147 gst_mng_enc_chain (GstPad * pad, GstBuffer * buf)
148 {
149   GstMngEnc *mngenc;
150
151   mngenc = GST_MNG_ENC (gst_pad_get_parent (pad));
152
153   /* FIXME, do something here */
154
155   gst_buffer_unref (buf);
156   gst_object_unref (mngenc);
157
158   return GST_FLOW_NOT_SUPPORTED;
159 }
160
161
162 static void
163 gst_mng_enc_get_property (GObject * object,
164     guint prop_id, GValue * value, GParamSpec * pspec)
165 {
166   GstMngEnc *mngenc;
167
168   mngenc = GST_MNG_ENC (object);
169
170   switch (prop_id) {
171     default:
172       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
173       break;
174   }
175 }
176
177
178 static void
179 gst_mng_enc_set_property (GObject * object,
180     guint prop_id, const GValue * value, GParamSpec * pspec)
181 {
182   GstMngEnc *mngenc;
183
184   mngenc = GST_MNG_ENC (object);
185
186   switch (prop_id) {
187     default:
188       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
189       break;
190   }
191 }