2013-06-13 21:42:05 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 The WebM 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 TEST_WEBM_VIDEO_SOURCE_H_
|
|
|
|
#define TEST_WEBM_VIDEO_SOURCE_H_
|
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <new>
|
|
|
|
#include <string>
|
2014-04-14 23:19:50 +02:00
|
|
|
#include "../tools_common.h"
|
|
|
|
#include "../webmdec.h"
|
2013-06-13 21:42:05 +02:00
|
|
|
#include "test/video_source.h"
|
|
|
|
|
|
|
|
namespace libvpx_test {
|
|
|
|
|
|
|
|
// This class extends VideoSource to allow parsing of WebM files,
|
|
|
|
// so that we can do actual file decodes.
|
|
|
|
class WebMVideoSource : public CompressedVideoSource {
|
|
|
|
public:
|
|
|
|
explicit WebMVideoSource(const std::string &file_name)
|
2016-07-26 07:50:48 +02:00
|
|
|
: file_name_(file_name), vpx_ctx_(new VpxInputContext()),
|
|
|
|
webm_ctx_(new WebmInputContext()), buf_(NULL), buf_sz_(0), frame_(0),
|
|
|
|
end_of_file_(false) {}
|
2013-06-13 21:42:05 +02:00
|
|
|
|
|
|
|
virtual ~WebMVideoSource() {
|
2016-07-26 07:50:48 +02:00
|
|
|
if (vpx_ctx_->file != NULL) fclose(vpx_ctx_->file);
|
2014-04-19 18:29:26 +02:00
|
|
|
webm_free(webm_ctx_);
|
2014-04-14 23:19:50 +02:00
|
|
|
delete vpx_ctx_;
|
|
|
|
delete webm_ctx_;
|
2013-06-13 21:42:05 +02:00
|
|
|
}
|
|
|
|
|
2016-07-26 07:50:48 +02:00
|
|
|
virtual void Init() {}
|
2013-06-13 21:42:05 +02:00
|
|
|
|
|
|
|
virtual void Begin() {
|
2014-04-14 23:19:50 +02:00
|
|
|
vpx_ctx_->file = OpenTestDataFile(file_name_);
|
2017-08-28 03:26:24 +02:00
|
|
|
ASSERT_TRUE(vpx_ctx_->file != NULL)
|
|
|
|
<< "Input file open failed. Filename: " << file_name_;
|
2013-06-13 21:42:05 +02:00
|
|
|
|
2014-04-14 23:19:50 +02:00
|
|
|
ASSERT_EQ(file_is_webm(webm_ctx_, vpx_ctx_), 1) << "file is not WebM";
|
2013-06-13 21:42:05 +02:00
|
|
|
|
|
|
|
FillFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Next() {
|
|
|
|
++frame_;
|
|
|
|
FillFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FillFrame() {
|
2014-04-14 23:19:50 +02:00
|
|
|
ASSERT_TRUE(vpx_ctx_->file != NULL);
|
2016-04-25 22:46:42 +02:00
|
|
|
const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_);
|
2014-04-14 23:19:50 +02:00
|
|
|
ASSERT_GE(status, 0) << "webm_read_frame failed";
|
|
|
|
if (status == 1) {
|
|
|
|
end_of_file_ = true;
|
2013-06-13 21:42:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
void SeekToNextKeyFrame() {
|
|
|
|
ASSERT_TRUE(vpx_ctx_->file != NULL);
|
|
|
|
do {
|
2016-04-25 22:46:42 +02:00
|
|
|
const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_);
|
2015-01-27 21:26:28 +01:00
|
|
|
ASSERT_GE(status, 0) << "webm_read_frame failed";
|
|
|
|
++frame_;
|
|
|
|
if (status == 1) {
|
|
|
|
end_of_file_ = true;
|
|
|
|
}
|
|
|
|
} while (!webm_ctx_->is_key_frame && !end_of_file_);
|
|
|
|
}
|
|
|
|
|
2016-07-26 07:50:48 +02:00
|
|
|
virtual const uint8_t *cxdata() const { return end_of_file_ ? NULL : buf_; }
|
2014-02-19 23:17:55 +01:00
|
|
|
virtual size_t frame_size() const { return buf_sz_; }
|
|
|
|
virtual unsigned int frame_number() const { return frame_; }
|
2013-06-13 21:42:05 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string file_name_;
|
2014-04-14 23:19:50 +02:00
|
|
|
VpxInputContext *vpx_ctx_;
|
|
|
|
WebmInputContext *webm_ctx_;
|
2013-06-13 21:42:05 +02:00
|
|
|
uint8_t *buf_;
|
|
|
|
size_t buf_sz_;
|
|
|
|
unsigned int frame_;
|
|
|
|
bool end_of_file_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace libvpx_test
|
|
|
|
|
|
|
|
#endif // TEST_WEBM_VIDEO_SOURCE_H_
|