2011-10-06 06:44:54 +00:00
|
|
|
/*
|
2017-02-22 01:26:59 -08:00
|
|
|
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
2011-10-06 06:44:54 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2011-12-08 07:42:18 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "test/testsupport/frame_reader.h"
|
2011-10-06 06:44:54 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "api/video/i420_buffer.h"
|
|
|
|
|
#include "test/frame_utils.h"
|
|
|
|
|
#include "test/testsupport/fileutils.h"
|
2011-12-08 07:42:18 +00:00
|
|
|
|
2011-10-06 06:44:54 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
2017-02-22 01:26:59 -08:00
|
|
|
YuvFrameReaderImpl::YuvFrameReaderImpl(std::string input_filename,
|
|
|
|
|
int width,
|
|
|
|
|
int height)
|
2011-10-06 06:44:54 +00:00
|
|
|
: input_filename_(input_filename),
|
2017-02-22 01:26:59 -08:00
|
|
|
frame_length_in_bytes_(0),
|
|
|
|
|
width_(width),
|
|
|
|
|
height_(height),
|
|
|
|
|
number_of_frames_(-1),
|
|
|
|
|
input_file_(nullptr) {}
|
2011-10-06 06:44:54 +00:00
|
|
|
|
2017-02-22 01:26:59 -08:00
|
|
|
YuvFrameReaderImpl::~YuvFrameReaderImpl() {
|
2011-10-06 06:44:54 +00:00
|
|
|
Close();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-22 01:26:59 -08:00
|
|
|
bool YuvFrameReaderImpl::Init() {
|
2016-09-30 04:14:07 -07:00
|
|
|
if (width_ <= 0 || height_ <= 0) {
|
2017-02-22 01:26:59 -08:00
|
|
|
fprintf(stderr, "Frame width and height must be >0, was %d x %d\n", width_,
|
|
|
|
|
height_);
|
2011-10-06 06:44:54 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
2016-09-30 04:14:07 -07:00
|
|
|
frame_length_in_bytes_ =
|
|
|
|
|
width_ * height_ + 2 * ((width_ + 1) / 2) * ((height_ + 1) / 2);
|
|
|
|
|
|
2011-10-06 06:44:54 +00:00
|
|
|
input_file_ = fopen(input_filename_.c_str(), "rb");
|
2017-02-22 01:26:59 -08:00
|
|
|
if (input_file_ == nullptr) {
|
2011-10-06 06:44:54 +00:00
|
|
|
fprintf(stderr, "Couldn't open input file for reading: %s\n",
|
|
|
|
|
input_filename_.c_str());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-12-08 07:42:18 +00:00
|
|
|
// Calculate total number of frames.
|
|
|
|
|
size_t source_file_size = GetFileSize(input_filename_);
|
2011-10-06 06:44:54 +00:00
|
|
|
if (source_file_size <= 0u) {
|
|
|
|
|
fprintf(stderr, "Found empty file: %s\n", input_filename_.c_str());
|
2011-12-08 07:42:18 +00:00
|
|
|
return false;
|
2011-10-06 06:44:54 +00:00
|
|
|
}
|
2017-02-22 01:26:59 -08:00
|
|
|
number_of_frames_ =
|
|
|
|
|
static_cast<int>(source_file_size / frame_length_in_bytes_);
|
2011-10-06 06:44:54 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-22 01:26:59 -08:00
|
|
|
rtc::scoped_refptr<I420Buffer> YuvFrameReaderImpl::ReadFrame() {
|
|
|
|
|
if (input_file_ == nullptr) {
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"YuvFrameReaderImpl is not initialized (input file is NULL)\n");
|
2016-09-30 04:14:07 -07:00
|
|
|
return nullptr;
|
2011-10-06 06:44:54 +00:00
|
|
|
}
|
2016-09-30 04:14:07 -07:00
|
|
|
rtc::scoped_refptr<I420Buffer> buffer(
|
|
|
|
|
ReadI420Buffer(width_, height_, input_file_));
|
|
|
|
|
if (!buffer && ferror(input_file_)) {
|
2011-11-17 14:26:21 +00:00
|
|
|
fprintf(stderr, "Error reading from input file: %s\n",
|
|
|
|
|
input_filename_.c_str());
|
|
|
|
|
}
|
2016-09-30 04:14:07 -07:00
|
|
|
return buffer;
|
2011-10-06 06:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
2017-02-22 01:26:59 -08:00
|
|
|
void YuvFrameReaderImpl::Close() {
|
|
|
|
|
if (input_file_ != nullptr) {
|
|
|
|
|
fclose(input_file_);
|
|
|
|
|
input_file_ = nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t YuvFrameReaderImpl::FrameLength() {
|
|
|
|
|
return frame_length_in_bytes_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int YuvFrameReaderImpl::NumberOfFrames() {
|
|
|
|
|
return number_of_frames_;
|
|
|
|
|
}
|
2013-07-30 13:08:38 +00:00
|
|
|
|
2011-10-06 06:44:54 +00:00
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|