update latest
[framework/multimedia/libmm-imgp-gstcs.git] / gstcs / mm_util_gstcs.c
1 /*
2  * libmm-imgp-gstcs
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: YoungHun Kim <yh8004.kim@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include "mm_util_gstcs_internal.h"
22 #include <mm_debug.h>
23 #include <gst/check/gstcheck.h>
24 #include <mm_error.h>
25 #define MM_UTIL_ROUND_UP_2(num)  (((num)+1)&~1)
26 #define MM_UTIL_ROUND_UP_4(num)  (((num)+3)&~3)
27 #define MM_UTIL_ROUND_UP_8(num)  (((num)+7)&~7)
28 #define MM_UTIL_ROUND_UP_16(num)  (((num)+15)&~15)
29 /*########################################################################################*/
30 #define setup_image_size_I420(width, height) { \
31         int size=0; \
32         size = (MM_UTIL_ROUND_UP_4 (width) * MM_UTIL_ROUND_UP_2 (height) + MM_UTIL_ROUND_UP_8 (width) * MM_UTIL_ROUND_UP_2 (height) /2); \
33         return size; \
34 }
35
36 #define setup_image_size_Y42B(width, height)  { \
37         int size=0; \
38         size = (MM_UTIL_ROUND_UP_4 (width) * height + MM_UTIL_ROUND_UP_8 (width)  * height); \
39         return size; \
40 }
41
42 #define setup_image_size_Y444(width, height) { \
43         int size=0; \
44         size = (MM_UTIL_ROUND_UP_4 (width) * height  * 3); \
45         return size; \
46 }
47
48 #define setup_image_size_UYVY(width, height) { \
49         int size=0; \
50         size = (MM_UTIL_ROUND_UP_2 (width) * 2 * height); \
51         return size; \
52 }
53
54 #define setup_image_size_YUYV(width, height)  { \
55         int size=0; \
56         size = (MM_UTIL_ROUND_UP_2 (width) * 2 * height); \
57         return size; \
58 }
59
60 #define setup_image_size_YV12(width, height) { \
61         int size=0; \
62         size = (MM_UTIL_ROUND_UP_4 (width) * MM_UTIL_ROUND_UP_2 (height)+ MM_UTIL_ROUND_UP_8 (width) * MM_UTIL_ROUND_UP_2 (height) / 2); \
63         return size; \
64 }
65
66 #define setup_image_size_NV12(width, height) { \
67         int size=0; \
68         size = (MM_UTIL_ROUND_UP_4 (width) * MM_UTIL_ROUND_UP_2 (height) *1.5); \
69         return size; \
70 }
71
72 #define setup_image_size_RGB565(width, height)  { \
73         int size=0; \
74         size = (MM_UTIL_ROUND_UP_4 (width * 2) *height); \
75         return size; \
76 }
77
78 #define setup_image_size_RGB888(width, height)  { \
79         int size=0; \
80         size = (MM_UTIL_ROUND_UP_4 (width*3) * height); \
81         return size; \
82 }
83
84 #define setup_image_size_BGR888(width, height)  { \
85         int size=0; \
86         size = (MM_UTIL_ROUND_UP_4 (width*3) * height); \
87         return size; \
88 }
89 /*########################################################################################*/
90
91 static void
92 _mm_sink_buffer (GstElement * appsink, gpointer  user_data)
93 {
94         GstBuffer *_buf=NULL;
95         gstreamer_s * pGstreamer_s = (gstreamer_s*) user_data;
96         _buf = gst_app_sink_pull_buffer((GstAppSink*)appsink);
97
98         pGstreamer_s->output_buffer = _buf;
99
100         if(pGstreamer_s->output_buffer != NULL) {
101                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Create Output Buffer: GST_BUFFER_DATA: %p\t GST_BUFFER_SIZE: %d\n", __func__, __LINE__, GST_BUFFER_DATA(pGstreamer_s->output_buffer),  GST_BUFFER_SIZE (pGstreamer_s->output_buffer));
102         }else {
103                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] ERROR -Input Prepare Buffer!  Check createoutput buffer function", __func__, __LINE__);
104         }
105         gst_buffer_unref (_buf); //we don't need the appsink buffer anymore
106         gst_buffer_ref (pGstreamer_s->output_buffer); //when you want to avoid flushing
107 }
108
109 static void
110 _mm_sink_preroll (GstElement * appsink, gpointer  user_data)
111 {
112         GstBuffer *_buf=NULL;
113         gstreamer_s * pGstreamer_s = (gstreamer_s*) user_data;
114         _buf = gst_app_sink_pull_preroll((GstAppSink*)appsink);
115
116         pGstreamer_s->output_buffer = _buf;
117         //pGstreamer_s->output_image_format_s->caps =  GST_BUFFER_CAPS(_buf);
118         if(pGstreamer_s->output_buffer != NULL) {
119                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Create Output Buffer: GST_BUFFER_DATA: %p\t GST_BUFFER_SIZE: %d\n", __func__, __LINE__,
120                         GST_BUFFER_DATA(pGstreamer_s->output_buffer),  GST_BUFFER_SIZE (pGstreamer_s->output_buffer));
121         }else {
122                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] ERROR -Input Prepare Buffer!  Check createoutput buffer function", __func__, __LINE__);
123         }
124
125         gst_buffer_unref (_buf); // we don't need the appsink buffer anymore
126         gst_buffer_ref  (pGstreamer_s->output_buffer); //when you want to avoid flushings
127 }
128
129 static gboolean
130 _mm_on_sink_message  (GstBus * bus, GstMessage * message, gstreamer_s * pGstreamer_s)
131 {
132         switch (GST_MESSAGE_TYPE (message)) {
133                 case GST_MESSAGE_EOS:
134                         mmf_debug(MMF_DEBUG_LOG,"Finished playback\n"); //g_main_loop_quit (pGstreamer_s->loop);
135                         break;
136                 case GST_MESSAGE_ERROR:
137                         mmf_debug(MMF_DEBUG_ERROR,"Received error\n"); //g_main_loop_quit (pGstreamer_s->loop);
138                         break;
139                 case GST_MESSAGE_STATE_CHANGED:
140                         mmf_debug(MMF_DEBUG_LOG, " [%s] %s(%d) \n", GST_MESSAGE_SRC_NAME(message), GST_MESSAGE_TYPE_NAME(message), GST_MESSAGE_TYPE(message));
141                         break;
142                 case GST_MESSAGE_STREAM_STATUS:
143                         mmf_debug(MMF_DEBUG_LOG, " [%s] %s(%d) \n", GST_MESSAGE_SRC_NAME(message),  GST_MESSAGE_TYPE_NAME(message), GST_MESSAGE_TYPE(message));
144                         break;
145                 default:
146                         mmf_debug(MMF_DEBUG_LOG, " [%s] %s(%d) \n", GST_MESSAGE_SRC_NAME(message), GST_MESSAGE_TYPE_NAME(message), GST_MESSAGE_TYPE(message));
147                         break;
148         }
149         return TRUE;
150 }
151
152
153 static int
154 _mm_create_pipeline( gstreamer_s* pGstreamer_s)
155 {
156         int ret = MM_ERROR_NONE;
157         pGstreamer_s->pipeline= gst_pipeline_new ("ffmpegcolorsapce");
158         pGstreamer_s->appsrc= gst_element_factory_make("appsrc","appsrc");
159         pGstreamer_s->colorspace=gst_element_factory_make("ffmpegcolorspace","colorconverter");
160
161         pGstreamer_s->videoscale=gst_element_factory_make("videoscale", "scale");
162         pGstreamer_s->videoflip=gst_element_factory_make( "videoflip", "flip" );
163
164         pGstreamer_s->appsink=gst_element_factory_make("appsink","appsink");
165
166         if (!pGstreamer_s->pipeline || !pGstreamer_s->appsrc||!pGstreamer_s->colorspace || !pGstreamer_s->appsink) {
167                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] One element could not be created. Exiting.\n", __func__, __LINE__);
168                 ret = MM_ERROR_IMAGE_INVALID_VALUE;
169         }
170         return ret;
171 }
172
173 static gboolean
174 _mm_check_resize_format(int src_width, int src_height, int dst_width, int dst_height)
175 {
176         gboolean _bool=FALSE;
177
178         if( (src_width != dst_width) || (src_height != dst_height) ) {
179                 _bool = TRUE;
180         }
181
182         return _bool;
183 }
184
185 static gboolean
186 _mm_check_rotate_format(int GstVideoFlipMethod)
187 {
188         gboolean _bool=FALSE;
189
190         if((GstVideoFlipMethod >= 1) && ( GstVideoFlipMethod<= 7)) {
191                 _bool = TRUE;
192         }
193
194         return _bool;
195 }
196
197 static gboolean
198 _mm_check_resize_format_label(char* __format_label)
199 {
200         gboolean _bool = FALSE;
201
202         if(strcmp(__format_label, "AYUV") == 0
203                 || strcmp(__format_label, "UYVY") == 0 ||strcmp(__format_label, "Y800") == 0 || strcmp(__format_label, "I420") == 0  || strcmp(__format_label, "YV12") == 0
204                 || strcmp(__format_label, "RGB888") == 0  || strcmp(__format_label, "RGB565") == 0 || strcmp(__format_label, "BGR888") == 0  || strcmp(__format_label, "RGBA8888") == 0
205                 || strcmp(__format_label, "ARGB8888") == 0 ||strcmp(__format_label, "BGRA8888") == 0 ||strcmp(__format_label, "ABGR8888") == 0 ||strcmp(__format_label, "RGBX") == 0
206                 ||strcmp(__format_label, "XRGB") == 0 ||strcmp(__format_label, "BGRX") == 0 ||strcmp(__format_label, "XBGR") == 0 ||strcmp(__format_label, "Y444") == 0
207                 ||strcmp(__format_label, "Y42B") == 0 ||strcmp(__format_label, "YUY2") == 0 ||strcmp(__format_label, "YUYV") == 0 ||strcmp(__format_label, "UYVY") == 0
208                 ||strcmp(__format_label, "Y41B") == 0 ||strcmp(__format_label, "Y16") == 0 ||strcmp(__format_label, "Y800") == 0 ||strcmp(__format_label, "Y8") == 0
209                 ||strcmp(__format_label, "GREY") == 0 ||strcmp(__format_label, "AY64") == 0 || strcmp(__format_label, "YUV422") == 0) {
210
211                 _bool=TRUE;
212         }
213
214         return _bool;
215 }
216
217 static gboolean
218 _mm_check_rotate_format_label(const char* __format_label)
219 {
220         gboolean _bool = FALSE;
221
222         if(strcmp(__format_label, "I420") == 0 ||strcmp(__format_label, "YV12") == 0 || strcmp(__format_label, "IYUV") 
223                 || strcmp(__format_label, "RGB888") ||strcmp(__format_label, "BGR888") == 0 ||strcmp(__format_label, "RGBA8888") == 0
224                 || strcmp(__format_label, "ARGB8888") == 0 ||strcmp(__format_label, "BGRA8888") == 0 ||strcmp(__format_label, "ABGR8888") == 0 ) {
225                 _bool=TRUE;
226         }
227
228         return _bool;
229 }
230
231 static void
232 _mm_link_pipeline_order_csc_rsz(gstreamer_s* pGstreamer_s, image_format_s*  input_format, image_format_s* output_format)
233 {
234         if(_mm_check_resize_format(input_format->width,input_format->height, output_format->width, output_format->height))      {
235                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] check_for_resize", __func__, __LINE__);
236                 gst_bin_add_many(GST_BIN(pGstreamer_s->pipeline), pGstreamer_s->appsrc, pGstreamer_s->videoscale, pGstreamer_s->colorspace, pGstreamer_s->appsink,  NULL);
237                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] gst_bin_add_many", __func__, __LINE__);
238                 if(_mm_check_resize_format_label( input_format->format_label)) {
239                         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d]  input_format->format_label: %s", __func__, __LINE__,  input_format->format_label);
240                         if(!gst_element_link_many(pGstreamer_s->appsrc, pGstreamer_s->videoscale,  pGstreamer_s->colorspace,  pGstreamer_s->appsink, NULL)) {
241                                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] Fail to link b/w ffmpeg and appsink except rot\n", __func__, __LINE__);
242                         }
243                 }else if(_mm_check_resize_format_label(output_format->format_label)) {
244                         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d]  output_format->format_label: %s", __func__, __LINE__,  output_format->format_label);
245                         if(!gst_element_link_many(pGstreamer_s->appsrc,  pGstreamer_s->colorspace, pGstreamer_s->videoscale, pGstreamer_s->appsink, NULL)) {
246                                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] Fail to link b/w ffmpeg and appsink except rot\n", __func__, __LINE__);
247                         }
248                 }
249         }else {
250                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] check_for_convert", __func__, __LINE__);
251                 gst_bin_add_many(GST_BIN(pGstreamer_s->pipeline), pGstreamer_s->appsrc, pGstreamer_s->colorspace, pGstreamer_s->appsink,  NULL);
252                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] gst_bin_add_many", __func__, __LINE__);
253                 if(!gst_element_link_many(pGstreamer_s->appsrc,  pGstreamer_s->colorspace, pGstreamer_s->appsink, NULL)) {
254                         mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] Fail to link b/w ffmpeg and appsink except rsz & rot\n", __func__, __LINE__);
255                 }
256         }
257 }
258
259 static void
260 _mm_link_pipeline_order_csc_rsz_rot(gstreamer_s* pGstreamer_s, image_format_s*  input_format, image_format_s* output_format)
261 {
262         if(_mm_check_rotate_format_label(input_format->format_label)) {
263                 gst_bin_add_many(GST_BIN(pGstreamer_s->pipeline), pGstreamer_s->appsrc,  pGstreamer_s->videoscale, pGstreamer_s->videoflip, pGstreamer_s->colorspace, pGstreamer_s->appsink,  NULL);
264                 if(!gst_element_link_many(pGstreamer_s->appsrc, pGstreamer_s->videoscale,  pGstreamer_s->videoflip,  pGstreamer_s->colorspace,  pGstreamer_s->appsink, NULL))   {
265                         mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] Fail to link b/w appsrc and ffmpeg in rotate\n", __func__, __LINE__);
266                 }
267         }else if(_mm_check_rotate_format_label(output_format->format_label)) {
268                 gst_bin_add_many(GST_BIN(pGstreamer_s->pipeline), pGstreamer_s->appsrc,  pGstreamer_s->colorspace, pGstreamer_s->videoscale,  pGstreamer_s->videoflip,pGstreamer_s->appsink,  NULL);
269                 if(!gst_element_link_many(pGstreamer_s->appsrc,  pGstreamer_s->colorspace,  pGstreamer_s->videoscale, pGstreamer_s->videoflip, pGstreamer_s->appsink, NULL)) {
270                         mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d]] Fail to link b/w ffmpeg and appsink in rotate\n", __func__, __LINE__);
271                 }
272         }
273 }
274
275
276 static void
277 _mm_link_pipeline( gstreamer_s* pGstreamer_s, image_format_s* input_format, image_format_s* output_format, int _valuepGstreamer_sVideoFlipMethod)
278 {
279         /* set property */
280         gst_app_src_set_caps(GST_APP_SRC(pGstreamer_s->appsrc), input_format->caps); //g_object_set(pGstreamer_s->appsrc, "caps", input_format->caps, NULL);  //  you can use appsrc'cap property
281         g_object_set(pGstreamer_s->appsrc, "num-buffers", 1, NULL);
282         g_object_set(pGstreamer_s->appsrc, "is-live", TRUE, NULL); // add because of gstreamer_s time issue
283         g_object_set (pGstreamer_s->appsrc, "format", GST_FORMAT_TIME, NULL);
284         g_object_set(pGstreamer_s->appsrc, "stream-type", 0 /*stream*/, NULL);
285
286         g_object_set(pGstreamer_s->videoflip, "method", _valuepGstreamer_sVideoFlipMethod, NULL ); // GST_VIDEO_FLIP_METHOD_IDENTITY   (0): none- Identity (no rotation)   (1): clockwise  - Rotate clockwise 90 degrees   (2): rotate-180   - Rotate 180 degrees  (3): counterclockwise - Rotate counter-clockwise 90 degrees  (4): horizontal-flip  - Flip horizontally   (5): vertical-flip    - Flip vertically   (6): upper-left-diagonal - Flip across upper left/lower right diagonal  (7): upper-right-diagonal - Flip across upper right/lower left diagonal
287
288         gst_app_sink_set_caps(GST_APP_SINK(pGstreamer_s->appsink), output_format->caps); //g_object_set(pGstreamer_s->appsink, "caps", output_format->caps, NULL);
289         g_object_set(pGstreamer_s->appsink,  "drop", TRUE, NULL);
290         g_object_set(pGstreamer_s->appsink, "emit-signals", TRUE, "sync", FALSE, NULL);
291
292         if(_mm_check_rotate_format(_valuepGstreamer_sVideoFlipMethod)) { // when you want to rotate image
293                 /*  because IYUV, I420, YV12 format can use vidoeflip*/
294                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d]  set_link_pipeline_order_csc_rsz_rot", __func__, __LINE__);
295                 _mm_link_pipeline_order_csc_rsz_rot(pGstreamer_s,  input_format, output_format);
296         }else {
297                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d]  set_link_pipeline_order_csc_rsz", __func__, __LINE__);
298                 _mm_link_pipeline_order_csc_rsz(pGstreamer_s, input_format,  output_format);
299         }
300         /* Conecting to the new-buffer signal emited by the appsink*/ 
301         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start  G_CALLBACK (mm_sink_buffer)", __func__, __LINE__);
302         g_signal_connect (pGstreamer_s->appsink, "new-buffer",  G_CALLBACK (_mm_sink_buffer), pGstreamer_s);
303         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End  G_CALLBACK (mm_sink_buffer)", __func__, __LINE__);
304 }
305
306
307
308 static void
309 _mm_set_image_format_s_capabilities(image_format_s* __format)//_format_label: I420 _colorsapace: YUV
310 {
311         char _a='A', _b='A', _c='A', _d='A';
312         int _bpp=0; int _depth=0; int _red_mask=0; int _green_mask=0; int  _blue_mask=0; int _alpha_mask=0; int _endianness=0;
313
314         if(__format == NULL) {
315                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] Image format is NULL\n", __func__, __LINE__);
316         }
317         __format->caps = NULL;
318
319         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] colorspace: %s\n", __func__, __LINE__, __format->colorspace);
320
321         if(strcmp(__format->colorspace,"YUV") == 0) {
322                 if(strcmp(__format->format_label,"I420") == 0) {
323                         _a='I'; _b='4', _c='2', _d='0';
324                 }else if(strcmp(__format->format_label,"Y42B") == 0) {
325                         _a='Y'; _b='4', _c='2', _d='B';
326                 }else if(strcmp(__format->format_label,"Y444") == 0) {
327                         _a='Y'; _b='4', _c='4', _d='4';
328                 }else if(strcmp(__format->format_label,"YV12") == 0) {
329                         _a='Y'; _b='V', _c='1', _d='2'; //GStreamer-CRITICAL **: gst_mini_object_ref: assertion `mini_object != NULL' failed
330                 }else if(strcmp(__format->format_label,"NV12") == 0) {
331                         _a='N'; _b='V', _c='1', _d='2';
332                 }else if(strcmp(__format->format_label,"UYVY") == 0) {
333                         _a='U'; _b='Y', _c='V', _d='Y';
334                 }else if(strcmp(__format->format_label,"YUYV") == 0) {
335                         _a='Y'; _b='U', _c='Y', _d='2';
336                 }
337
338                 __format->caps =  gst_caps_new_simple ("video/x-raw-yuv",
339                         "format", GST_TYPE_FOURCC, GST_MAKE_FOURCC (_a, _b, _c, _d), //'I', '4', '2', '0'),
340                         "framerate", GST_TYPE_FRACTION, 25, 1,
341                         "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
342                         "width", G_TYPE_INT, __format->width,
343                         "height", G_TYPE_INT, __format->height,
344                         "framerate", GST_TYPE_FRACTION, 1, 1,
345                         NULL);
346         }
347
348         else if(strcmp(__format->colorspace,"RGB") ==0 || strcmp(__format->colorspace,"BGRX") ==0) {
349                 if(strcmp(__format->format_label,"RGB888") == 0) {
350                         _bpp=24; _depth=24;  _red_mask=16711680; _green_mask=65280; _blue_mask=255; _endianness=4321;
351                 }else if(strcmp(__format->format_label,"BGR888") == 0) {
352                         _bpp=24; _depth=24;  _red_mask=255; _green_mask=65280; _blue_mask=16711680; _endianness=4321;
353                 }else if(strcmp(__format->format_label,"RGB565") == 0) {
354                         _bpp=16; _depth=16;  _red_mask=63488; _green_mask=2016; _blue_mask=31; _endianness=1234;
355                 }else if( (strcmp(__format->format_label, "BGRX") == 0)) {
356                         _bpp=32; _depth=24;  _red_mask=65280; _green_mask=16711680; _blue_mask=-16777216; _endianness=4321;
357                 }
358                 __format->caps  =  gst_caps_new_simple ("video/x-raw-rgb",
359                         "bpp", G_TYPE_INT, _bpp,
360                         "depth", G_TYPE_INT, _depth,
361                         "red_mask", G_TYPE_INT, _red_mask,
362                         "green_mask", G_TYPE_INT, _green_mask,
363                         "blue_mask", G_TYPE_INT, _blue_mask,
364                         "width", G_TYPE_INT, __format->width,
365                         "height", G_TYPE_INT, __format->height,
366                         "endianness", G_TYPE_INT, _endianness,
367                         "framerate", GST_TYPE_FRACTION, 1, 1, NULL);
368         }
369
370         else if(strcmp(__format->colorspace,"RGBA") ==0)
371         {
372                 if(strcmp(__format->format_label,"ARGB8888") == 0) { /*[Low Arrary Address] ARGBARGB... [High Array Address]*/
373                         _bpp=32; _depth=32;  _red_mask=16711680; _green_mask=65280; _blue_mask=255; _alpha_mask=-16777216; _endianness=4321;
374                 }else if(strcmp(__format->format_label,"BGRA8888") == 0) { /*[Low Arrary Address] BGRABGRA...[High Array Address]*/
375                 _bpp=32; _depth=32;  _red_mask=65280; _green_mask=16711680; _blue_mask=-16777216; _alpha_mask=255; _endianness=4321;
376                 }else if(strcmp(__format->format_label,"RGBA8888") == 0) { /*[Low Arrary Address] RGBARGBA...[High Array Address]*/
377                         _bpp=32; _depth=32;  _red_mask=-16777216; _green_mask=16711680; _blue_mask=65280; _alpha_mask=255; _endianness=4321;
378                 }else if(strcmp(__format->format_label,"ABGR8888") == 0) { /*[Low Arrary Address] ABGRABGR...[High Array Address]*/
379                 _bpp=32; _depth=32;  _red_mask=255; _green_mask=65280; _blue_mask=16711680; _alpha_mask=-16777216; _endianness=4321;
380                 }else {
381                         mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] ***Wrong format cs type***\n", __func__, __LINE__);
382                 }
383
384                 __format->caps =  gst_caps_new_simple ("video/x-raw-rgb",
385                         "bpp", G_TYPE_INT, _bpp,
386                         "depth", G_TYPE_INT, _depth,
387                         "red_mask", G_TYPE_INT, _red_mask,
388                         "green_mask", G_TYPE_INT, _green_mask,
389                         "blue_mask", G_TYPE_INT, _blue_mask,
390                         "width", G_TYPE_INT, __format->width,
391                         "height", G_TYPE_INT, __format->height,
392                         "alpha_mask", G_TYPE_INT,_alpha_mask,
393                         "endianness", G_TYPE_INT, _endianness,
394                         "framerate", GST_TYPE_FRACTION, 1, 1, NULL);
395         }
396         if(__format->caps) {
397                 mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] ###__format->caps is not  NULL###, %p", __func__, __LINE__, __format->caps);
398         }else {
399                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] __format->caps is NULL", __func__, __LINE__);
400         }
401 }
402
403 static void
404 _mm_set_image_colorspace( image_format_s* __format)
405 {
406         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] format_label: %s\n", __func__, __LINE__, __format->format_label);
407         if( (strcmp(__format->format_label, "I420") == 0) ||(strcmp(__format->format_label, "Y42B") == 0) || (strcmp(__format->format_label, "Y444") == 0)
408                 || (strcmp(__format->format_label, "YV12") == 0) ||(strcmp(__format->format_label, "NV12") == 0)  ||(strcmp(__format->format_label, "UYVY") == 0) ||(strcmp(__format->format_label, "YUYV") == 0)) {
409                 strncpy(__format->colorspace, "YUV", sizeof(__format->colorspace));
410         }else if( (strcmp(__format->format_label, "RGB888") == 0) ||(strcmp(__format->format_label, "BGR888") == 0) ||(strcmp(__format->format_label, "RGB565") == 0)) {
411                 strncpy(__format->colorspace, "RGB", sizeof(__format->colorspace));
412         }else if( (strcmp(__format->format_label, "ARGB8888") == 0)  || (strcmp(__format->format_label, "BGRA8888") == 0)       ||(strcmp(__format->format_label, "RGBA8888") == 0)     || (strcmp(__format->format_label, "ABGR8888") == 0)) {
413                 strncpy(__format->colorspace, "RGBA", sizeof(__format->colorspace));
414         }else if( (strcmp(__format->format_label, "BGRX") == 0)) {
415                 strncpy(__format->colorspace, "BGRX", sizeof(__format->colorspace));
416         }else {
417                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] Check your colorspace format label", __func__, __LINE__);
418         }
419 }
420
421 static image_format_s*
422 _mm_set_input_image_format_s_struct(imgp_info_s* pImgp_info) //char* __format_label, int __width, int __height)
423 {
424         image_format_s* __format = NULL;
425
426         __format=(image_format_s*)malloc(sizeof(image_format_s));
427         memset(__format->format_label, 0, IMAGE_FORMAT_LABEL_BUFFER_SIZE);
428         strncpy(__format->format_label, pImgp_info->input_format_label, sizeof(__format->format_label));
429         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] input_format_label: %s\n", __func__, __LINE__, pImgp_info->input_format_label);
430         _mm_set_image_colorspace(__format);
431
432         __format->width=pImgp_info->src_width;
433         __format->height=pImgp_info->src_height;
434
435         __format->blocksize = mm_setup_image_size(pImgp_info->input_format_label, pImgp_info->src_width, pImgp_info->src_height);
436         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] input_format_label: %s\n", __func__, __LINE__, pImgp_info->input_format_label);
437         _mm_set_image_format_s_capabilities(__format);
438
439         return __format;
440 }
441
442 static void
443 _mm_round_up_output_image_widh_height(image_format_s* pFormat)
444 {
445         if(strcmp(pFormat->colorspace,"YUV") ==0) {
446                 pFormat->stride=MM_UTIL_ROUND_UP_8(pFormat->width);
447                 pFormat->elevation=MM_UTIL_ROUND_UP_8(pFormat->height);
448         }else if(strcmp(pFormat->colorspace, "RGB") ==0) {
449                 pFormat->stride=MM_UTIL_ROUND_UP_4(pFormat->width);
450                 pFormat->elevation=MM_UTIL_ROUND_UP_2(pFormat->height);
451         }
452 }
453
454 static image_format_s*
455 _mm_set_output_image_format_s_struct(imgp_info_s* pImgp_info)
456 {
457         image_format_s* __format = NULL;
458
459         __format=(image_format_s*)malloc(sizeof(image_format_s));
460         memset(__format->format_label, 0, IMAGE_FORMAT_LABEL_BUFFER_SIZE);
461         strncpy(__format->format_label, pImgp_info->output_format_label, sizeof(__format->format_label));
462         _mm_set_image_colorspace(__format);
463
464         __format->width=pImgp_info->dst_width;
465         __format->height=pImgp_info->dst_height;
466         _mm_round_up_output_image_widh_height(__format);
467
468         __format->blocksize = mm_setup_image_size(pImgp_info->output_format_label, pImgp_info->dst_width, pImgp_info->dst_height);
469         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] output_format_label: %s", __func__, __LINE__, pImgp_info->output_format_label);
470         _mm_set_image_format_s_capabilities(__format);
471         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] pImgp_info->dst: %p", __func__, __LINE__, pImgp_info->dst);
472         return __format;
473 }
474
475 static gboolean
476 __mm_check_resize_format( char* _in_format_label, int _in_w, int _in_h, char* _out_format_label, int _out_w, int _out_h)
477 {
478         gboolean _bool=TRUE;
479         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] input image format: %s input image width: %d input image height: %d output image format: %s output image width: %d output image height: %d\n",
480         __func__, __LINE__,_in_format_label, _in_w,_in_h, _out_format_label, _out_w, _out_h);
481         if(_mm_check_resize_format(_in_w, _in_h, _out_w, _out_h)) {
482                 if( !( _mm_check_resize_format_label(_in_format_label) ||_mm_check_resize_format_label(_out_format_label) ) ) {
483                         mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] ERROR-%s | %s  Resize  Only [AYUV] [YUY2] [YVYU] [UYVY] [Y800] [I420][YV12]  format can use vidoeflip ERROR- Resize!!!#####\n", __func__, __LINE__, _in_format_label, _out_format_label);
484                         _bool = FALSE;
485                 }
486         }
487         return _bool;
488 }
489
490 static gboolean
491 __mm_check_rotate_format(int angle, const char* input_format_label, const char* output_format_label)
492 {
493         gboolean _bool=TRUE;
494         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] rotate value: %d  input_format_label: %s output_format_label: %s\n",
495         __func__, __LINE__, angle, input_format_label, output_format_label);
496         if(_mm_check_rotate_format(angle)) {
497                 if(!(_mm_check_rotate_format_label(input_format_label) || _mm_check_rotate_format_label(output_format_label))) {
498                         mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] ERROR- %s  | %s  Rotate  Only IYUV, I420, YV12 format can use vidoeflip ERROR -Rotate", __func__, __LINE__, input_format_label, output_format_label);
499                         _bool = FALSE;
500                 }
501         }
502         return _bool;
503 }
504
505 static int
506 _mm_push_buffer_into_pipeline(imgp_info_s* pImgp_info, gstreamer_s * pGstreamer_s, GstCaps*_caps)
507 {
508         int ret = MM_ERROR_NONE;
509         if(_caps==NULL) {
510                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] caps is NULL\n", __func__, __LINE__);
511                 return MM_ERROR_IMAGE_INVALID_VALUE;
512         }
513
514         if(pGstreamer_s->pipeline == NULL) {
515                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] pipeline is NULL\n", __func__, __LINE__);
516                 return MM_ERROR_IMAGE_INVALID_VALUE;
517         }
518
519         GstBuffer* gst_buf = (GstBuffer *) gst_mini_object_new (GST_TYPE_BUFFER);
520
521         if(gst_buf==NULL)       {
522                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] buffer is NULL\n", __func__, __LINE__);
523                 return MM_ERROR_IMAGE_INVALID_VALUE;
524         }
525         GST_BUFFER_DATA (gst_buf) = (guint8 *) pImgp_info->src;
526         GST_BUFFER_SIZE (gst_buf) = mm_setup_image_size(pImgp_info->input_format_label, pImgp_info->src_width, pImgp_info->src_height);
527         GST_BUFFER_FLAG_SET (gst_buf, GST_BUFFER_FLAG_READONLY);
528
529         gst_buffer_set_caps (gst_buf, _caps);
530         gst_app_src_push_buffer (GST_APP_SRC (pGstreamer_s->appsrc), gst_buf); //push buffer to pipeline
531         g_free(GST_BUFFER_MALLOCDATA(gst_buf)); gst_buf = NULL; //gst_buffer_finalize(gst_buf) { buffer->free_func (buffer->malloc_data); }
532         return ret;
533 }
534
535
536 static int
537 _mm_imgp_gstcs_processing( gstreamer_s* pGstreamer_s, image_format_s* input_format, image_format_s* output_format, imgp_info_s* pImgp_info)
538 {
539         GstBus *bus = NULL;
540         GstStateChangeReturn ret_state;
541         int ret = MM_ERROR_NONE;
542         /*create pipeline*/
543         ret =  _mm_create_pipeline(pGstreamer_s);
544         if(ret != MM_ERROR_NONE)        {
545                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] ERROR - mm_create_pipeline ", __func__, __LINE__);
546         }
547
548
549         /* Make appsink emit the "new-preroll" and "new-buffer" signals. This  option is by default disabled because  signal emission is expensive and unneeded when the application prefers  to operate in pull mode.   */
550          gst_app_sink_set_emit_signals ((GstAppSink*)pGstreamer_s->appsink, TRUE);
551
552         bus = gst_pipeline_get_bus (GST_PIPELINE (pGstreamer_s->pipeline)); //GST_PIPELINE (pipeline));
553         gst_bus_add_watch (bus, (GstBusFunc) _mm_on_sink_message , pGstreamer_s); // thow to  appplicaton
554         gst_object_unref(bus);
555
556         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start mm_push_buffer_into_pipeline", __func__, __LINE__);
557         ret = _mm_push_buffer_into_pipeline(pImgp_info, pGstreamer_s, input_format->caps);
558         if(ret != MM_ERROR_NONE)        {
559                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] ERROR - mm_push_buffer_into_pipeline ", __func__, __LINE__);
560         }
561         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End mm_push_buffer_into_pipeline", __func__, __LINE__);
562
563         /*link pipeline*/
564         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start mm_link_pipeline", __func__, __LINE__);
565         _mm_link_pipeline( pGstreamer_s, input_format, output_format, pImgp_info->angle);
566         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End mm_link_pipeline", __func__, __LINE__);
567
568         /* Conecting to the new-buffer signal emited by the appsink*/ 
569         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start  G_CALLBACK (_mm_sink_preroll)", __func__, __LINE__);
570         g_signal_connect (pGstreamer_s->appsink, "new-preroll",  G_CALLBACK (_mm_sink_preroll), pGstreamer_s);
571         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End  G_CALLBACK (mm_sink_preroll)", __func__, __LINE__);
572
573         /* GST_STATE_PLAYING*/
574         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start GST_STATE_PLAYING", __func__, __LINE__);
575         ret_state = gst_element_set_state (pGstreamer_s->pipeline, GST_STATE_PLAYING);
576         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End GST_STATE_PLAYING ret_state: %d", __func__, __LINE__, ret_state);
577         ret_state = gst_element_get_state (pGstreamer_s->pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
578         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Success Get GST_STATE_PLAYING ret_state: %d", __func__, __LINE__, ret_state);
579         #if 0
580         /* Conecting to the new-buffer signal emited by the appsink*/ 
581         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start  G_CALLBACK (mm_sink_buffer)", __func__, __LINE__);
582         g_signal_connect (pGstreamer_s->appsink, "new-buffer",  G_CALLBACK (_mm_sink_buffer), pGstreamer_s);
583         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End  G_CALLBACK (mm_sink_buffer)", __func__, __LINE__);
584         #endif
585         if(ret_state  == 1)     {
586                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_PLAYING ret = %d( GST_STATE_CHANGE_SUCCESS)", __func__, __LINE__, ret_state);
587         }else if( ret_state == 2) {
588                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_PLAYING ret = %d( GST_STATE_CHANGE_ASYNC)", __func__, __LINE__, ret_state);
589         }
590
591         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] Sucess GST_STATE_CHANGE", __func__, __LINE__);
592
593         /* error */
594         if (ret_state == 0)     {
595                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] GST_STATE_CHANGE_FAILURE", __func__, __LINE__);
596                 return MM_ERROR_IMAGE_INVALID_VALUE;
597         }else {
598                 #if 0
599                         g_main_loop_run (pGstreamer_s->loop);
600                 #endif
601                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] Set GST_STATE_NULL", __func__, __LINE__);
602
603                 /*GST_STATE_NULL*/
604                 gst_element_set_state (pGstreamer_s->pipeline, GST_STATE_NULL);
605                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] End GST_STATE_NULL", __func__, __LINE__);
606                 
607                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] ###pGstreamer_s->output_buffer### : %p", __func__, __LINE__, pGstreamer_s->output_buffer);
608
609                 ret_state = gst_element_get_state (pGstreamer_s->pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
610
611                 if(ret_state  == 1)     {
612                         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_NULL ret_state = %d (GST_STATE_CHANGE_SUCCESS)\n", __func__, __LINE__, ret_state);
613                 }else if( ret_state == 2) {
614                         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_NULL ret_state = %d (GST_STATE_CHANGE_ASYNC)\n", __func__, __LINE__, ret_state);
615                 }
616
617                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] Success gst_element_get_state\n", __func__, __LINE__);
618
619                 if (ret_state == 0)     {
620                         mmf_debug(MMF_DEBUG_ERROR, "GST_STATE_CHANGE_FAILURE");
621                 }else {
622                         if(pGstreamer_s->output_buffer != NULL) {
623                                 int buffer_size = GST_BUFFER_SIZE(pGstreamer_s->output_buffer);
624                                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] buffer size: %d\n", __func__, __LINE__, buffer_size);
625                                 if( buffer_size != mm_setup_image_size(pImgp_info->output_format_label, pImgp_info->output_stride, pImgp_info->output_elevation)) {
626                                         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] Buffer size is different stride:%d elevation: %d\n", __func__, __LINE__, pImgp_info->output_stride, pImgp_info->output_elevation);
627                                 }
628                                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] pGstreamer_s->output_buffer: 0x%2x\n", __func__, __LINE__, pGstreamer_s->output_buffer);
629                                 memcpy( pImgp_info->dst, (char*)GST_BUFFER_DATA(pGstreamer_s->output_buffer), buffer_size);
630                         }else {
631                                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] pGstreamer_s->output_buffer is NULL", __func__, __LINE__);
632                         }
633                 }
634                 gst_object_unref (pGstreamer_s->pipeline);
635                 g_free(GST_BUFFER_MALLOCDATA(pGstreamer_s->output_buffer));
636                 pGstreamer_s->output_buffer = NULL;
637                 g_free (pGstreamer_s);
638
639                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] End mm_convert_colorspace \n", __func__, __LINE__);
640         }
641         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] pImgp_info->dst: %p", __func__, __LINE__, pImgp_info->dst);
642         return ret;
643 }
644
645
646 static int
647 mm_setup_image_size(const char* _format_label, int width, int height)
648 {
649         int size=0;
650
651         if(strcmp(_format_label, "I420") == 0) {
652                 setup_image_size_I420(width, height); //width * height *1.5;
653         }else if(strcmp(_format_label, "Y42B") == 0) {
654                 setup_image_size_Y42B(width, height); //width * height *2;
655         }else if(strcmp(_format_label, "YUV422") == 0) {
656                 setup_image_size_Y42B(width, height); //width * height *2;
657         }else if(strcmp(_format_label, "Y444") == 0) {
658                 setup_image_size_Y444(width, height); //width * height *3;
659         }else if(strcmp(_format_label, "YV12") == 0) {
660                 setup_image_size_YV12(width, height); //width * height *1;
661         }else if(strcmp(_format_label, "NV12") == 0) {
662                 setup_image_size_NV12(width, height); //width * height *1.5;
663         }else if(strcmp(_format_label, "RGB565") == 0) {
664                 setup_image_size_RGB565(width, height); //width * height *2;
665         }else if(strcmp(_format_label, "RGB888") == 0) {
666                 setup_image_size_RGB888(width, height); //width * height *3;
667         }else if(strcmp(_format_label, "BGR888") == 0) {
668                 setup_image_size_BGR888(width, height); //width * height *3;
669         }else if(strcmp(_format_label, "UYVY") == 0) {
670                 setup_image_size_UYVY(width, height); //width * height *2;
671         }else if(strcmp(_format_label, "YUYV") == 0) {
672                 setup_image_size_YUYV(width, height); //width * height *2;
673         }else if(strcmp(_format_label, "ARGB8888") == 0) {
674         size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
675         }else if(strcmp(_format_label, "BGRA8888") == 0) {
676                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
677         }else if(strcmp(_format_label, "RGBA8888") == 0) {
678                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
679         }else if(strcmp(_format_label, "ABGR8888") == 0) {
680                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
681         }else if(strcmp(_format_label, "BGRX") == 0) {
682                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
683         }
684
685         return size;
686 }
687
688 static int
689 _mm_imgp_gstcs(imgp_info_s* pImgp_info)
690 {
691         image_format_s* input_format=NULL, *output_format=NULL;
692         gstreamer_s* pGstreamer_s;
693         int ret = MM_ERROR_NONE;
694         g_type_init();
695         if(pImgp_info == NULL) {
696                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] imgp_info_s is NULL", __func__, __LINE__);
697         }
698
699         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] [input] format label : %s width: %d height: %d\t[output] format label: %s width: %d height: %d rotation vaule: %d dst: 0x%2x", __func__, __LINE__,
700                 pImgp_info->input_format_label,  pImgp_info->src_width, pImgp_info->src_height, pImgp_info->output_format_label,  pImgp_info->dst_width, pImgp_info->dst_height, pImgp_info->angle, pImgp_info->dst);
701
702         if(pImgp_info->dst == NULL) {
703                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] imgp_info_s->dst is NULL", __func__, __LINE__);
704         }
705         input_format= _mm_set_input_image_format_s_struct(pImgp_info);
706         output_format= _mm_set_output_image_format_s_struct(pImgp_info);
707
708         pImgp_info->output_stride = output_format->stride;
709         pImgp_info->output_elevation = output_format->elevation;
710
711         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] mm_check_resize_format&&mm_check_rotate_format ", __func__, __LINE__);
712
713         if(__mm_check_resize_format(pImgp_info->input_format_label, pImgp_info->src_width, pImgp_info->src_height, pImgp_info->output_format_label, pImgp_info->dst_width, pImgp_info->dst_height)
714                 && __mm_check_rotate_format(pImgp_info->angle, pImgp_info->input_format_label, pImgp_info->output_format_label) ) {
715                 #if 0 // def GST_EXT_TIME_ANALYSIS
716                         MMTA_INIT();
717                 #endif
718                 gst_init (NULL, NULL);
719
720                 pGstreamer_s = g_new0 (gstreamer_s, 1);
721
722                 #if 0 // def GST_EXT_TIME_ANALYSIS
723                          MMTA_ACUM_ITEM_BEGIN("ffmpegcolorspace", 0);
724                 #endif
725                 /* _format_label : I420, RGB888 etc*/
726                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] Start mm_convert_colorspace ", __func__, __LINE__);
727                 ret =_mm_imgp_gstcs_processing(pGstreamer_s, input_format, output_format, pImgp_info); //input: buffer pointer for input image , input  image format, input image width, input image height, output: buffer porinter for output image
728
729                 if(ret == MM_ERROR_NONE) {
730                         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End mm_convert_colorspace [pImgp_info->dst: %p]", __func__, __LINE__, pImgp_info->dst);
731                 }else if (ret != MM_ERROR_NONE) {
732                         mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] ERROR -mm_convert_colorspace", __func__, __LINE__);
733                 }
734                 #if 0 //def GST_EXT_TIME_ANALYSIS 
735                         MMTA_ACUM_ITEM_END("ffmpegcolorspace", 0);
736                         MMTA_ACUM_ITEM_SHOW_RESULT();
737                         MMTA_ACUM_ITEM_SHOW_RESULT_TO(MMTA_SHOW_FILE);
738                         MMTA_RELEASE ();
739                 #endif
740         }else {
741                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] Error - Check your input / ouput image input_format_label: %s src_width: %d src_height: %d output_format_label: %s output_stride: %d output_elevation: %d  angle: %d ",__func__, __LINE__,
742                 pImgp_info->input_format_label, pImgp_info->src_width, pImgp_info->src_height, pImgp_info->output_format_label, pImgp_info->output_stride, pImgp_info->output_elevation, pImgp_info->angle);
743                 return MM_ERROR_IMAGE_INVALID_VALUE;
744         }
745         if(input_format) {
746                 free(input_format); input_format = NULL;
747         }
748         if(output_format) {
749                 free(output_format); output_format  = NULL;
750         }
751         return ret;
752 }
753
754 int
755 mm_imgp(imgp_info_s* pImgp_info, imgp_type_e _imgp_type)
756 {
757         if (pImgp_info == NULL) {
758                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] input vaule is error", __func__, __LINE__);
759         }
760         return _mm_imgp_gstcs(pImgp_info);
761 }