Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Side by Side Diff: extensions/renderer/api/display_source/wifi_display/wifi_display_media_manager.h

Issue 1783843002: [chrome.displaySource][WiFi Display] Video formats capability negotiation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@export_video_format
Patch Set: rebased Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA_MA NAGER_H_ 5 #ifndef EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA_MA NAGER_H_
6 #define EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA_MA NAGER_H_ 6 #define EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA_MA NAGER_H_
7 7
8 #include "base/callback.h"
8 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "third_party/WebKit/public/web/WebDOMMediaStreamTrack.h"
9 #include "third_party/wds/src/libwds/public/media_manager.h" 11 #include "third_party/wds/src/libwds/public/media_manager.h"
10 12
11 namespace extensions { 13 namespace extensions {
12 14
13 class WiFiDisplayMediaManager : public wds::SourceMediaManager { 15 class WiFiDisplayMediaManager : public wds::SourceMediaManager {
14 public: 16 public:
15 WiFiDisplayMediaManager(); 17 using ErrorCallback = base::Callback<void(const std::string&)>;
18
19 WiFiDisplayMediaManager(
20 const blink::WebMediaStreamTrack& video_track,
21 const blink::WebMediaStreamTrack& audio_track,
22 const ErrorCallback& error_callback);
23
16 ~WiFiDisplayMediaManager() override; 24 ~WiFiDisplayMediaManager() override;
17 25
18 private: 26 private:
19 // wds::SourceMediaManager overrides. 27 // wds::SourceMediaManager overrides.
20 void Play() override; 28 void Play() override;
21 29
22 void Pause() override; 30 void Pause() override;
23 void Teardown() override; 31 void Teardown() override;
24 bool IsPaused() const override; 32 bool IsPaused() const override;
25 wds::SessionType GetSessionType() const override; 33 wds::SessionType GetSessionType() const override;
26 void SetSinkRtpPorts(int port1, int port2) override; 34 void SetSinkRtpPorts(int port1, int port2) override;
27 std::pair<int,int> GetSinkRtpPorts() const override; 35 std::pair<int,int> GetSinkRtpPorts() const override;
28 int GetLocalRtpPort() const override; 36 int GetLocalRtpPort() const override;
29 37
30 bool InitOptimalVideoFormat( 38 bool InitOptimalVideoFormat(
31 const wds::NativeVideoFormat& sink_native_format, 39 const wds::NativeVideoFormat& sink_native_format,
32 const std::vector<wds::H264VideoCodec>& sink_supported_codecs) override; 40 const std::vector<wds::H264VideoCodec>& sink_supported_codecs) override;
33 wds::H264VideoFormat GetOptimalVideoFormat() const override; 41 wds::H264VideoFormat GetOptimalVideoFormat() const override;
34 bool InitOptimalAudioFormat( 42 bool InitOptimalAudioFormat(
35 const std::vector<wds::AudioCodec>& sink_supported_codecs) override; 43 const std::vector<wds::AudioCodec>& sink_supported_codecs) override;
36 wds::AudioCodec GetOptimalAudioFormat() const override; 44 wds::AudioCodec GetOptimalAudioFormat() const override;
37 45
38 void SendIDRPicture() override; 46 void SendIDRPicture() override;
39 47
40 std::string GetSessionId() const override; 48 std::string GetSessionId() const override;
41 49
50 private:
51 blink::WebMediaStreamTrack video_track_;
52 blink::WebMediaStreamTrack audio_track_;
53
54 std::pair<int,int> sink_rtp_ports_;
55 wds::H264VideoFormat optimal_video_format_;
56
57 ErrorCallback error_callback_;
58
42 DISALLOW_COPY_AND_ASSIGN(WiFiDisplayMediaManager); 59 DISALLOW_COPY_AND_ASSIGN(WiFiDisplayMediaManager);
43 }; 60 };
44 61
45 } // namespace extensions 62 } // namespace extensions
46 63
47 #endif // EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA _MANAGER_H_ 64 #endif // EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA _MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698