aboutsummaryrefslogtreecommitdiff
path: root/examples/file_writer.h
blob: 00f6cc380979611fe5221b98b5ae7582df272d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright 2019 The libgav1 Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef LIBGAV1_EXAMPLES_FILE_WRITER_H_
#define LIBGAV1_EXAMPLES_FILE_WRITER_H_

#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <memory>
#include <string>

#include "gav1/decoder_buffer.h"

namespace libgav1 {

// Frame based file writer class. Supports only Y4M (YUV4MPEG2) and RAW output.
class FileWriter {
 public:
  enum FileType : uint8_t {
    kFileTypeRaw,
    kFileTypeY4m,
  };

  struct Y4mParameters {
    Y4mParameters() = default;
    Y4mParameters(size_t width, size_t height, size_t frame_rate_numerator,
                  size_t frame_rate_denominator,
                  ChromaSamplePosition chroma_sample_position,
                  ImageFormat image_format, size_t bitdepth)
        : width(width),
          height(height),
          frame_rate_numerator(frame_rate_numerator),
          frame_rate_denominator(frame_rate_denominator),
          chroma_sample_position(chroma_sample_position),
          image_format(image_format),
          bitdepth(bitdepth) {}

    Y4mParameters(const Y4mParameters& rhs) = default;
    Y4mParameters& operator=(const Y4mParameters& rhs) = default;
    Y4mParameters(Y4mParameters&& rhs) = default;
    Y4mParameters& operator=(Y4mParameters&& rhs) = default;

    size_t width = 0;
    size_t height = 0;
    size_t frame_rate_numerator = 30;
    size_t frame_rate_denominator = 1;
    ChromaSamplePosition chroma_sample_position = kChromaSamplePositionUnknown;
    ImageFormat image_format = kImageFormatYuv420;
    size_t bitdepth = 8;
  };

  // Opens |file_name|. When |file_type| is kFileTypeY4m the Y4M file header is
  // written out to |file_| before this method returns.
  //
  // Returns a FileWriter instance after the file is opened successfully for
  // kFileTypeRaw files, and after the Y4M file header bytes are written for
  // kFileTypeY4m files. Returns nullptr upon failure.
  static std::unique_ptr<FileWriter> Open(const std::string& file_name,
                                          FileType type,
                                          const Y4mParameters* y4m_parameters);

  FileWriter() = delete;
  FileWriter(const FileWriter&) = delete;
  FileWriter& operator=(const FileWriter&) = delete;

  FileWriter(FileWriter&&) = default;
  FileWriter& operator=(FileWriter&&) = default;

  // Closes |file_|.
  ~FileWriter();

  // Writes the frame data in |frame_buffer| to |file_|. Returns true after
  // successful write of |frame_buffer| data.
  /*LIBGAV1_MUST_USE_RESULT*/ bool WriteFrame(
      const DecoderBuffer& frame_buffer);

 private:
  explicit FileWriter(FILE* file) : file_(file) {}

  bool WriteY4mFileHeader(const Y4mParameters& y4m_parameters);

  FILE* file_ = nullptr;
  FileType file_type_ = kFileTypeRaw;
};

}  // namespace libgav1

#endif  // LIBGAV1_EXAMPLES_FILE_WRITER_H_