#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_WEBRTC_WEBRTC_VIDEO_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_WEBRTC_WEBRTC_VIDEO_UTILS_H_
#include "media/base/video_codecs.h"
#include "media/base/video_color_space.h"
#include "media/base/video_transformation.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/webrtc/api/video/color_space.h"
#include "third_party/webrtc/api/video/video_codec_type.h"
#include "third_party/webrtc/api/video/video_rotation.h"
#include "third_party/webrtc/api/video_codecs/sdp_video_format.h"
namespace blink {
media::VideoRotation PLATFORM_EXPORT
WebRtcToMediaVideoRotation(webrtc::VideoRotation rotation);
media::VideoCodec PLATFORM_EXPORT
WebRtcToMediaVideoCodec(webrtc::VideoCodecType codec);
media::VideoCodecProfile PLATFORM_EXPORT
WebRtcVideoFormatToMediaVideoCodecProfile(const webrtc::SdpVideoFormat& format);
gfx::ColorSpace PLATFORM_EXPORT
WebRtcToGfxColorSpace(const webrtc::ColorSpace& color_space);
webrtc::ColorSpace PLATFORM_EXPORT
GfxToWebRtcColorSpace(const gfx::ColorSpace& color_space);
}
#endif