Sangchul Lee [Wed, 10 Jun 2020 01:47:20 +0000 (10:47 +0900)]
Add new parameter to set/get STUN server URL for WebRTC node
MEDIA_STREAMER_PARAM_WEBRTC_STUN_SERVER is added.
The default value is "stun://stun.l.google.com:19302"
[Version] 0.1.57
[Issue Type] New feature
Change-Id: I12365080f76f19dc4175c8616a998fb8fe5d3624
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Thu, 11 Jun 2020 02:21:05 +0000 (11:21 +0900)]
Add support for OPUS audio format
[Version] 0.1.56
[Issue Type] New feature
Change-Id: I2629add7d6d5f00a6dea8290c997a70656757cef
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Fri, 5 Jun 2020 06:00:47 +0000 (15:00 +0900)]
Add new APIs to set/unset decoded ready callback of the node
This callback will be invoked when the 'pad-added' signal of
a gstreamer element for decoding something in the node is received.
User can utilize this callback to link the decoded source pad
with new node's sink pad for rendering something in the application.
- int media_streamer_node_set_decoded_ready_cb(media_streamer_node_h node,
media_streamer_node_decoded_ready_cb callback,
void *user_data)
- typedef void (*media_streamer_node_decoded_ready_cb)(media_streamer_node_h node,
const char *src_pad_name,
const char *media_types,
void *user_data)
- int media_streamer_node_unset_decoded_ready_cb(media_streamer_node_h node)
Change-Id: I92199bae3b9c3e4028050e26a8ba7ab7b39df2d4
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Tue, 9 Jun 2020 06:19:22 +0000 (15:19 +0900)]
Fix bug in ms_find_element_in_bin_by_type()
Invalid parameter for gst_element_get_factory() is fixed.
[Version] 0.1.55
[Issue Type] Bug fix
Change-Id: Ic459e16669c27bb2b314921c26f33aa74f13498f
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Hyunil [Fri, 5 Jun 2020 05:48:15 +0000 (14:48 +0900)]
Add new param for setting remote session description and ICE candidiate for WebRTC peer connection
- add MEDIA_STREAMER_PARAM_WEBRTC_REMOTE_SESSION_DESCRIPTION
- add MEDIA_STREAMER_PARAM_WEBRTC_ADD_ICE_CANDIDATE
Add internal APIs to set remote session description and ICE candidate to WebRTC node
- int ms_webrtcbin_set_remote_session_description(media_streamer_node_s *node, const char *sdp_msg)
- int ms_webrtcbin_add_ice_candidate(media_streamer_node_s *node, const char *ice_msg)
[Version] 0.1.54
[Issue Type] New feature
Change-Id: I5a1a66a61dcb511cebf62628d3bb8217912bc8cd
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Sangchul Lee [Thu, 4 Jun 2020 06:58:51 +0000 (15:58 +0900)]
Add internal APIs to get SDP/ICE from text message
- int ms_webrtc_get_sdp_from_message(const char *sdp_msg, gchar **sdp)
- int ms_webrtc_get_ice_candidate_from_message(const char *ice_msg, gchar **candidate, gint *mlineindex)
[Version] 0.1.53
[Issue Type] New feature
Change-Id: Id8a6c9c1fad0dadcaf1456c80db8ebcaa00683a1
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Wed, 3 Jun 2020 08:59:00 +0000 (17:59 +0900)]
Add new APIs to set/unset webrtc message callback
- int media_streamer_webrtc_node_set_message_cb(media_streamer_node_h webrtc,
media_streamer_webrtc_message_cb callback,
void *user_data)
- int media_streamer_webrtc_node_unset_message_cb(media_streamer_node_h webrtc)
- typedef void (*media_streamer_webrtc_message_cb)(media_streamer_node_h webrtc,
const char *message,
void *user_data);
[Version] 0.1.52
[Issue Type] New feature
Change-Id: I452d7c88ff6e6e80cb41388a7d5c6d05d308527e
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 1 Jun 2020 23:54:17 +0000 (08:54 +0900)]
Add support for WebRTC node
WebRTC node is added.
- MEDIA_STREAMER_NODE_TYPE_WEBRTC
New parameter is added for WebRTC node to determine
this peer is for offer or answer.
- MEDIA_STREAMER_PARAM_WEBRTC_PEER_TYPE
Handling SDP messages regarding WebRTC node are added.
media_streamer_gst_webrtc.c[h] are added.
[Version] 0.1.51
[Issue Type] New feature
Change-Id: Ic63e1993f75bb598db6e7bc85e861b6f35678e69
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Hyunil [Tue, 2 Jun 2020 08:07:01 +0000 (17:07 +0900)]
Add webrtcbin test menu
[Version] 0.1.50
[Issue Type] New feature
Change-Id: I3ce67e4c875461c6421cf9aa0454af04a7ff698d
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Sangchul Lee [Mon, 1 Jun 2020 02:30:43 +0000 (11:30 +0900)]
Add internal function - ms_find_element_in_bin_by_type()
__ms_bin_find_element_by_type() is renamed to
__ms_bin_find_element_and_link_by_type()
[Version] 0.1.49
[Issue Type] New feature
Change-Id: I09948cb17ce496fa9c42e2a14077080825c12266
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 1 Jun 2020 01:07:44 +0000 (10:07 +0900)]
Fix return type of ms_rtp_node_prepare()
[Version] 0.1.48
[Issue Type] Improvement
Change-Id: I1675c66f243f851b3b593ce34b8135d9e69052cd
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Hyunil [Thu, 28 May 2020 09:19:28 +0000 (18:19 +0900)]
Modify __demux_find to __find_node
- now, function is used for all node
[Version] 0.1.47
[Issue Type] Improvement
Change-Id: Id323af85dd26f347febeca488fe00cbc67c92d8a
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 28 May 2020 04:46:37 +0000 (13:46 +0900)]
Add VP8 encoder for video encoder bin
- There's no parser for VP8
[Version] 0.1.46
[Issue Type] New feature
Change-Id: I5e859b937aab400feb1d5a262447cde1f9155502
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Sangchul Lee [Wed, 27 May 2020 04:23:50 +0000 (13:23 +0900)]
Release resources after finishing change of gst state to NULL
[Version] 0.1.45
[Issue Type] Bug fix
Change-Id: I021849c35725ac757218ec2071491168d579625a
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Tue, 26 May 2020 07:18:08 +0000 (16:18 +0900)]
Change file name - _node_policy_ to _node_dpm_policy_
The name of files and internal APIs are changed
to clarify what it relates.
[Version] 0.1.44
[Issue Type] Naming
Change-Id: Ib47ea70d94cdb2833b991efe6f34a1b923ee58aa
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Tue, 26 May 2020 04:16:18 +0000 (13:16 +0900)]
Revise DPM policy checking codes
Modified to keep going even if the DPM API fails.
Missing g_object_unref() is added.
Some logs are modified.
[Version] 0.1.43
[Issue Type] Improvement
Change-Id: I2d472262195fca4e7cc80883b5d40279cce0d244
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 25 May 2020 11:35:19 +0000 (20:35 +0900)]
Change function name - ms_state_change() to ms_set_state()
[Version] 0.1.42
[Issue Type] Naming
Change-Id: I6a32b0b4ba74034ba761d3183c70e347220f8e82
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Fri, 22 May 2020 11:33:56 +0000 (20:33 +0900)]
Use 'src' to unify parameter name for the source
Parameter names of media_streamer_node_link() are also
revised to avoid any possibility of misunderstanding,
the previous name - src_node - does not mean a source type
node.
[Version] 0.1.41
[Issue Type] Doxygen
Change-Id: Idfa954a679d8c30f04f74944b71c019e93d654ee
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Fri, 22 May 2020 10:54:26 +0000 (19:54 +0900)]
Use '__' prefix only for static functions
Some functions are moved to the proper file.
[Version] 0.1.40
[Issue Type] Naming convention
Change-Id: I1bc0d028ede29369b256cb323b6c926a12a73252
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Hyunil [Thu, 21 May 2020 05:12:21 +0000 (14:12 +0900)]
Add package for webrtc
Change-Id: I7ab1b4a5a915e9d90e3b2f54a1d998eed16688ef
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Sangchul Lee [Wed, 13 May 2020 01:20:18 +0000 (10:20 +0900)]
Remove unnecessary @since_tizen command in private headers
[Version] 0.1.39
[Issue Type] Doxygen
Change-Id: I528b8ab30436d108398447fc1cff95a08df874d1
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Thu, 7 May 2020 06:10:53 +0000 (15:10 +0900)]
Revise and move functions
Move internal functions to the proper file.
Revise function signatures to clarify its meaning.
[Version] 0.1.38
[Issue Type] Refactory
Change-Id: I0b796c9ccdbcfd68e81ecd09475d4fd22217692c
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Tue, 28 Apr 2020 05:05:33 +0000 (14:05 +0900)]
Add ms_warning() log function
Use purple color for "<Enter>" as well as "<Leave>".
[Version] 0.1.37
[Issue Type] Log
Change-Id: I48f27d94792f5da15af5390d0d07038421419016
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 27 Apr 2020 06:33:25 +0000 (15:33 +0900)]
Remove __ms_check_ini_status() function
Since the ini file is located in read-only partition,
removal or modification of this file is meaningless.
Also, ini file size can not be a reasonable method
to check if this file is tainted or not.
Missing const qualifier is added.
Unnecessary null check for g_strdup() is removed.
[Version] 0.1.36
[Issue Type] Improvement
Change-Id: I935729f3ab5578feac628845b823e0fe8564eb56
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 27 Apr 2020 04:33:18 +0000 (13:33 +0900)]
Add static directive to internal functions in media_streamer_gst.c
Unused function prototype in media_streamer_gst.h is also removed.
: __ms_bin_find_element_by_klass()
[Version] 0.1.35
[Issue Type] Improvement
Change-Id: Ia32b4c59d2a82f56f72336ee4adaabd34feb0be9
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 27 Apr 2020 03:55:17 +0000 (12:55 +0900)]
Add static directive to __ms_get_ini_instance()
Declaration of this function prototype
in media_streamer_util.h is removed.
[Version] 0.1.34
[Issue Type] Improvement
Change-Id: Iccd1878192392bd9ae6b454927436f9bf701f19e
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Fri, 24 Apr 2020 00:55:06 +0000 (00:55 +0000)]
Merge "Return the proper data type required by the callback function" into tizen
Sangchul Lee [Thu, 23 Apr 2020 00:57:17 +0000 (09:57 +0900)]
Return the proper data type required by the callback function
[Version] 0.1.33
[Issue Type] Bug fix
Change-Id: Ic595f855ac859bf7fb4a652b0858a2ec3d6596bc
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Wed, 22 Apr 2020 07:42:18 +0000 (16:42 +0900)]
Revise the include guards of header files
[Version] 0.1.33
[Issue Type] Improvement
Change-Id: Id2c23b3614d29506f1d8773cd21c76079700e707
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Wed, 22 Apr 2020 05:35:21 +0000 (14:35 +0900)]
Fix typos and grammar errors
[Version] 0.1.32
[Issue Type] Typo
Change-Id: Ieb5fd1776c10b27939f700e359664367c45a1015
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Wed, 22 Apr 2020 01:55:18 +0000 (10:55 +0900)]
Revise internal function names to have consistency
Previously, there were __ms_create() and __ms_streamer_destroy().
Only __mm_streamer_seek() and __ms_streamer_destroy() use the prefix
of "_streamer_" in the media_streamer_priv.h[c] files.
[Version] 0.1.31
[Issue Type] Refactory
Change-Id: I16cf48b8fb2dae88007b14564dfda88f2fd9ed59
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Wed, 22 Apr 2020 01:39:31 +0000 (10:39 +0900)]
Fix typo - change 'transotions' to 'transitions'
[Version] 0.1.30
[Issue Type] Typo
Change-Id: I8e1f1ab3aea3b89ddb1c7cffbb53ebf4b5ca2437
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Wed, 22 Apr 2020 01:28:16 +0000 (10:28 +0900)]
Move internal functions to the proper place
Missing static directives are also added.
Change include syntax to use quotation mark
only for the headers of this library.
[Version] 0.1.29
[Issue Type] Refactory
Change-Id: If7d6c21fbe12c73431e67b1bdc17ad38fc34995f
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Tue, 21 Apr 2020 05:39:28 +0000 (14:39 +0900)]
Fix typo - change resouces to resources
[Version] 0.1.28
[Issue Type] Typo
Change-Id: Ic11512a96e66f823cfd2978f3dbead88acea7562
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Fri, 17 Apr 2020 03:59:04 +0000 (12:59 +0900)]
Comply with the Tizen coding rule
[Version] 0.1.27
[Issue Type] Coding convention
Change-Id: If78ffb56e0351fe7216ec2a4420d340243cd60cd
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Thu, 16 Apr 2020 07:49:40 +0000 (16:49 +0900)]
Remove useless parameter of the internal functions
The second parameter - media_streamer_node_type_e type -
of functions below is removed.
- __ms_video_encoder_element_create()
- __ms_video_decoder_element_create()
- __ms_audio_encoder_element_create()
- __ms_audio_decoder_element_create()
Change-Id: I483c8ef261c198424bdfff0b6afcea9651a385b3
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Thu, 16 Apr 2020 07:19:06 +0000 (16:19 +0900)]
Fix typo of the internal function name
Change __ms_node_check_priveleges() to
__ms_node_check_privileges().
Change-Id: I4550d6f92000e0df9ec30a0d7164c98660eb56d0
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Thu, 16 Apr 2020 06:51:57 +0000 (15:51 +0900)]
Remove useless condition in __ms_signal_destroy()
The first parameter of GST_IS_ELEMENT() macro is nullable
by looking inside of it. If null is set, it will return false.
Change-Id: I83bcdeccfd24623649de73ea159427dd3f93ba24
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Tue, 14 Apr 2020 02:05:47 +0000 (11:05 +0900)]
Revise description - function names are stated explicitly
Change-Id: I15834188e1b8b92aee0ff32e4eb37f689894777e
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 13 Apr 2020 06:04:30 +0000 (15:04 +0900)]
Revise descriptions
1. fix invalid state information of @post of media_streamer_pause().
- #MEDIA_STREAMER_STATE_READY -> #MEDIA_STREAMER_STATE_PAUSED
2. fix grammar errors.
- it have to be free -> it has to be freed
3. remove redundant 'function' word after mentioning func_xxx().
4. add punctuation mark when after finishing each @pre, @post
doxygen command.
Change-Id: Ic62f0a45ebae73b950e55a37e9b2ccb1fe651eda
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 13 Apr 2020 05:07:53 +0000 (14:07 +0900)]
Revise description - use uppercase for abbreviations
Change-Id: I4f5a48fd76329a27176e4543c4f14118673924d4
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 13 Apr 2020 05:01:28 +0000 (14:01 +0900)]
Revise description - change 'src' to 'source'
Change-Id: Iecd584434cf12248745d8c572e41c13879f2ba9e
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Sangchul Lee [Mon, 13 Apr 2020 01:18:23 +0000 (10:18 +0900)]
doc: Fix grammar errors
Change-Id: I6ab8dadbb56e8f798c8b97635886cd659b433fde
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Hyunil [Tue, 10 Mar 2020 10:52:00 +0000 (19:52 +0900)]
Add debug log to rank compare
Change-Id: I50d8e54c9ab2fe5f57082443022d206bd1940a46
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 20 Feb 2020 02:48:23 +0000 (11:48 +0900)]
Create node by default name when the type is converter
Change-Id: Ia14b74732b6aa5f4edd7b4369e407e400cf3fda6
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 18 Feb 2020 08:56:41 +0000 (17:56 +0900)]
Add audio-convert to negotiate with libav and pulsesink
Audio decoder output layout is changed from interleaved to non-interleaved
Change-Id: Ideefdf5d2e4d127611a8d9f67b2cd2730bd1a54e
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 11 Feb 2020 01:21:14 +0000 (10:21 +0900)]
Change iniparser api return type by iniparser version upgrade
Change-Id: If6c0ee230fc88c1e69f1cda1d543ae96e3728ad6
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 20 Dec 2019 07:44:10 +0000 (16:44 +0900)]
Change deprecated libsoup API
SOUP_SERVER_PORT and soup_server_run_async are deprecated
Change-Id: Ibda64e873fec8c5aeeb858a4b1ad1a94147dc60b
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 19 Dec 2019 01:25:33 +0000 (10:25 +0900)]
Remove line coverage exception code for media_streamer_set_play_position
Change-Id: I0638aa89ad41877aa964388cbcbc59b6ff97078a
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 18 Dec 2019 05:47:01 +0000 (14:47 +0900)]
Change URL of Native API Reference
Change-Id: Ibfd77b17042c390290448509cf01549854b820b4
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 2 Jul 2019 06:39:54 +0000 (15:39 +0900)]
Add exception code for measuring line coverage
Change-Id: Ia59bfbda48e4340cc1cee5f651e0de8e141c68be
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 13 Nov 2019 04:33:13 +0000 (13:33 +0900)]
Add MEDIA_FORMAT_ARGB to RAW format for rtp video encoding-name
Change-Id: Id31b44ebcc5690effe384c96b34892262dc5a2ed
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 28 Oct 2019 04:11:05 +0000 (13:11 +0900)]
Modify static link test case for mp4
Change-Id: I57740991bd3bfce88e133982787f73f1e520b80c
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 25 Oct 2019 07:04:22 +0000 (16:04 +0900)]
bug fix for using H/W codec
Change-Id: I6e351c1b35d5ad954d9d7d2be3ab7306e14a6056
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 24 Oct 2019 02:21:05 +0000 (11:21 +0900)]
Add static link test case for mp4
Change-Id: Ic7cbb30a8db7f16352670727637a1f0a0f2fa89c
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 23 Oct 2019 05:50:07 +0000 (14:50 +0900)]
Add use-tbm test case for playing with H/W codec
Change-Id: I068821378dc8fd554c1507ba476676024f61e4ab
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 4 Oct 2019 05:59:50 +0000 (14:59 +0900)]
[ACR-1469] Add definition for use-tbm
Change-Id: Ib9f108c2197e25af144c5c1f5863d777d29cd0c1
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 4 Oct 2019 03:53:16 +0000 (12:53 +0900)]
Support Zero copy(tbm) in auto plugging mode
Change-Id: I704a24082c148e3bd9c34086f0a680aa1cbb8cf0
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 30 Sep 2019 05:49:45 +0000 (14:49 +0900)]
Add test case for capsfilter
Change-Id: I296554d31487965cde6756adf45cab29a636796b
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 26 Sep 2019 08:06:45 +0000 (17:06 +0900)]
Add test case for videotestsrc and videosink
Change-Id: I131b0a0befdfbe166bf63f34db821af3eece191e
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 29 Aug 2019 04:54:48 +0000 (13:54 +0900)]
Add setting false to specify usage
Change-Id: I8f393a7f8d77db73d1b87b520e309466d58275a6
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 28 Aug 2019 05:44:43 +0000 (14:44 +0900)]
Remove SAM Violation GV(global variable)
Change-Id: Ia84e9e15e148c1fc96e076e0f9006747ddf26d69
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 27 Aug 2019 06:54:52 +0000 (15:54 +0900)]
Remove cyclomatic complexity of get/set param value function
Change-Id: I7b756ce2e17193e3f49dc007252cf1d791c05e38
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 26 Aug 2019 07:19:01 +0000 (16:19 +0900)]
node check is separated into src node check and sink node check
Change-Id: I57a4f48e6db9132f2aeffa1550b1882b71a0b6ce
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 26 Aug 2019 03:16:27 +0000 (12:16 +0900)]
Define SYSCONFDIR and remove unused ini path
Change-Id: I395fa674ecedd6f5a4b294eab2b642430cf96923
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 23 Aug 2019 07:05:04 +0000 (16:05 +0900)]
remove setting use-tbm because default value is false
Change-Id: I469c83b8cf4ae2b5b76e3e309c271f7f1111f598
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 30 Jul 2019 02:53:59 +0000 (11:53 +0900)]
Add gcov environment
Change-Id: I088bd23496518c01c4e82e23555119cba0834acd
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 23 Jul 2019 03:44:10 +0000 (12:44 +0900)]
Change input value type for parent_id
Change-Id: I2e3d6a3285d97a056c9495d935fc545e48848924
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 15 Jul 2019 05:49:07 +0000 (14:49 +0900)]
Add static link test for mp3 file playing
Change-Id: Id9ede22ad11c9233d47ed63663c7d73698005cd1
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 8 Jul 2019 06:34:24 +0000 (15:34 +0900)]
Add void to empty param function
Change-Id: I2fda06f2f813f5cb7e8443c5e9bf6e7303a6a704
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 5 Jul 2019 02:38:46 +0000 (11:38 +0900)]
Add static link test for aac file playing
Change-Id: I10691e3ff5e68edb24e7b224231927461d35197e
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 4 Jul 2019 05:14:11 +0000 (14:14 +0900)]
Specify the audio, video and container format in detail.
Change-Id: Ia40c7d9da016345c0ebe536615a8f5a23eb529b9
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 3 Jul 2019 06:39:17 +0000 (15:39 +0900)]
Rename enum string for sharing with audio file
Change-Id: Ic36bfcfaf3061014d905891d97dae55386274ca0
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 3 Jul 2019 06:24:48 +0000 (15:24 +0900)]
Add display_menu to Appsink/src test
Change-Id: Ib9b18b337ef5ba4d399d347ecc643ac071c90ca7
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 2 Jul 2019 05:19:51 +0000 (14:19 +0900)]
Add gcov package for measuring line coverage
Change-Id: I42758506055fe93fbaf771ae728636102ce4d882
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 28 Jun 2019 07:12:20 +0000 (16:12 +0900)]
Add static link test menu for local playing
Change-Id: If4be71dc76affa99dfa64af55e6fdf9a00f1e71c
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 21 Jun 2019 05:11:32 +0000 (14:11 +0900)]
Clarify autoplug test case
Change-Id: I28da784be128c561bf899513227a6f92c3f3aee1
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 10 Jun 2019 07:40:40 +0000 (16:40 +0900)]
fix Native API Reference error
Change-Id: I5bbf79ba38ff6eeca8da3a3fa1b5e26bea31f25c
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 3 Jun 2019 04:38:07 +0000 (13:38 +0900)]
Add setting caps to MEDIA_STREAMER_NODE_TYPE_FILTER for static use case
Change-Id: Ifcd755ba8681db6700d6f9679d5273b350b679ba
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 29 Mar 2019 04:23:31 +0000 (13:23 +0900)]
Remove channel and rate from creating caps to generate correct caps for RAW format
Change-Id: I3180f026c1e44626694b849ba1d63c04830cec33
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 26 Mar 2019 08:49:42 +0000 (17:49 +0900)]
fix that mpegaudioparse node is not create with parse node type and mp3 media_format
Change-Id: I401ba603608e753337ad203be67797ad4571e9d2
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 25 Mar 2019 07:04:38 +0000 (16:04 +0900)]
Avoid confusion about fakesink and fakesrc when using media_streamer_node_create
Change-Id: Ic2535382f487a5b97370d146b8e19cc6f10d9f5a
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 20 Dec 2018 07:50:38 +0000 (16:50 +0900)]
Avoid changing errnum of strerror_r by dlog
Change-Id: Iec86bc156b2dbb701d4ebcab38dc0e2727f579c7
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 28 Aug 2018 04:33:01 +0000 (13:33 +0900)]
Fix typo in document
Change-Id: I3563c75db78cff043665cf5989a853a82c0280a6
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 1 Aug 2018 05:37:47 +0000 (14:37 +0900)]
Apply correct memory release function
Change-Id: Ibce6ef8f1420a14fe9fae45fdb09ab0627607343
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Fri, 13 Jul 2018 08:58:16 +0000 (17:58 +0900)]
Modify capi-media-streamer.pc for setting includedir and libdir path
Change-Id: Ia3db39935a40b776d67958a3066772fdd9c73976
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 19 Jun 2018 07:56:29 +0000 (16:56 +0900)]
Change setting and getting camera_id for v4l2src and remove device property
Change-Id: I443fddb3a1ddb0032d925de78ed53b7522e3b274
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 23 Apr 2018 08:08:53 +0000 (17:08 +0900)]
replace ecore to ecore-wl2
Change-Id: Ibcedfd37cd0c01be7ae4b062ddcc438943525512
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 6 Feb 2018 08:00:40 +0000 (17:00 +0900)]
Apply ecore-wl2 instead of ecore-wayland
Change-Id: I1f3545e93acf6e9001d8b1764eaa9a0029f00212
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 6 Mar 2018 07:33:52 +0000 (16:33 +0900)]
Verify input argument of function
Change-Id: Idac372a58d6c69c5cb436ca5eda30eee17a2ae7b
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 26 Feb 2018 04:36:41 +0000 (13:36 +0900)]
Add checking null point and log
Change-Id: Ida65ee996b54407a82f5fe20bc11a9629de15205
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 21 Feb 2018 08:09:08 +0000 (17:09 +0900)]
Relocate variable declaration and add log
Change-Id: I00d764e29243a263998665ebdf04cd49abc60b8a
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 21 Feb 2018 01:23:48 +0000 (10:23 +0900)]
Separate gstreamer initializaton into function
Change-Id: I6165b4fa9b322a066f34300c7bbe59ac3efaec4c
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 19 Feb 2018 08:28:07 +0000 (17:28 +0900)]
Release argv used for gst_init_check()
Change-Id: Ifa9e3493bd230c186234e178215a8ee3acb55180
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Wed, 14 Feb 2018 07:29:04 +0000 (16:29 +0900)]
Change the location of variable declarations and add dlog for call stack
Change-Id: I38a61bbbbf2e6483a17ed811c320c1337511bbc9
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Mon, 12 Feb 2018 02:13:03 +0000 (11:13 +0900)]
Check return value of __ms_adaptive_sink_http_server_prepare()
Change-Id: Id260a37fbedabd6c5bcc1669e566b16e827487d9
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 8 Feb 2018 02:10:17 +0000 (11:10 +0900)]
Remove setting render rectangle
Videosink set full screen without setting the window size of the application
Change-Id: Ib9462a01425b630cab19a3b1ce1e6cbcc4294b6b
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Thu, 1 Feb 2018 04:34:58 +0000 (13:34 +0900)]
Change the name of the toplogy_bin to transform_bin
Topology is a term of MediaSession,
the components of MediaSession include Source Node,Transform Node, Output Node and Tee Node.
I want to change the name of the TopologyBin to TransformBin
because Toppology is the same as GstBin or GstPipeline of Gstreamer,
then leves are correct and we don't need to use the term of MediaSession.
Change-Id: I174322f3d4041e3aa4ea5faea4168a4de2762c20
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Hyunil [Tue, 30 Jan 2018 07:41:37 +0000 (16:41 +0900)]
Fix doxygen error, note and question in Native API header file
Change-Id: Ifbb38ed9830e7c824e75154a5ad58ebde1827586
Signed-off-by: Hyunil <hyunil46.park@samsung.com>
Volodymyr Brynza [Tue, 21 Nov 2017 11:41:50 +0000 (13:41 +0200)]
Change obsolete ximagesrc to videotestsrc
Change-Id: I6ee40a52e506c702315aa113eca4d7691d5bf40b
Signed-off-by: Volodymyr Brynza <v.brynza@samsung.com>