]> granicus.if.org Git - libvpx/blob - webmenc.cc
Merge "vp9_reconintra/d45_predictor: remove temp storage"
[libvpx] / webmenc.cc
1 /*
2  *  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
3  *
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.
9  */
10 #include "./webmenc.h"
11
12 #include <string>
13
14 #include "third_party/libwebm/mkvmuxer.hpp"
15 #include "third_party/libwebm/mkvmuxerutil.hpp"
16 #include "third_party/libwebm/mkvwriter.hpp"
17
18 namespace {
19 const uint64_t kDebugTrackUid = 0xDEADBEEF;
20 const int kVideoTrackNumber = 1;
21 }  // namespace
22
23 void write_webm_file_header(struct EbmlGlobal *glob,
24                             const vpx_codec_enc_cfg_t *cfg,
25                             const struct vpx_rational *fps,
26                             stereo_format_t stereo_fmt,
27                             unsigned int fourcc,
28                             const struct VpxRational *par) {
29   mkvmuxer::MkvWriter *const writer = new mkvmuxer::MkvWriter(glob->stream);
30   mkvmuxer::Segment *const segment = new mkvmuxer::Segment();
31   segment->Init(writer);
32   segment->set_mode(mkvmuxer::Segment::kFile);
33   segment->OutputCues(true);
34
35   mkvmuxer::SegmentInfo *const info = segment->GetSegmentInfo();
36   const uint64_t kTimecodeScale = 1000000;
37   info->set_timecode_scale(kTimecodeScale);
38   std::string version = "vpxenc";
39   if (!glob->debug) {
40     version.append(std::string(" ") + vpx_codec_version_str());
41   }
42   info->set_writing_app(version.c_str());
43
44   const uint64_t video_track_id =
45       segment->AddVideoTrack(static_cast<int>(cfg->g_w),
46                              static_cast<int>(cfg->g_h),
47                              kVideoTrackNumber);
48   mkvmuxer::VideoTrack* const video_track =
49       static_cast<mkvmuxer::VideoTrack*>(
50           segment->GetTrackByNumber(video_track_id));
51   video_track->SetStereoMode(stereo_fmt);
52   video_track->set_codec_id(fourcc == VP8_FOURCC ? "V_VP8" : "V_VP9");
53   if (par->numerator > 1 || par->denominator > 1) {
54     // TODO(fgalligan): Add support of DisplayUnit, Display Aspect Ratio type
55     // to WebM format.
56     const uint64_t display_width =
57         static_cast<uint64_t>(((cfg->g_w * par->numerator * 1.0) /
58                                par->denominator) + .5);
59     video_track->set_display_width(display_width);
60     video_track->set_display_height(cfg->g_h);
61   }
62   if (glob->debug) {
63     video_track->set_uid(kDebugTrackUid);
64   }
65   glob->writer = writer;
66   glob->segment = segment;
67 }
68
69 void write_webm_block(struct EbmlGlobal *glob,
70                       const vpx_codec_enc_cfg_t *cfg,
71                       const vpx_codec_cx_pkt_t *pkt) {
72   mkvmuxer::Segment *const segment =
73       reinterpret_cast<mkvmuxer::Segment*>(glob->segment);
74   int64_t pts_ns = pkt->data.frame.pts * 1000000000ll *
75                    cfg->g_timebase.num / cfg->g_timebase.den;
76   if (pts_ns <= glob->last_pts_ns)
77     pts_ns = glob->last_pts_ns + 1000000;
78   glob->last_pts_ns = pts_ns;
79
80   segment->AddFrame(static_cast<uint8_t*>(pkt->data.frame.buf),
81                     pkt->data.frame.sz,
82                     kVideoTrackNumber,
83                     pts_ns,
84                     pkt->data.frame.flags & VPX_FRAME_IS_KEY);
85 }
86
87 void write_webm_file_footer(struct EbmlGlobal *glob) {
88   mkvmuxer::MkvWriter *const writer =
89       reinterpret_cast<mkvmuxer::MkvWriter*>(glob->writer);
90   mkvmuxer::Segment *const segment =
91       reinterpret_cast<mkvmuxer::Segment*>(glob->segment);
92   segment->Finalize();
93   delete segment;
94   delete writer;
95   glob->writer = NULL;
96   glob->segment = NULL;
97 }