diff options
author | SeokHoon Lee <andy.shlee@samsung.com> | 2016-05-19 18:25:07 +0900 |
---|---|---|
committer | SeokHoon Lee <andy.shlee@samsung.com> | 2016-05-19 18:27:40 +0900 |
commit | 2ac4aeeea701f94e4a5e1dd54ddccd2fa80dab6e (patch) | |
tree | 4d9d82d6bb3f3e18f97a0eee1452caf83b2b9ce5 | |
parent | 2c768f13e5431ed71f6ec89f23a23ffbf4dd5c4a (diff) | |
download | mediastreamrecorder-tizen_3.0.m2.tar.gz mediastreamrecorder-tizen_3.0.m2.tar.bz2 mediastreamrecorder-tizen_3.0.m2.zip |
fix build warning of memcpy/sleep functionsubmit/tizen_3.0_wearable/20161015.000000submit/tizen_3.0_tv/20161015.000000submit/tizen_3.0_mobile/20161015.000001submit/tizen_3.0_ivi/20161010.000005submit/tizen_3.0_common/20161104.104000submit/tizen_3.0.m2/20170104.093749submit/tizen/20160520.025421accepted/tizen/wearable/20160520.081417accepted/tizen/tv/20160520.081427accepted/tizen/mobile/20160520.081456accepted/tizen/ivi/20160520.081506accepted/tizen/common/20160520.171202accepted/tizen/3.0/wearable/20161015.080328accepted/tizen/3.0/tv/20161016.003418accepted/tizen/3.0/mobile/20161015.032641accepted/tizen/3.0/ivi/20161011.055359accepted/tizen/3.0/common/20161114.105241accepted/tizen/3.0.m2/wearable/20170104.122801accepted/tizen/3.0.m2/tv/20170104.122413accepted/tizen/3.0.m2/mobile/20170104.121913tizen_3.0_tvtizen_3.0.m2accepted/tizen_3.0.m2_wearableaccepted/tizen_3.0.m2_tvaccepted/tizen_3.0.m2_mobile
Signed-off-by: SeokHoon Lee <andy.shlee@samsung.com>
Change-Id: I5c99e8c27c16f251a749690271b25deba0d69f86
-rw-r--r-- | packaging/capi-media-streamrecorder.spec | 2 | ||||
-rw-r--r-- | test/streamrecorder_test.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/packaging/capi-media-streamrecorder.spec b/packaging/capi-media-streamrecorder.spec index 6fda5cf..aa09e45 100644 --- a/packaging/capi-media-streamrecorder.spec +++ b/packaging/capi-media-streamrecorder.spec @@ -1,6 +1,6 @@ Name: capi-media-streamrecorder Summary: A Streamrecorder library in Tizen Native API -Version: 0.0.6 +Version: 0.0.7 Release: 0 Group: Multimedia/Other License: Apache-2.0 diff --git a/test/streamrecorder_test.c b/test/streamrecorder_test.c index 5066e94..991a608 100644 --- a/test/streamrecorder_test.c +++ b/test/streamrecorder_test.c @@ -20,8 +20,10 @@ /*======================================================================================= | INCLUDE FILES | =======================================================================================*/ +#include <unistd.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <glib.h> #include <gst/gst.h> #include <sys/time.h> |