upload tizen1.0 source
[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         strncpy(__format->format_label, pImgp_info->input_format_label, sizeof(__format->format_label));
428         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] input_format_label: %s\n", __func__, __LINE__, pImgp_info->input_format_label);
429         _mm_set_image_colorspace(__format);
430
431         __format->width=pImgp_info->src_width;
432         __format->height=pImgp_info->src_height;
433
434         __format->blocksize = mm_setup_image_size(pImgp_info->input_format_label, pImgp_info->src_width, pImgp_info->src_height);
435         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] input_format_label: %s\n", __func__, __LINE__, pImgp_info->input_format_label);
436         _mm_set_image_format_s_capabilities(__format);
437
438         return __format;
439 }
440
441 static void
442 _mm_round_up_output_image_widh_height(image_format_s* pFormat)
443 {
444         if(strcmp(pFormat->colorspace,"YUV") ==0) {
445                 pFormat->stride=MM_UTIL_ROUND_UP_8(pFormat->width);
446                 pFormat->elevation=MM_UTIL_ROUND_UP_8(pFormat->height);
447         }else if(strcmp(pFormat->colorspace, "RGB") ==0) {
448                 pFormat->stride=MM_UTIL_ROUND_UP_4(pFormat->width);
449                 pFormat->elevation=MM_UTIL_ROUND_UP_2(pFormat->height);
450         }
451 }
452
453 static image_format_s*
454 _mm_set_output_image_format_s_struct(imgp_info_s* pImgp_info)
455 {
456         image_format_s* __format = NULL;
457
458         __format=(image_format_s*)malloc(sizeof(image_format_s));
459         strncpy(__format->format_label, pImgp_info->output_format_label, sizeof(__format->format_label));
460         _mm_set_image_colorspace(__format);
461
462         if(pImgp_info->angle == MM_UTIL_ROTATE_90 || pImgp_info->angle == MM_UTIL_ROTATE_270) {
463                 __format->width=pImgp_info->dst_height;
464                 __format->height= pImgp_info->dst_width;
465                 _mm_round_up_output_image_widh_height(__format);
466         }else {
467                 __format->width=pImgp_info->dst_width;
468                 __format->height=pImgp_info->dst_height;
469                 _mm_round_up_output_image_widh_height(__format);
470         }
471
472         __format->blocksize = mm_setup_image_size(pImgp_info->output_format_label, pImgp_info->dst_width, pImgp_info->dst_height);
473         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] output_format_label: %s", __func__, __LINE__, pImgp_info->output_format_label);
474         _mm_set_image_format_s_capabilities(__format);
475         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] pImgp_info->dst: %p", __func__, __LINE__, pImgp_info->dst);
476         return __format;
477 }
478
479 static gboolean
480 __mm_check_resize_format( char* _in_format_label, int _in_w, int _in_h, char* _out_format_label, int _out_w, int _out_h)
481 {
482         gboolean _bool=TRUE;
483         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",
484         __func__, __LINE__,_in_format_label, _in_w,_in_h, _out_format_label, _out_w, _out_h);
485         if(_mm_check_resize_format(_in_w, _in_h, _out_w, _out_h)) {
486                 if( !( _mm_check_resize_format_label(_in_format_label) ||_mm_check_resize_format_label(_out_format_label) ) ) {
487                         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);
488                         _bool = FALSE;
489                 }
490         }
491         return _bool;
492 }
493
494 static gboolean
495 __mm_check_rotate_format(int angle, const char* input_format_label, const char* output_format_label)
496 {
497         gboolean _bool=TRUE;
498         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] rotate value: %d  input_format_label: %s output_format_label: %s\n",
499         __func__, __LINE__, angle, input_format_label, output_format_label);
500         if(_mm_check_rotate_format(angle)) {
501                 if(!(_mm_check_rotate_format_label(input_format_label) || _mm_check_rotate_format_label(output_format_label))) {
502                         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);
503                         _bool = FALSE;
504                 }
505         }
506         return _bool;
507 }
508
509 static int
510 _mm_push_buffer_into_pipeline(imgp_info_s* pImgp_info, gstreamer_s * pGstreamer_s, GstCaps*_caps)
511 {
512         int ret = MM_ERROR_NONE;
513         if(_caps==NULL) {
514                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] caps is NULL\n", __func__, __LINE__);
515                 return MM_ERROR_IMAGE_INVALID_VALUE;
516         }
517
518         if(pGstreamer_s->pipeline == NULL) {
519                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] pipeline is NULL\n", __func__, __LINE__);
520                 return MM_ERROR_IMAGE_INVALID_VALUE;
521         }
522
523         GstBuffer* gst_buf = (GstBuffer *) gst_mini_object_new (GST_TYPE_BUFFER);
524
525         if(gst_buf==NULL)       {
526                 mmf_debug(MMF_DEBUG_ERROR,"[%s][%05d] buffer is NULL\n", __func__, __LINE__);
527                 return MM_ERROR_IMAGE_INVALID_VALUE;
528         }
529         GST_BUFFER_DATA (gst_buf) = (guint8 *) pImgp_info->src;
530         GST_BUFFER_SIZE (gst_buf) = mm_setup_image_size(pImgp_info->input_format_label, pImgp_info->src_width, pImgp_info->src_height);
531         GST_BUFFER_FLAG_SET (gst_buf, GST_BUFFER_FLAG_READONLY);
532
533         gst_buffer_set_caps (gst_buf, _caps);
534         gst_app_src_push_buffer (GST_APP_SRC (pGstreamer_s->appsrc), gst_buf); //push buffer to pipeline
535         g_free(GST_BUFFER_MALLOCDATA(gst_buf)); gst_buf = NULL; //gst_buffer_finalize(gst_buf) { buffer->free_func (buffer->malloc_data); }
536         return ret;
537 }
538
539
540 static int
541 _mm_imgp_gstcs_processing( gstreamer_s* pGstreamer_s, image_format_s* input_format, image_format_s* output_format, imgp_info_s* pImgp_info)
542 {
543         GstBus *bus = NULL;
544         GstStateChangeReturn ret_state;
545         int ret = MM_ERROR_NONE;
546         /*create pipeline*/
547         ret =  _mm_create_pipeline(pGstreamer_s);
548         if(ret != MM_ERROR_NONE)        {
549                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] ERROR - mm_create_pipeline ", __func__, __LINE__);
550         }
551
552
553         /* 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.   */
554          gst_app_sink_set_emit_signals ((GstAppSink*)pGstreamer_s->appsink, TRUE);
555
556         bus = gst_pipeline_get_bus (GST_PIPELINE (pGstreamer_s->pipeline)); //GST_PIPELINE (pipeline));
557         gst_bus_add_watch (bus, (GstBusFunc) _mm_on_sink_message , pGstreamer_s); // thow to  appplicaton
558         gst_object_unref(bus);
559
560         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start mm_push_buffer_into_pipeline", __func__, __LINE__);
561         ret = _mm_push_buffer_into_pipeline(pImgp_info, pGstreamer_s, input_format->caps);
562         if(ret != MM_ERROR_NONE)        {
563                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] ERROR - mm_push_buffer_into_pipeline ", __func__, __LINE__);
564         }
565         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End mm_push_buffer_into_pipeline", __func__, __LINE__);
566
567         /*link pipeline*/
568         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start mm_link_pipeline", __func__, __LINE__);
569         _mm_link_pipeline( pGstreamer_s, input_format, output_format, pImgp_info->angle);
570         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End mm_link_pipeline", __func__, __LINE__);
571
572         /* Conecting to the new-buffer signal emited by the appsink*/ 
573         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start  G_CALLBACK (_mm_sink_preroll)", __func__, __LINE__);
574         g_signal_connect (pGstreamer_s->appsink, "new-preroll",  G_CALLBACK (_mm_sink_preroll), pGstreamer_s);
575         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End  G_CALLBACK (mm_sink_preroll)", __func__, __LINE__);
576
577         /* GST_STATE_PLAYING*/
578         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start GST_STATE_PLAYING", __func__, __LINE__);
579         ret_state = gst_element_set_state (pGstreamer_s->pipeline, GST_STATE_PLAYING);
580         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End GST_STATE_PLAYING ret_state: %d", __func__, __LINE__, ret_state);
581         ret_state = gst_element_get_state (pGstreamer_s->pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
582         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Success Get GST_STATE_PLAYING ret_state: %d", __func__, __LINE__, ret_state);
583         #if 0
584         /* Conecting to the new-buffer signal emited by the appsink*/ 
585         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] Start  G_CALLBACK (mm_sink_buffer)", __func__, __LINE__);
586         g_signal_connect (pGstreamer_s->appsink, "new-buffer",  G_CALLBACK (_mm_sink_buffer), pGstreamer_s);
587         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End  G_CALLBACK (mm_sink_buffer)", __func__, __LINE__);
588         #endif
589         if(ret_state  == 1)     {
590                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_PLAYING ret = %d( GST_STATE_CHANGE_SUCCESS)", __func__, __LINE__, ret_state);
591         }else if( ret_state == 2) {
592                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_PLAYING ret = %d( GST_STATE_CHANGE_ASYNC)", __func__, __LINE__, ret_state);
593         }
594
595         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] Sucess GST_STATE_CHANGE", __func__, __LINE__);
596
597         /* error */
598         if (ret_state == 0)     {
599                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] GST_STATE_CHANGE_FAILURE", __func__, __LINE__);
600                 return MM_ERROR_IMAGE_INVALID_VALUE;
601         }else {
602                 #if 0
603                         g_main_loop_run (pGstreamer_s->loop);
604                 #endif
605                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] Set GST_STATE_NULL", __func__, __LINE__);
606
607                 /*GST_STATE_NULL*/
608                 gst_element_set_state (pGstreamer_s->pipeline, GST_STATE_NULL);
609                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] End GST_STATE_NULL", __func__, __LINE__);
610                 
611                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] ###pGstreamer_s->output_buffer### : %p", __func__, __LINE__, pGstreamer_s->output_buffer);
612
613                 ret_state = gst_element_get_state (pGstreamer_s->pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
614
615                 if(ret_state  == 1)     {
616                         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_NULL ret_state = %d (GST_STATE_CHANGE_SUCCESS)\n", __func__, __LINE__, ret_state);
617                 }else if( ret_state == 2) {
618                         mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] GST_STATE_NULL ret_state = %d (GST_STATE_CHANGE_ASYNC)\n", __func__, __LINE__, ret_state);
619                 }
620
621                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] Success gst_element_get_state\n", __func__, __LINE__);
622
623                 if (ret_state == 0)     {
624                         mmf_debug(MMF_DEBUG_ERROR, "GST_STATE_CHANGE_FAILURE");
625                 }else {
626                         if(pGstreamer_s->output_buffer != NULL) {
627                                 int buffer_size = GST_BUFFER_SIZE(pGstreamer_s->output_buffer);
628                                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] buffer size: %d\n", __func__, __LINE__, buffer_size);
629                                 if( buffer_size != mm_setup_image_size(pImgp_info->output_format_label, pImgp_info->output_stride, pImgp_info->output_elevation)) {
630                                         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);
631                                 }
632                                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] pGstreamer_s->output_buffer: 0x%2x\n", __func__, __LINE__, pGstreamer_s->output_buffer);
633                                 memcpy( pImgp_info->dst, (char*)GST_BUFFER_DATA(pGstreamer_s->output_buffer), buffer_size);
634                         }else {
635                                 mmf_debug (MMF_DEBUG_LOG, "[%s][%05d] pGstreamer_s->output_buffer is NULL", __func__, __LINE__);
636                         }
637                 }
638                 gst_object_unref (pGstreamer_s->pipeline);
639                 g_free(GST_BUFFER_MALLOCDATA(pGstreamer_s->output_buffer));
640                 pGstreamer_s->output_buffer = NULL;
641                 g_free (pGstreamer_s);
642
643                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] End mm_convert_colorspace \n", __func__, __LINE__);
644         }
645         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] pImgp_info->dst: %p", __func__, __LINE__, pImgp_info->dst);
646         return ret;
647 }
648
649
650 static int
651 mm_setup_image_size(const char* _format_label, int width, int height)
652 {
653         int size=0;
654
655         if(strcmp(_format_label, "I420") == 0) {
656                 setup_image_size_I420(width, height); //width * height *1.5;
657         }else if(strcmp(_format_label, "Y42B") == 0) {
658                 setup_image_size_Y42B(width, height); //width * height *2;
659         }else if(strcmp(_format_label, "YUV422") == 0) {
660                 setup_image_size_Y42B(width, height); //width * height *2;
661         }else if(strcmp(_format_label, "Y444") == 0) {
662                 setup_image_size_Y444(width, height); //width * height *3;
663         }else if(strcmp(_format_label, "YV12") == 0) {
664                 setup_image_size_YV12(width, height); //width * height *1;
665         }else if(strcmp(_format_label, "NV12") == 0) {
666                 setup_image_size_NV12(width, height); //width * height *1.5;
667         }else if(strcmp(_format_label, "RGB565") == 0) {
668                 setup_image_size_RGB565(width, height); //width * height *2;
669         }else if(strcmp(_format_label, "RGB888") == 0) {
670                 setup_image_size_RGB888(width, height); //width * height *3;
671         }else if(strcmp(_format_label, "BGR888") == 0) {
672                 setup_image_size_BGR888(width, height); //width * height *3;
673         }else if(strcmp(_format_label, "UYVY") == 0) {
674                 setup_image_size_UYVY(width, height); //width * height *2;
675         }else if(strcmp(_format_label, "YUYV") == 0) {
676                 setup_image_size_YUYV(width, height); //width * height *2;
677         }else if(strcmp(_format_label, "ARGB8888") == 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, "BGRA8888") == 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, "RGBA8888") == 0) {
682                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
683         }else if(strcmp(_format_label, "ABGR8888") == 0) {
684                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
685         }else if(strcmp(_format_label, "BGRX") == 0) {
686                 size = width * height *4; mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] file_size: %d\n", __func__, __LINE__, size);
687         }
688
689         return size;
690 }
691
692 static int
693 _mm_imgp_gstcs(imgp_info_s* pImgp_info)
694 {
695         image_format_s* input_format=NULL, *output_format=NULL;
696         gstreamer_s* pGstreamer_s;
697         int ret = MM_ERROR_NONE;
698         g_type_init();
699         if(pImgp_info == NULL) {
700                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] imgp_info_s is NULL", __func__, __LINE__);
701         }
702
703         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__,
704                 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);
705
706         if(pImgp_info->dst == NULL) {
707                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] imgp_info_s->dst is NULL", __func__, __LINE__);
708         }
709         input_format= _mm_set_input_image_format_s_struct(pImgp_info);
710         output_format= _mm_set_output_image_format_s_struct(pImgp_info);
711
712         pImgp_info->output_stride = output_format->stride;
713         pImgp_info->output_elevation = output_format->elevation;
714
715         mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] mm_check_resize_format&&mm_check_rotate_format ", __func__, __LINE__);
716
717         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)
718                 && __mm_check_rotate_format(pImgp_info->angle, pImgp_info->input_format_label, pImgp_info->output_format_label) ) {
719                 #if 0 // def GST_EXT_TIME_ANALYSIS
720                         MMTA_INIT();
721                 #endif
722                 gst_init (NULL, NULL);
723
724                 pGstreamer_s = g_new0 (gstreamer_s, 1);
725
726                 #if 0 // def GST_EXT_TIME_ANALYSIS
727                          MMTA_ACUM_ITEM_BEGIN("ffmpegcolorspace", 0);
728                 #endif
729                 /* _format_label : I420, RGB888 etc*/
730                 mmf_debug(MMF_DEBUG_LOG,"[%s][%05d] Start mm_convert_colorspace ", __func__, __LINE__);
731                 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
732
733                 if(ret == MM_ERROR_NONE) {
734                         mmf_debug(MMF_DEBUG_LOG, "[%s][%05d] End mm_convert_colorspace [pImgp_info->dst: %p]", __func__, __LINE__, pImgp_info->dst);
735                 }else if (ret != MM_ERROR_NONE) {
736                         mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] ERROR -mm_convert_colorspace", __func__, __LINE__);
737                 }
738                 #if 0 //def GST_EXT_TIME_ANALYSIS 
739                         MMTA_ACUM_ITEM_END("ffmpegcolorspace", 0);
740                         MMTA_ACUM_ITEM_SHOW_RESULT();
741                         MMTA_ACUM_ITEM_SHOW_RESULT_TO(MMTA_SHOW_FILE);
742                         MMTA_RELEASE ();
743                 #endif
744         }else {
745                 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__,
746                 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);
747                 return MM_ERROR_IMAGE_INVALID_VALUE;
748         }
749         if(input_format) {
750                 free(input_format); input_format = NULL;
751         }
752         if(output_format) {
753                 free(output_format); output_format  = NULL;
754         }
755         return ret;
756 }
757
758 int
759 mm_imgp(imgp_info_s* pImgp_info, imgp_type_e _imgp_type)
760 {
761         if (pImgp_info == NULL) {
762                 mmf_debug(MMF_DEBUG_ERROR, "[%s][%05d] input vaule is error", __func__, __LINE__);
763         }
764         return _mm_imgp_gstcs(pImgp_info);
765 }