2 * Vp9 invisible (alt-ref) frame to superframe merge bitstream filter
3 * Copyright (c) 2016 Ronald S. Bultje <rsbultje@gmail.com>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avassert.h"
28 typedef struct VP9BSFContext {
36 static void stats(const struct CachedBuf *in, int n_in,
37 unsigned *_max, unsigned *_sum)
40 unsigned max = 0, sum = 0;
42 for (n = 0; n < n_in; n++) {
43 unsigned sz = in[n].size;
54 static int merge_superframe(const struct CachedBuf *in, int n_in, AVPacket *out)
56 unsigned max, sum, mag, marker, n, sz;
60 stats(in, n_in, &max, &sum);
61 mag = av_log2(max) >> 3;
62 marker = 0xC0 + (mag << 3) + (n_in - 1);
63 sz = sum + 2 + (mag + 1) * n_in;
64 res = av_new_packet(out, sz);
68 for (n = 0; n < n_in; n++) {
69 memcpy(ptr, in[n].data, in[n].size);
73 #define wloop(mag, wr) \
74 for (n = 0; n < n_in; n++) { \
79 // write superframe with marker 110[mag:2][nframes:3]
83 wloop(mag, *ptr = in[n].size);
86 wloop(mag, AV_WL16(ptr, in[n].size));
89 wloop(mag, AV_WL24(ptr, in[n].size));
92 wloop(mag, AV_WL32(ptr, in[n].size));
96 av_assert0(ptr == &out->data[out->size]);
101 static int vp9_superframe_filter(AVBSFContext *ctx, AVPacket *out)
104 VP9BSFContext *s = ctx->priv_data;
106 int res, invisible, profile, marker, uses_superframe_syntax = 0, n;
108 res = ff_bsf_get_packet(ctx, &in);
112 marker = in->data[in->size - 1];
113 if ((marker & 0xe0) == 0xc0) {
114 int nbytes = 1 + ((marker >> 3) & 0x3);
115 int n_frames = 1 + (marker & 0x7), idx_sz = 2 + n_frames * nbytes;
117 uses_superframe_syntax = in->size >= idx_sz && in->data[in->size - idx_sz] == marker;
120 if ((res = init_get_bits8(&gb, in->data, in->size)) < 0)
123 get_bits(&gb, 2); // frame marker
124 profile = get_bits1(&gb);
125 profile |= get_bits1(&gb) << 1;
126 if (profile == 3) profile += get_bits1(&gb);
128 if (get_bits1(&gb)) {
131 get_bits1(&gb); // keyframe
132 invisible = !get_bits1(&gb);
135 if (uses_superframe_syntax && s->n_cache > 0) {
136 av_log(ctx, AV_LOG_ERROR,
137 "Mixing of superframe syntax and naked VP9 frames not supported");
138 res = AVERROR_INVALIDDATA;
140 } else if ((!invisible || uses_superframe_syntax) && !s->n_cache) {
142 av_packet_move_ref(out, in);
144 } else if (s->n_cache + 1 >= MAX_CACHE) {
145 av_log(ctx, AV_LOG_ERROR,
146 "Too many invisible frames");
147 res = AVERROR_INVALIDDATA;
151 s->cache[s->n_cache].size = in->size;
152 if (invisible && !uses_superframe_syntax) {
153 s->cache[s->n_cache].data = av_malloc(in->size);
154 if (!s->cache[s->n_cache].data) {
155 res = AVERROR(ENOMEM);
158 memcpy(s->cache[s->n_cache++].data, in->data, in->size);
159 res = AVERROR(EAGAIN);
162 av_assert0(s->n_cache > 0);
164 s->cache[s->n_cache].data = in->data;
167 if ((res = merge_superframe(s->cache, s->n_cache + 1, out)) < 0)
170 for (n = 0; n < s->n_cache; n++)
171 av_freep(&s->cache[n].data);
174 res = av_packet_copy_props(out, in);
180 av_packet_unref(out);
185 static void vp9_superframe_close(AVBSFContext *ctx)
187 VP9BSFContext *s = ctx->priv_data;
191 for (n = 0; n < s->n_cache; n++)
192 av_freep(&s->cache[n].data);
195 static const enum AVCodecID codec_ids[] = {
196 AV_CODEC_ID_VP9, AV_CODEC_ID_NONE,
199 const AVBitStreamFilter ff_vp9_superframe_bsf = {
200 .name = "vp9_superframe",
201 .priv_data_size = sizeof(VP9BSFContext),
202 .filter = vp9_superframe_filter,
203 .close = vp9_superframe_close,
204 .codec_ids = codec_ids,