
To avoid breaking downstream, the "interface" directories were copied into a new "common_video/include" dir. The old headers got pragma warnings added about deprecation (a very short deprecation since I plan to remove them as soon downstream is updated). The header guards are also identical to avoid mixing them up in the transition. BUG=webrtc:5095 TESTED=Passing compile-trybots with --clobber flag: git cl try --clobber --bot=win_compile_rel --bot=linux_compile_rel --bot=android_compile_rel --bot=mac_compile_rel --bot=ios_rel --bot=linux_gn_rel --bot=win_x64_gn_rel --bot=mac_x64_gn_rel --bot=android_gn_rel -m tryserver.webrtc Review URL: https://codereview.webrtc.org/1418913006 Cr-Commit-Position: refs/heads/master@{#10659}
71 lines
1.6 KiB
C++
71 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_MODULES_VIDEO_RENDER_VIDEO_RENDER_DEFINES_H_
|
|
#define WEBRTC_MODULES_VIDEO_RENDER_VIDEO_RENDER_DEFINES_H_
|
|
|
|
#include "webrtc/common_types.h"
|
|
#include "webrtc/common_video/include/incoming_video_stream.h"
|
|
#include "webrtc/modules/include/module_common_types.h"
|
|
|
|
namespace webrtc
|
|
{
|
|
// Defines
|
|
#ifndef NULL
|
|
#define NULL 0
|
|
#endif
|
|
|
|
// Enums
|
|
enum VideoRenderType
|
|
{
|
|
kRenderExternal = 0, // External
|
|
kRenderWindows = 1, // Windows
|
|
kRenderCocoa = 2, // Mac
|
|
kRenderCarbon = 3,
|
|
kRenderiOS = 4, // iPhone
|
|
kRenderAndroid = 5, // Android
|
|
kRenderX11 = 6, // Linux
|
|
kRenderDefault
|
|
};
|
|
|
|
// Runtime errors
|
|
enum VideoRenderError
|
|
{
|
|
kRenderShutDown = 0,
|
|
kRenderPerformanceAlarm = 1
|
|
};
|
|
|
|
// Feedback class to be implemented by module user
|
|
class VideoRenderFeedback
|
|
{
|
|
public:
|
|
virtual void OnRenderError(const int32_t streamId,
|
|
const VideoRenderError error) = 0;
|
|
|
|
protected:
|
|
virtual ~VideoRenderFeedback()
|
|
{
|
|
}
|
|
};
|
|
|
|
// Mobile enums
|
|
enum StretchMode
|
|
{
|
|
kStretchToInsideEdge = 1,
|
|
kStretchToOutsideEdge = 2,
|
|
kStretchMatchWidth = 3,
|
|
kStretchMatchHeight = 4,
|
|
kStretchNone = 5
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_MODULES_VIDEO_RENDER_VIDEO_RENDER_DEFINES_H_
|