summaryrefslogtreecommitdiff
path: root/chromium/media/video/av1_video_encoder.h
blob: 5dd690c1d840b3e168b48afcee3780aaba3d3605 (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
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_VIDEO_AV1_VIDEO_ENCODER_H_
#define MEDIA_VIDEO_AV1_VIDEO_ENCODER_H_

#include <memory>
#include <vector>

#include "base/time/time.h"
#include "media/base/media_export.h"
#include "media/base/video_encoder.h"
#include "media/base/video_frame_pool.h"
#include "third_party/libaom/source/libaom/aom/aom_encoder.h"
#include "third_party/libaom/source/libaom/aom/aomcx.h"
#include "ui/gfx/color_space.h"
#include "ui/gfx/geometry/size.h"

namespace media {

class MEDIA_EXPORT Av1VideoEncoder : public VideoEncoder {
 public:
  Av1VideoEncoder();
  ~Av1VideoEncoder() override;

  // VideoDecoder implementation.
  void Initialize(VideoCodecProfile profile,
                  const Options& options,
                  OutputCB output_cb,
                  EncoderStatusCB done_cb) override;
  void Encode(scoped_refptr<VideoFrame> frame,
              bool key_frame,
              EncoderStatusCB done_cb) override;
  void ChangeOptions(const Options& options,
                     OutputCB output_cb,
                     EncoderStatusCB done_cb) override;
  void Flush(EncoderStatusCB done_cb) override;

 private:
  base::TimeDelta GetFrameDuration(const VideoFrame& frame);
  void DrainOutputs(int temporal_id,
                    base::TimeDelta ts,
                    gfx::ColorSpace color_space);
  EncoderStatus::Or<int> AssignNextTemporalId(bool key_frame);

  using aom_codec_unique_ptr =
      std::unique_ptr<aom_codec_ctx_t, void (*)(aom_codec_ctx_t*)>;

  aom_codec_unique_ptr codec_;
  aom_codec_enc_cfg_t config_ = {};
  aom_svc_params_t svc_params_ = {};
  aom_image_t image_ = {};

  // This is a timestamp that is always increasing by frame's duration.
  // It's used only for rate control and has nothing to do with timestamps
  // coming from real frames.
  aom_codec_pts_t artificial_timestamp_ = 0;

  gfx::Size originally_configured_size_;
  base::TimeDelta last_frame_timestamp_;
  gfx::ColorSpace last_frame_color_space_;
  int temporal_svc_frame_index_ = 0;

  VideoCodecProfile profile_ = VIDEO_CODEC_PROFILE_UNKNOWN;
  VideoFramePool frame_pool_;
  std::vector<uint8_t> resize_buf_;
  Options options_;
  OutputCB output_cb_;
};

}  // namespace media
#endif  // MEDIA_VIDEO_AV1_VIDEO_ENCODER_H_