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 {
30 AVPacket *cache[MAX_CACHE];
33 static void stats(AVPacket * const *in, int n_in,
34 unsigned *_max, unsigned *_sum)
37 unsigned max = 0, sum = 0;
39 for (n = 0; n < n_in; n++) {
40 unsigned sz = in[n]->size;
51 static int merge_superframe(AVPacket * const *in, int n_in, AVPacket *out)
53 unsigned max, sum, mag, marker, n, sz;
57 stats(in, n_in, &max, &sum);
58 mag = av_log2(max) >> 3;
59 marker = 0xC0 + (mag << 3) + (n_in - 1);
60 sz = sum + 2 + (mag + 1) * n_in;
61 res = av_new_packet(out, sz);
65 for (n = 0; n < n_in; n++) {
66 memcpy(ptr, in[n]->data, in[n]->size);
70 #define wloop(mag, wr) \
72 for (n = 0; n < n_in; n++) { \
78 // write superframe with marker 110[mag:2][nframes:3]
82 wloop(mag, *ptr = in[n]->size);
85 wloop(mag, AV_WL16(ptr, in[n]->size));
88 wloop(mag, AV_WL24(ptr, in[n]->size));
91 wloop(mag, AV_WL32(ptr, in[n]->size));
95 av_assert0(ptr == &out->data[out->size]);
100 static int vp9_superframe_filter(AVBSFContext *ctx, AVPacket *out)
103 VP9BSFContext *s = ctx->priv_data;
105 int res, invisible, profile, marker, uses_superframe_syntax = 0, n;
107 res = ff_bsf_get_packet(ctx, &in);
111 marker = in->data[in->size - 1];
112 if ((marker & 0xe0) == 0xc0) {
113 int nbytes = 1 + ((marker >> 3) & 0x3);
114 int n_frames = 1 + (marker & 0x7), idx_sz = 2 + n_frames * nbytes;
116 uses_superframe_syntax = in->size >= idx_sz && in->data[in->size - idx_sz] == marker;
119 if ((res = init_get_bits8(&gb, in->data, in->size)) < 0)
122 get_bits(&gb, 2); // frame marker
123 profile = get_bits1(&gb);
124 profile |= get_bits1(&gb) << 1;
125 if (profile == 3) profile += get_bits1(&gb);
127 if (get_bits1(&gb)) {
130 get_bits1(&gb); // keyframe
131 invisible = !get_bits1(&gb);
134 if (uses_superframe_syntax && s->n_cache > 0) {
135 av_log(ctx, AV_LOG_ERROR,
136 "Mixing of superframe syntax and naked VP9 frames not supported");
137 res = AVERROR(ENOSYS);
139 } else if ((!invisible || uses_superframe_syntax) && !s->n_cache) {
141 av_packet_move_ref(out, in);
143 } else if (s->n_cache + 1 >= MAX_CACHE) {
144 av_log(ctx, AV_LOG_ERROR,
145 "Too many invisible frames");
146 res = AVERROR_INVALIDDATA;
150 av_packet_move_ref(s->cache[s->n_cache++], in);
153 res = AVERROR(EAGAIN);
156 av_assert0(s->n_cache > 0);
159 if ((res = merge_superframe(s->cache, s->n_cache, out)) < 0)
162 res = av_packet_copy_props(out, s->cache[s->n_cache - 1]);
166 for (n = 0; n < s->n_cache; n++)
167 av_packet_unref(s->cache[n]);
172 av_packet_unref(out);
177 static int vp9_superframe_init(AVBSFContext *ctx)
179 VP9BSFContext *s = ctx->priv_data;
182 // alloc cache packets
183 for (n = 0; n < MAX_CACHE; n++) {
184 s->cache[n] = av_packet_alloc();
186 return AVERROR(ENOMEM);
192 static void vp9_superframe_close(AVBSFContext *ctx)
194 VP9BSFContext *s = ctx->priv_data;
198 for (n = 0; n < MAX_CACHE; n++)
199 av_packet_free(&s->cache[n]);
202 static const enum AVCodecID codec_ids[] = {
203 AV_CODEC_ID_VP9, AV_CODEC_ID_NONE,
206 const AVBitStreamFilter ff_vp9_superframe_bsf = {
207 .name = "vp9_superframe",
208 .priv_data_size = sizeof(VP9BSFContext),
209 .filter = vp9_superframe_filter,
210 .init = vp9_superframe_init,
211 .close = vp9_superframe_close,
212 .codec_ids = codec_ids,