summaryrefslogtreecommitdiffstats
path: root/libavcodec/vp9_superframe_bsf.c
blob: d4a61eea0411e75438a46b13d5b798d42cab5a8d (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
 * Vp9 invisible (alt-ref) frame to superframe merge bitstream filter
 * Copyright (c) 2016 Ronald S. Bultje <rsbultje@gmail.com>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "libavutil/avassert.h"
#include "avcodec.h"
#include "get_bits.h"

#define MAX_CACHE 8
typedef struct VP9BSFContext {
    int n_cache;
    struct CachedBuf {
        uint8_t *data;
        int size;
    } cache[MAX_CACHE];
} VP9BSFContext;

static void stats(const struct CachedBuf *in, int n_in,
                  unsigned *_max, unsigned *_sum)
{
    int n;
    unsigned max = 0, sum = 0;

    for (n = 0; n < n_in; n++) {
        unsigned sz = in[n].size;

        if (sz > max)
            max = sz;
        sum += sz;
    }

    *_max = max;
    *_sum = sum;
}

static int merge_superframe(const struct CachedBuf *in, int n_in,
                            uint8_t **poutbuf, int *poutbuf_size)
{
    unsigned max, sum, mag, marker, n, sz;
    uint8_t *ptr;

    stats(in, n_in, &max, &sum);
    mag = av_log2(max) >> 3;
    marker = 0xC0 + (mag << 3) + (n_in - 1);
    sz = *poutbuf_size = sum + 2 + (mag + 1) * n_in;
    ptr = *poutbuf = av_malloc(sz);
    if (!ptr)
        return AVERROR(ENOMEM);

    for (n = 0; n < n_in; n++) {
        memcpy(ptr, in[n].data, in[n].size);
        ptr += in[n].size;
    }

#define wloop(mag, wr) \
    for (n = 0; n < n_in; n++) { \
        wr; \
        ptr += mag + 1; \
    }

    // write superframe with marker 110[mag:2][nframes:3]
    *ptr++ = marker;
    switch (mag) {
    case 0:
        wloop(mag, *ptr = in[n].size);
        break;
    case 1:
        wloop(mag, AV_WL16(ptr, in[n].size));
        break;
    case 2:
        wloop(mag, AV_WL24(ptr, in[n].size));
        break;
    case 3:
        wloop(mag, AV_WL32(ptr, in[n].size));
        break;
    }
    *ptr++ = marker;
    av_assert0(ptr == &(*poutbuf)[*poutbuf_size]);

    return 0;
}

static int vp9_superframe_filter(AVBitStreamFilterContext *bsfc,
                                 AVCodecContext *avctx, const char *args,
                                 uint8_t  **poutbuf, int *poutbuf_size,
                                 const uint8_t *buf, int      buf_size,
                                 int keyframe)
{
    GetBitContext gb;
    VP9BSFContext *ctx = bsfc->priv_data;
    int res, invisible, profile, marker, uses_superframe_syntax = 0, n;

    marker = buf[buf_size - 1];
    if ((marker & 0xe0) == 0xc0) {
        int nbytes = 1 + ((marker >> 3) & 0x3);
        int n_frames = 1 + (marker & 0x7), idx_sz = 2 + n_frames * nbytes;

        uses_superframe_syntax = buf_size >= idx_sz && buf[buf_size - idx_sz] == marker;
    }

    if ((res = init_get_bits8(&gb, buf, buf_size)) < 0)
        return res;

    get_bits(&gb, 2); // frame marker
    profile  = get_bits1(&gb);
    profile |= get_bits1(&gb) << 1;
    if (profile == 3) profile += get_bits1(&gb);

    if (get_bits1(&gb)) {
        invisible = 0;
    } else {
        get_bits1(&gb); // keyframe
        invisible = !get_bits1(&gb);
    }

    if (uses_superframe_syntax && ctx->n_cache > 0) {
        av_log(avctx, AV_LOG_ERROR,
               "Mixing of superframe syntax and naked VP9 frames not supported");
        return AVERROR_INVALIDDATA;
    } else if ((!invisible || uses_superframe_syntax) && !ctx->n_cache) {
        // passthrough
        *poutbuf = (uint8_t *) buf;
        *poutbuf_size = buf_size;
        return 0;
    } else if (ctx->n_cache + 1 >= MAX_CACHE) {
        av_log(avctx, AV_LOG_ERROR,
               "Too many invisible frames");
        return AVERROR_INVALIDDATA;
    }

    ctx->cache[ctx->n_cache].size = buf_size;
    if (invisible && !uses_superframe_syntax) {
        ctx->cache[ctx->n_cache].data = av_malloc(buf_size);
        if (!ctx->cache[ctx->n_cache].data)
            return AVERROR(ENOMEM);
        memcpy(ctx->cache[ctx->n_cache++].data, buf, buf_size);
        *poutbuf = NULL;
        *poutbuf_size = 0;
        return 0;
    }
    av_assert0(ctx->n_cache > 0);

    ctx->cache[ctx->n_cache].data = (uint8_t *) buf;

    // build superframe
    if ((res = merge_superframe(ctx->cache, ctx->n_cache + 1,
                                poutbuf, poutbuf_size)) < 0)
        return res;

    for (n = 0; n < ctx->n_cache; n++)
        av_freep(&ctx->cache[n].data);
    ctx->n_cache = 0;

    return 0;
}

static void vp9_superframe_close(AVBitStreamFilterContext *bsfc)
{
    VP9BSFContext *ctx = bsfc->priv_data;
    int n;

    // free cached data
    for (n = 0; n < ctx->n_cache; n++)
        av_freep(&ctx->cache[n].data);
}

AVBitStreamFilter ff_vp9_superframe_bsf = {
    .name           = "vp9_superframe",
    .priv_data_size = sizeof(VP9BSFContext),
    .filter         = vp9_superframe_filter,
    .close          = vp9_superframe_close,
};
OpenPOWER on IntegriCloud