Skip v4l2decoder (v4l2decoder occure decoding error) 05/54305/1 accepted/tizen/ivi/20160218.024005 accepted/tizen/mobile/20151215.054702 accepted/tizen/tv/20151215.054721 accepted/tizen/wearable/20151215.054750 submit/tizen/20151215.021015 submit/tizen_common/20151229.142028 submit/tizen_common/20151229.144031 submit/tizen_common/20151229.154718 submit/tizen_ivi/20160217.000000 submit/tizen_ivi/20160217.000003
authorGilbok Lee <gilbok.lee@samsung.com>
Tue, 15 Dec 2015 01:15:38 +0000 (10:15 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Tue, 15 Dec 2015 01:15:38 +0000 (10:15 +0900)
Change-Id: Icaab136158f0e0331bda090d4212c2275e49f45b
Signed-off-by: Gilbok Lee <gilbok.lee@samsung.com>
packaging/libmm-transcode.spec
transcode/mm_transcode_seek.c

index f4afff0..60fced6 100644 (file)
@@ -1,7 +1,7 @@
 Name:       libmm-transcode
 Summary:    Multimedia Framework Video Transcode Library
 Version:    0.10
-Release:    4
+Release:    5
 Group:      System/Libraries
 License:    Apache-2.0
 Source0:    %{name}-%{version}.tar.gz
index eb675bb..b198539 100755 (executable)
@@ -200,9 +200,9 @@ GstAutoplugSelectResult _mm_cb_decode_bin_autoplug_select(GstElement *element, G
        }
 
        if (g_strrstr(caps_str, "video")) {
-               if (g_strrstr(feature_name, "omx") || g_strrstr(feature_name, "sprd")) {
+               if (g_strrstr(feature_name, "omx") || g_strrstr(feature_name, "sprd") || g_strrstr(feature_name, "v4l2")) {
                        /* emit autoplug-select to see what we should do with it. */
-                       debug_log("SKIP HW Codec");
+                       debug_log("SKIP %s Codec", feature_name);
                        return GST_AUTOPLUG_SELECT_SKIP;
                }
                handle->property->videodecodename = (char *)malloc(sizeof(char) * ENC_BUFFER_SIZE);