Changed Player Internal enum
authorJoogab Yun <joogab.yun@samsung.com>
Tue, 17 Sep 2019 01:38:44 +0000 (10:38 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Wed, 13 Nov 2019 01:35:14 +0000 (10:35 +0900)
commit48d72e9ea78ef12d95d4fe4f39dadc30114808a2
tree087ec62aa389971984f9af8d7624d6455b25491f
parentfdbaee132f3ece225e7336744a3e805d4766dfe1
Changed Player Internal enum

: The Player's enum value changes.
  So modify it to match the changed enum value.

FROM :
typedef enum {
     PLAYER_VIDEO_CODEC_TYPE_EX_DEFAULT,    /**< This is an optional flag for using codec which has higher priority */
     PLAYER_VIDEO_CODEC_TYPE_EX_HW,           /**< This is an optional flag for using the h/w codec */
     PLAYER_VIDEO_CODEC_TYPE_EX_SW,           /**< This is an optional flag for using the s/w codec */
 } player_video_codec_type_ex_e;

TO :
typedef enum {
     PLAYER_VIDEO_CODEC_TYPE_EX_HW,           /**< This is an optional flag for using the h/w codec */
     PLAYER_VIDEO_CODEC_TYPE_EX_SW,           /**< This is an optional flag for using the s/w codec */

     PLAYER_VIDEO_CODEC_TYPE_EX_DEFAULT,    /**< This is an optional flag for using codec which has higher priority */
 } player_video_codec_type_ex_e;

And an error code has been added.
 - PLAYER_ERROR_NOT_SUPPORTED_VIDEO_CODEC Not supported video codec type

Change-Id: Icac989cce5d6719fdf50472821beb0ef2b9e19f4
dali-extension/video-player/ecore-wl/tizen-video-player-ecore-wl.cpp
dali-extension/video-player/ecore-wl/tizen-video-player.h
dali-extension/video-player/ecore-wl2/tizen-video-player-ecore-wl2.cpp
dali-extension/video-player/ecore-wl2/tizen-video-player.h