~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/WebKit/WebProcess/GPU/media/VideoTrackPrivateRemote.h

  • Committer: mmach
  • Date: 2023-06-16 17:21:37 UTC
  • Revision ID: netbit73@gmail.com-20230616172137-2rqx6yr96ga9g3kp
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Copyright (C) 2020 Apple Inc. All rights reserved.
 
3
*
 
4
* Redistribution and use in source and binary forms, with or without
 
5
* modification, are permitted provided that the following conditions
 
6
* are met:
 
7
*
 
8
* 1. Redistributions of source code must retain the above copyright
 
9
*    notice, this list of conditions and the following disclaimer.
 
10
* 2. Redistributions in binary form must reproduce the above copyright
 
11
*    notice, this list of conditions and the following disclaimer in the
 
12
*    documentation and/or other materials provided with the distribution.
 
13
*
 
14
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
 
15
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
16
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
17
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
 
18
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
19
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
20
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
21
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
22
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
23
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
24
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
25
*/
 
26
 
 
27
#pragma once
 
28
 
 
29
#if ENABLE(GPU_PROCESS)
 
30
 
 
31
#include "TrackPrivateRemoteConfiguration.h"
 
32
#include "TrackPrivateRemoteIdentifier.h"
 
33
#include <WebCore/VideoTrackPrivate.h>
 
34
 
 
35
namespace WebKit {
 
36
 
 
37
class MediaPlayerPrivateRemote;
 
38
struct TrackPrivateRemoteConfiguration;
 
39
 
 
40
class VideoTrackPrivateRemote : public WebCore::VideoTrackPrivate {
 
41
    WTF_MAKE_NONCOPYABLE(VideoTrackPrivateRemote)
 
42
public:
 
43
    static Ref<VideoTrackPrivateRemote> create(MediaPlayerPrivateRemote& player, TrackPrivateRemoteIdentifier idendifier, TrackPrivateRemoteConfiguration&& configuration)
 
44
    {
 
45
        return adoptRef(*new VideoTrackPrivateRemote(player, idendifier, WTFMove(configuration)));
 
46
    }
 
47
 
 
48
    void updateConfiguration(TrackPrivateRemoteConfiguration&&);
 
49
 
 
50
    using VideoTrackKind = WebCore::VideoTrackPrivate::Kind;
 
51
    VideoTrackKind kind() const final { return m_kind; }
 
52
    AtomString id() const final { return m_id; }
 
53
    AtomString label() const final { return m_label; }
 
54
    AtomString language() const final { return m_language; }
 
55
    int trackIndex() const final { return m_trackIndex; }
 
56
 
 
57
protected:
 
58
    VideoTrackPrivateRemote(MediaPlayerPrivateRemote&, TrackPrivateRemoteIdentifier, TrackPrivateRemoteConfiguration&&);
 
59
 
 
60
    void setSelected(bool) final;
 
61
 
 
62
    MediaPlayerPrivateRemote& m_player;
 
63
    VideoTrackKind m_kind { None };
 
64
    AtomString m_id;
 
65
    AtomString m_label;
 
66
    AtomString m_language;
 
67
    int m_trackIndex { -1 };
 
68
    MediaTime m_startTimeVariance { MediaTime::zeroTime() };
 
69
    TrackPrivateRemoteIdentifier m_idendifier;
 
70
};
 
71
 
 
72
} // namespace WebKit
 
73
 
 
74
#endif