2012-09-18 16:14:26 +00:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "common_video/include/video_frame.h"
|
2012-09-18 16:14:26 +00:00
|
|
|
|
2014-05-28 07:00:51 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
2012-09-18 16:14:26 +00:00
|
|
|
#include <algorithm> // swap
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/bind.h"
|
|
|
|
|
#include "rtc_base/checks.h"
|
Revert 8599 "Revert 8580 "Unify underlying frame buffer in I420VideoFrame and...""
It's possible to build Chrome on Windows with this patch now.
BUG=1128
> This is unfortunately causing build problems in Chrome on Windows.
>> Unify underlying frame buffer in I420VideoFrame and WebRtcVideoFrame
>>
>> Currently, I420VideoFrame uses three webrtc::Plane to store pixel data, and WebRtcVideoFrame uses WebRtcVideoFrame::FrameBuffer/webrtc::VideoFrame. The two subclasses WebRtcTextureVideoFrame and TextureVideoFrame use a NativeHandle to store pixel data, and there is also a class WebRtcVideoRenderFrame that wraps an I420VideoFrame.
>>
>> This CL replaces these classes with a new interface VideoFrameBuffer that provides the common functionality. This makes it possible to remove deep frame copies between cricket::VideoFrame and I420VideoFrame.
>>
>> Some additional minor changes are:
>> * Disallow creation of 0x0 texture frames.
>> * Remove the half-implemented ref count functions in I420VideoFrame.
>> * Remove the Alias functionality in WebRtcVideoFrame
>>
>> The final goal is to eliminate all frame copies, but to limit the scope of this CL, some planned changes are postponed to follow-up CL:s (see planned changes in https://webrtc-codereview.appspot.com/38879004, or https://docs.google.com/document/d/1bxoJZNmlo-Z9GnQwIaWpEG6hDlL_W-bzka8Zb_K2NbA/preview). Specifically, this CL:
>> * Keeps empty subclasses WebRtcTextureVideoFrame and TextureVideoFrame, and just delegates the construction to the superclass.
>> * Keeps the deep copies from cricket::VideoFrame to I420VideoFrame.
>>
>> BUG=1128
>> R=mflodman@webrtc.org, pbos@webrtc.org, perkj@webrtc.org, tommi@webrtc.org
>>
>> Review URL: https://webrtc-codereview.appspot.com/42469004
R=pbos@webrtc.org
TBR=mflodman, pbos, perkj, tommi
Review URL: https://webrtc-codereview.appspot.com/45489004
Cr-Commit-Position: refs/heads/master@{#8616}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8616 4adac7df-926f-26a2-2b94-8c16560cd09d
2015-03-05 14:03:08 +00:00
|
|
|
|
2012-09-18 16:14:26 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
2016-01-27 01:36:03 -08:00
|
|
|
// FFmpeg's decoder, used by H264DecoderImpl, requires up to 8 bytes padding due
|
|
|
|
|
// to optimized bitstream readers. See avcodec_decode_video2.
|
|
|
|
|
const size_t EncodedImage::kBufferPaddingBytesH264 = 8;
|
2016-01-21 05:43:11 -08:00
|
|
|
|
|
|
|
|
size_t EncodedImage::GetBufferPaddingBytes(VideoCodecType codec_type) {
|
|
|
|
|
switch (codec_type) {
|
|
|
|
|
case kVideoCodecVP8:
|
|
|
|
|
case kVideoCodecVP9:
|
|
|
|
|
return 0;
|
|
|
|
|
case kVideoCodecH264:
|
|
|
|
|
return kBufferPaddingBytesH264;
|
|
|
|
|
case kVideoCodecI420:
|
|
|
|
|
case kVideoCodecRED:
|
|
|
|
|
case kVideoCodecULPFEC:
|
2016-11-07 03:03:41 -08:00
|
|
|
case kVideoCodecFlexfec:
|
2016-01-21 05:43:11 -08:00
|
|
|
case kVideoCodecGeneric:
|
|
|
|
|
case kVideoCodecUnknown:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
RTC_NOTREACHED();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-10 02:43:14 -07:00
|
|
|
EncodedImage::EncodedImage() : EncodedImage(nullptr, 0, 0) {}
|
|
|
|
|
|
|
|
|
|
EncodedImage::EncodedImage(uint8_t* buffer, size_t length, size_t size)
|
|
|
|
|
: _buffer(buffer), _length(length), _size(size) {}
|
|
|
|
|
|
|
|
|
|
void EncodedImage::SetEncodeTime(int64_t encode_start_ms,
|
2017-11-16 14:33:53 +01:00
|
|
|
int64_t encode_finish_ms) {
|
|
|
|
|
timing_.encode_start_ms = encode_start_ms;
|
|
|
|
|
timing_.encode_finish_ms = encode_finish_ms;
|
2017-08-10 02:43:14 -07:00
|
|
|
}
|
2012-09-18 16:14:26 +00:00
|
|
|
} // namespace webrtc
|