OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
kjellander_webrtc
2017/02/20 21:41:47
New file means 2017. Same for the other new files.
| |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/base/checks.h" | |
11 #include "webrtc/test/testsupport/frame_writer.h" | 12 #include "webrtc/test/testsupport/frame_writer.h" |
12 | 13 |
13 #include <assert.h> | |
14 | |
15 namespace webrtc { | 14 namespace webrtc { |
16 namespace test { | 15 namespace test { |
17 | 16 |
18 FrameWriterImpl::FrameWriterImpl(std::string output_filename, | 17 Y4mFrameWriterImpl::Y4mFrameWriterImpl(std::string output_filename, |
19 size_t frame_length_in_bytes) | 18 int width, |
20 : output_filename_(output_filename), | 19 int height, |
21 frame_length_in_bytes_(frame_length_in_bytes), | 20 int frame_rate) |
22 output_file_(NULL) { | 21 : YuvFrameWriterImpl(output_filename, width, height), |
23 } | 22 frame_rate_(frame_rate) {} |
24 | 23 |
25 FrameWriterImpl::~FrameWriterImpl() { | 24 Y4mFrameWriterImpl::~Y4mFrameWriterImpl() = default; |
26 Close(); | |
27 } | |
28 | 25 |
29 bool FrameWriterImpl::Init() { | 26 bool Y4mFrameWriterImpl::Init() { |
30 if (frame_length_in_bytes_ <= 0) { | 27 if (!YuvFrameWriterImpl::Init()) { |
31 fprintf(stderr, "Frame length must be >0, was %zu\n", | |
32 frame_length_in_bytes_); | |
33 return false; | 28 return false; |
34 } | 29 } |
35 output_file_ = fopen(output_filename_.c_str(), "wb"); | 30 int bytes_written = fprintf(output_file_, "YUV4MPEG2 W%d H%d F%d:1 C420\n", |
36 if (output_file_ == NULL) { | 31 width_, height_, frame_rate_); |
37 fprintf(stderr, "Couldn't open output file for writing: %s\n", | 32 if (bytes_written < 0) { |
33 fprintf(stderr, "Failed to write Y4M file header to file %s\n", | |
38 output_filename_.c_str()); | 34 output_filename_.c_str()); |
39 return false; | 35 return false; |
40 } | 36 } |
41 return true; | 37 return true; |
42 } | 38 } |
43 | 39 |
44 void FrameWriterImpl::Close() { | 40 bool Y4mFrameWriterImpl::WriteFrame(uint8_t* frame_buffer) { |
45 if (output_file_ != NULL) { | 41 if (output_file_ == nullptr) { |
46 fclose(output_file_); | 42 fprintf(stderr, |
47 output_file_ = NULL; | 43 "Y4mFrameWriterImpl is not initialized (output file is NULL)\n"); |
48 } | |
49 } | |
50 | |
51 size_t FrameWriterImpl::FrameLength() { return frame_length_in_bytes_; } | |
52 | |
53 bool FrameWriterImpl::WriteFrame(uint8_t* frame_buffer) { | |
54 assert(frame_buffer); | |
55 if (output_file_ == NULL) { | |
56 fprintf(stderr, "FrameWriter is not initialized (output file is NULL)\n"); | |
57 return false; | 44 return false; |
58 } | 45 } |
59 size_t bytes_written = fwrite(frame_buffer, 1, frame_length_in_bytes_, | 46 int bytes_written = fprintf(output_file_, "FRAME\n"); |
60 output_file_); | 47 if (bytes_written < 0) { |
61 if (bytes_written != frame_length_in_bytes_) { | 48 fprintf(stderr, "Failed to write Y4M frame header to file %s\n", |
62 fprintf(stderr, "Failed to write %zu bytes to file %s\n", | 49 output_filename_.c_str()); |
kjellander_webrtc
2017/02/20 21:41:47
return false?
brandtr
2017/02/21 07:59:31
Yes! Not sure why that was left out..
| |
63 frame_length_in_bytes_, output_filename_.c_str()); | |
64 return false; | |
65 } | 50 } |
66 return true; | 51 return YuvFrameWriterImpl::WriteFrame(frame_buffer); |
67 } | 52 } |
68 | 53 |
69 } // namespace test | 54 } // namespace test |
70 } // namespace webrtc | 55 } // namespace webrtc |
OLD | NEW |