summaryrefslogtreecommitdiff
path: root/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/video/VideoManager.h
blob: 91c2747b0da2ab0049bf7b513c98baf1116b07c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
 * Copyright (C) 2022 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef VIDEO_MANAGER_INCLUDED
#define VIDEO_MANAGER_INCLUDED

#include <ImsMediaDefine.h>
#include <ImsMediaEventHandler.h>
#include <BaseManager.h>
#include <VideoSession.h>
#include <VideoConfig.h>
#include <MediaQualityThreshold.h>
#include <android/native_window.h>
#include <unordered_map>

using namespace std;
using namespace android::telephony::imsmedia;

class VideoManager : public BaseManager
{
public:
    /**
     * @brief the request handler to handle request message in an individual thread
     */
    class RequestHandler : public ImsMediaEventHandler
    {
    protected:
        virtual void processEvent(
                uint32_t event, uint64_t sessionId, uint64_t paramA, uint64_t paramB);
    };

    /**
     * @brief the response handler to handle request message in an individual thread
     */
    class ResponseHandler : public ImsMediaEventHandler
    {
    protected:
        virtual void processEvent(
                uint32_t event, uint64_t sessionId, uint64_t paramA, uint64_t paramB);
    };

    static VideoManager* getInstance();
    virtual int getState(int sessionId);
    virtual void sendMessage(const int sessionId, const android::Parcel& parcel);

    /**
     * @brief Set the Preview Surface to use to display camera preview and pause image
     *
     * @param sessionId unique identifier of the session
     * @param surface the ANativeWindow object to set
     */
    void setPreviewSurface(const int sessionId, ANativeWindow* surface);

    /**
     * @brief Set the Display Surface to use to display decoded receiving video frames
     *
     * @param sessionId unique identifier of the session
     * @param surface the ANativeWindow object to set
     */
    void setDisplaySurface(const int sessionId, ANativeWindow* surface);

    /**
     * @brief Send interval event to be handled in the StreamGraph
     *
     * @param event The event type
     * @param sessionId The session id
     */
    void SendInternalEvent(
            uint32_t event, uint64_t sessionId, uint64_t paramA = 0, uint64_t paramB = 0);

private:
    VideoManager();
    virtual ~VideoManager();
    ImsMediaResult openSession(
            const int sessionId, const int rtpFd, const int rtcpFd, VideoConfig* config);
    ImsMediaResult closeSession(const int sessionId);
    ImsMediaResult setPreviewSurfaceToSession(const int sessionId, ANativeWindow* surface);
    ImsMediaResult setDisplaySurfaceToSession(const int sessionId, ANativeWindow* surface);
    ImsMediaResult modifySession(const int sessionId, VideoConfig* config);
    void setMediaQualityThreshold(const int sessionId, MediaQualityThreshold* threshold);

    static VideoManager* manager;
    std::unordered_map<int, std::unique_ptr<VideoSession>> mSessions;
    RequestHandler mRequestHandler;
    ResponseHandler mResponseHandler;
};

#endif