FFmpeg
Loading...
Searching...
No Matches
av1_frame_merge.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 James Almer <jamrial@gmail.com>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "libavcodec/bsf.h"
23#include "libavcodec/cbs.h"
24#include "libavcodec/cbs_av1.h"
25
33
35{
37
38 ff_cbs_fragment_reset(&ctx->frag[0]);
39 ff_cbs_fragment_reset(&ctx->frag[1]);
41 av_packet_unref(ctx->pkt);
42}
43
45{
47 CodedBitstreamFragment *frag = &ctx->frag[ctx->idx], *tu = &ctx->frag[!ctx->idx];
48 AVPacket *in = ctx->in, *buffer_pkt = ctx->pkt;
49 int err, i;
50
51 err = ff_bsf_get_packet_ref(bsf, in);
52 if (err < 0) {
53 if (err == AVERROR_EOF && tu->nb_units > 0)
54 goto eof;
55 return err;
56 }
57
58 err = ff_cbs_read_packet(ctx->input, frag, in);
59 if (err < 0) {
60 av_log(bsf, AV_LOG_ERROR, "Failed to read packet.\n");
61 goto fail;
62 }
63
64 if (frag->nb_units == 0) {
65 av_log(bsf, AV_LOG_ERROR, "No OBU in packet.\n");
67 goto fail;
68 }
69
70 if (tu->nb_units == 0 && frag->units[0].type != AV1_OBU_TEMPORAL_DELIMITER) {
71 av_log(bsf, AV_LOG_ERROR, "Missing Temporal Delimiter.\n");
73 goto fail;
74 }
75
76 for (i = 1; i < frag->nb_units; i++) {
77 if (frag->units[i].type == AV1_OBU_TEMPORAL_DELIMITER) {
78 av_log(bsf, AV_LOG_ERROR, "Temporal Delimiter in the middle of a packet.\n");
80 goto fail;
81 }
82 }
83
84 if (tu->nb_units > 0 && frag->units[0].type == AV1_OBU_TEMPORAL_DELIMITER) {
85eof:
86 err = ff_cbs_write_packet(ctx->output, buffer_pkt, tu);
87 if (err < 0) {
88 av_log(bsf, AV_LOG_ERROR, "Failed to write packet.\n");
89 goto fail;
90 }
91 av_packet_move_ref(out, buffer_pkt);
92
93 // Swap fragment index, to avoid copying fragment references.
94 ctx->idx = !ctx->idx;
95 } else {
96 for (i = 0; i < frag->nb_units; i++) {
97 err = ff_cbs_insert_unit_content(tu, -1, frag->units[i].type,
98 frag->units[i].content, frag->units[i].content_ref);
99 if (err < 0)
100 goto fail;
101 }
102
103 err = AVERROR(EAGAIN);
104 }
105
106 /* Buffer packets with timestamps (there should be at most one per TU)
107 * or any packet if buffer_pkt is empty. The latter is needed to
108 * passthrough positions in case there are no timestamps like with
109 * the raw OBU demuxer. */
110 if (!buffer_pkt->data ||
111 in->pts != AV_NOPTS_VALUE && buffer_pkt->pts == AV_NOPTS_VALUE) {
112 av_packet_unref(buffer_pkt);
113 av_packet_move_ref(buffer_pkt, in);
114 } else
115 av_packet_unref(in);
116
117 ff_cbs_fragment_reset(&ctx->frag[ctx->idx]);
118
119fail:
120 if (err < 0 && err != AVERROR(EAGAIN))
122
123 return err;
124}
125
127{
129 int err;
130
131 ctx->in = av_packet_alloc();
132 ctx->pkt = av_packet_alloc();
133 if (!ctx->in || !ctx->pkt)
134 return AVERROR(ENOMEM);
135
136 err = ff_cbs_init(&ctx->input, AV_CODEC_ID_AV1, bsf);
137 if (err < 0)
138 return err;
139
140 return ff_cbs_init(&ctx->output, AV_CODEC_ID_AV1, bsf);
141}
142
144{
146
147 ff_cbs_fragment_free(&ctx->frag[0]);
148 ff_cbs_fragment_free(&ctx->frag[1]);
149 av_packet_free(&ctx->in);
150 av_packet_free(&ctx->pkt);
151 ff_cbs_close(&ctx->input);
152 ff_cbs_close(&ctx->output);
153}
154
158
160 .p.name = "av1_frame_merge",
161 .p.codec_ids = av1_frame_merge_codec_ids,
162 .priv_data_size = sizeof(AV1FMergeContext),
167};
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
static int av1_frame_merge_filter(AVBSFContext *bsf, AVPacket *out)
static void av1_frame_merge_close(AVBSFContext *bsf)
static int av1_frame_merge_init(AVBSFContext *bsf)
static void av1_frame_merge_flush(AVBSFContext *bsf)
static enum AVCodecID av1_frame_merge_codec_ids[]
const FFBitStreamFilter ff_av1_frame_merge_bsf
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition bsf.c:254
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
void(* flush)(AVBSFContext *ctx)
Definition dts2pts.c:610
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define fail
Definition test.h:479
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_AV1
Definition codec_id.h:275
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition packet.c:74
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition packet.c:434
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
Definition packet.c:491
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition packet.c:63
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
@ AV1_OBU_TEMPORAL_DELIMITER
Definition av1.h:31
CodedBitstreamContext * input
CodedBitstreamFragment frag[2]
CodedBitstreamContext * output
The bitstream filter state.
Definition bsf.h:68
void * priv_data
Opaque filter-specific private data.
Definition bsf.h:83
This structure stores compressed data.
Definition packet.h:580
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition packet.h:596
Context structure for coded bitstream operations.
Definition cbs.h:226
Coded bitstream fragment structure, combining one or more units.
Definition cbs.h:129
CodedBitstreamUnit * units
Pointer to an array of units of length nb_units_allocated.
Definition cbs.h:175
int nb_units
Number of units in this fragment.
Definition cbs.h:160
void * content
Pointer to the decomposed form of this unit.
Definition cbs.h:114
void * content_ref
If content is reference counted, a RefStruct reference backing content.
Definition cbs.h:119
CodedBitstreamUnitType type
Codec-specific type of this unit.
Definition cbs.h:81
#define av_log(a,...)
void(* filter)(uint8_t *src, ptrdiff_t stride, int qscale)
Definition h263dsp.c:29
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49