[0.6.283] Fix the problem that not play until the end in gapless mode
[platform/core/multimedia/libmm-player.git] / unittest / gtest_mm_player.cpp
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "mm_player.h"
18 #include "mm_error.h"
19 #include "gtest_mm_player.h"
20
21 MMPlayer::MMPlayer()
22 {
23         mm_handle = NULL;
24 }
25
26 MMPlayer::~MMPlayer()
27 {
28         if (mm_handle) {
29                 LOGD("[Cleanup] %p", mm_handle);
30                 mm_player_destroy(mm_handle);
31                 mm_handle = NULL;
32         }
33 }
34
35 int MMPlayer::Create(void)
36 {
37         int ret = mm_player_create(&mm_handle);
38         LOGD("[Create] %p", mm_handle);
39         return ret;
40 }
41
42 int MMPlayer::Destroy(void)
43 {
44         int ret = MM_ERROR_NONE;
45
46         LOGD("[Destroy] %p", mm_handle);
47
48         ret = mm_player_destroy(mm_handle);
49         mm_handle = NULL;
50
51         return ret;
52 }