From 62b342587fa338a375c09f0493d0b1424b551ae5 Mon Sep 17 00:00:00 2001 From: Gilbok Lee Date: Tue, 19 Jun 2018 09:37:47 +0900 Subject: [PATCH] Unused nxvideo codec(artik H/W codec) [Version] 0.10.10 [Profile] Mobile, TV [Issue Type] Fix bugs Change-Id: I38afc65503f35b9cbbcadde0dc9282769bc973b1 --- packaging/libmm-transcode.spec | 2 +- transcode/mm_transcode_seek.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packaging/libmm-transcode.spec b/packaging/libmm-transcode.spec index 6e20179..6943370 100644 --- a/packaging/libmm-transcode.spec +++ b/packaging/libmm-transcode.spec @@ -1,6 +1,6 @@ Name: libmm-transcode Summary: Multimedia Framework Video Transcode Library -Version: 0.10.9 +Version: 0.10.10 Release: 0 Group: System/Libraries License: Apache-2.0 diff --git a/transcode/mm_transcode_seek.c b/transcode/mm_transcode_seek.c index 6e70b1a..8d13f21 100644 --- a/transcode/mm_transcode_seek.c +++ b/transcode/mm_transcode_seek.c @@ -200,7 +200,8 @@ 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") || g_strrstr(feature_name, "v4l2")) { + if (g_strrstr(feature_name, "omx") || g_strrstr(feature_name, "sprd") + || g_strrstr(feature_name, "v4l2") || g_strrstr(feature_name, "nxvideo")) { /* emit autoplug-select to see what we should do with it. */ LOGD("SKIP %s Codec", feature_name); return GST_AUTOPLUG_SELECT_SKIP; -- 2.7.4