19b88a83423f071bd2599654e443389cb6c53bc1
[platform/adaptation/emulator/gst-plugins-emulator.git] / src / gstmaru.c
1 /*
2  * Emulator
3  *
4  * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:
7  * KiTae Kim <kt920.kim@samsung.com>
8  * SeokYeon Hwang <syeon.hwang@samsung.com>
9  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Library General Public License for more details.
20  *
21  * You should have received a copy of the GNU Library General Public
22  * License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  * Boston, MA 02111-1307, USA.
25  */
26
27 /* First, include the header file for the plugin, to bring in the
28  * object definition and other useful things.
29  */
30
31 /*
32  *
33  * Contributors:
34  * - S-Core Co., Ltd
35  *
36  */
37
38 #include "gstmaru.h"
39 #include "gstmaruutils.h"
40
41 GST_DEBUG_CATEGORY (maru_debug);
42
43 #define GST_TYPE_MARUDEC \
44   (gst_maru_dec_get_type())
45 #define GST_MARUDEC(obj) \
46   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MARUDEC,GstMaruDec))
47 #define GST_MARUDEC_CLASS(klass) \
48   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MARUDEC,GstMaruDecClass))
49 #define GST_IS_MARUDEC(obj) \
50   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MARUDEC))
51 #define GST_IS_MARUDEC_CLASS(klass) \
52   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MARUDEC))
53
54 gboolean gst_marudec_register (GstPlugin *plugin, GList *element);
55 gboolean gst_maruenc_register (GstPlugin *plugin, GList *element);
56
57 static GList *codec_element = NULL;
58
59 static gboolean
60 gst_maru_codec_element_init ()
61 {
62   int fd = 0, size = 0;
63   int version = 0;
64   int data_length = 0;
65   int i, elem_cnt = 0;
66   void *buffer = NULL;
67   CodecElement *elem = NULL;
68
69   fd = open (CODEC_DEV, O_RDWR);
70   if (fd < 0) {
71     perror ("[gst-maru] failed to open codec device");
72     return FALSE;
73   }
74
75   ioctl (fd, CODEC_CMD_GET_VERSION, &version);
76   if (version != CODEC_VER) {
77     CODEC_LOG (INFO, "version conflict between device: %d, plugin: %d\n",
78               version, CODEC_VER);
79     close (fd);
80     return FALSE;
81   }
82
83   buffer = mmap (NULL, 4096, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
84   if (!buffer) {
85     perror ("[gst-maru] failure memory mapping.");
86     close (fd);
87     return FALSE;
88   }
89
90   CODEC_LOG (DEBUG, "request a device to get codec element.\n");
91   if (ioctl(fd, CODEC_CMD_GET_ELEMENT, NULL) < 0) {
92     perror ("[gst-maru] failed to get codec elements");
93     munmap (buffer, 4096);
94     close (fd);
95     return FALSE;
96   }
97
98   memcpy(&data_length, (uint8_t *)buffer, sizeof(data_length));
99   size += sizeof(data_length);
100
101   elem = g_malloc0 (data_length);
102   if (!elem) {
103     CODEC_LOG (ERR, "Failed to allocate memory.\n");
104     munmap (buffer, 4096);
105     close (fd);
106     return FALSE;
107   }
108
109   memcpy (elem, (uint8_t *)buffer + size, data_length);
110
111   elem_cnt = data_length / sizeof(CodecElement);
112   for (i = 0; i < elem_cnt; i++) {
113     codec_element = g_list_append (codec_element, &elem[i]);
114   }
115
116   munmap (buffer, 4096);
117   close (fd);
118
119   return TRUE;
120 }
121
122 static gboolean
123 plugin_init (GstPlugin *plugin)
124 {
125   GST_DEBUG_CATEGORY_INIT (maru_debug,
126       "tizen-maru", 0, "Tizen Emulator Codec Elements");
127
128   gst_maru_init_pix_fmt_info ();
129
130   if (!gst_maru_codec_element_init ()) {
131     GST_ERROR ("failed to get codec elements from QEMU");
132     return FALSE;
133   }
134
135   if (!gst_marudec_register (plugin, codec_element)) {
136     GST_ERROR ("failed to register decoder elements");
137     return FALSE;
138   }
139   if (!gst_maruenc_register (plugin, codec_element)) {
140     GST_ERROR ("failed to register encoder elements");
141     return FALSE;
142   }
143
144 #if 0
145   while ((codec_element = g_list_next (codec_element))) {
146     g_list_free (codec_element);
147   }
148 #endif
149
150   return TRUE;
151 }
152
153 #ifndef PACKAGE
154 #define PACKAGE "gst-plugins-maruator"
155 #endif
156
157 GST_PLUGIN_DEFINE (
158   GST_VERSION_MAJOR,
159   GST_VERSION_MINOR,
160   "tizen-emul",
161   "Codecs for Tizen Emulator",
162   plugin_init,
163   "0.1.1",
164   "LGPL",
165   "gst-plugins-emulator",
166   "http://tizen.org"
167 )