1 
2 /*
3  * Copyright (C) 2024-2024 Huawei Device Co., Ltd.
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 #ifndef FRAMEWORKS_SERVICES_MEDIA_MULTI_STAGES_CAPTURE_INCLUDE_STORY_PLAY_INFO_COLUMN_H
18 #define FRAMEWORKS_SERVICES_MEDIA_MULTI_STAGES_CAPTURE_INCLUDE_STORY_PLAY_INFO_COLUMN_H
19 
20 #include <string>
21 
22 namespace OHOS {
23 namespace Media {
24 // highlight play info table name
25 const std::string HIGHLIGHT_PLAY_INFO_TABLE = "tab_highlight_play_info";
26 
27 // create highlight play info table
28 const std::string MUSIC = "music";
29 const std::string FILTER = "filter";
30 const std::string HIGHLIGHT_PLAY_INFO = "play_info";
31 const std::string PLAY_INFO_VERSION = "play_info_version";
32 const std::string IS_CHOSEN = "is_chosen";
33 const std::string PLAY_INFO_ID = "play_info_id";
34 const std::string HIGHLIGHTING_ALGO_VERSION = "highlighting_algo_version";
35 const std::string CAMERA_MOVEMENT_ALGO_VERSION = "camera_movement_algo_version";
36 const std::string TRANSITION_ALGO_VERSION = "transition_algo_version";
37 const std::string PLAY_SERVICE_VERSION = "play_service_version";
38 
39 const std::string URI_HIGHLIGHT_PLAY_INFO = MEDIALIBRARY_DATA_URI + "/" + HIGHLIGHT_PLAY_INFO_TABLE;
40 } // namespace Media
41 } // namespace OHOS
42 #endif // FRAMEWORKS_SERVICES_MEDIA_MULTI_STAGES_CAPTURE_INCLUDE_STORY_COVER_INFO_COLUMN_H