2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
10 #ifndef VPX_TEST_IVF_VIDEO_SOURCE_H_
11 #define VPX_TEST_IVF_VIDEO_SOURCE_H_
16 #include "test/video_source.h"
18 namespace libvpx_test {
19 const unsigned int kCodeBufferSize = 256 * 1024 * 1024;
20 const unsigned int kIvfFileHdrSize = 32;
21 const unsigned int kIvfFrameHdrSize = 12;
23 static unsigned int MemGetLe32(const uint8_t *mem) {
24 return (mem[3] << 24) | (mem[2] << 16) | (mem[1] << 8) | (mem[0]);
27 // This class extends VideoSource to allow parsing of ivf files,
28 // so that we can do actual file decodes.
29 class IVFVideoSource : public CompressedVideoSource {
31 explicit IVFVideoSource(const std::string &file_name)
32 : file_name_(file_name), input_file_(nullptr),
33 compressed_frame_buf_(nullptr), frame_sz_(0), frame_(0),
34 end_of_file_(false) {}
36 virtual ~IVFVideoSource() {
37 delete[] compressed_frame_buf_;
39 if (input_file_) fclose(input_file_);
43 // Allocate a buffer for read in the compressed video frame.
44 compressed_frame_buf_ = new uint8_t[libvpx_test::kCodeBufferSize];
45 ASSERT_NE(compressed_frame_buf_, nullptr) << "Allocate frame buffer failed";
48 virtual void Begin() {
49 input_file_ = OpenTestDataFile(file_name_);
50 ASSERT_NE(input_file_, nullptr)
51 << "Input file open failed. Filename: " << file_name_;
54 uint8_t file_hdr[kIvfFileHdrSize];
55 ASSERT_EQ(kIvfFileHdrSize, fread(file_hdr, 1, kIvfFileHdrSize, input_file_))
56 << "File header read failed.";
58 ASSERT_TRUE(file_hdr[0] == 'D' && file_hdr[1] == 'K' &&
59 file_hdr[2] == 'I' && file_hdr[3] == 'F')
60 << "Input is not an IVF file.";
71 ASSERT_NE(input_file_, nullptr);
72 uint8_t frame_hdr[kIvfFrameHdrSize];
73 // Check frame header and read a frame from input_file.
74 if (fread(frame_hdr, 1, kIvfFrameHdrSize, input_file_) !=
80 frame_sz_ = MemGetLe32(frame_hdr);
81 ASSERT_LE(frame_sz_, kCodeBufferSize)
82 << "Frame is too big for allocated code buffer";
84 fread(compressed_frame_buf_, 1, frame_sz_, input_file_))
85 << "Failed to read complete frame";
89 virtual const uint8_t *cxdata() const {
90 return end_of_file_ ? nullptr : compressed_frame_buf_;
92 virtual size_t frame_size() const { return frame_sz_; }
93 virtual unsigned int frame_number() const { return frame_; }
96 std::string file_name_;
98 uint8_t *compressed_frame_buf_;
104 } // namespace libvpx_test
106 #endif // VPX_TEST_IVF_VIDEO_SOURCE_H_