FFmpeg
Loading...
Searching...
No Matches
aom_film_grain.h
Go to the documentation of this file.
1/*
2 * AOM film grain synthesis
3 * Copyright (c) 2021 Niklas Haas <ffmpeg@haasn.xyz>
4 *
5 * This file is part of FFmpeg.
6 *
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.
11 *
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.
16 *
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
20 */
21
22/**
23 * @file
24 * AOM film grain synthesis.
25 * @author Niklas Haas <ffmpeg@haasn.xyz>
26 */
27
28#ifndef AVCODEC_AOM_FILM_GRAIN_H
29#define AVCODEC_AOM_FILM_GRAIN_H
30
31#include "libavutil/buffer.h"
33
38
39// Synthesizes film grain on top of `in` and stores the result to `out`. `out`
40// must already have been allocated and set to the same size and format as `in`.
43
44// Parse AFGS1 parameter sets from an ITU-T T.35 payload. Returns 0 on success,
45// or a negative error code.
47 const uint8_t *payload, int payload_size);
48
49// Attach all valid film grain param sets to `frame`.
51
52// Free all allocations in `s` and zero the entire struct.
54
55#endif /* AVCODEC_AOM_FILM_GRAIN_H */
SwsAArch64OpImplParams params
Definition ops.c:51
void ff_aom_uninit_film_grain_params(AVFilmGrainAFGS1Params *s)
int ff_aom_apply_film_grain(AVFrame *out, const AVFrame *in, const AVFilmGrainParams *params)
int ff_aom_parse_film_grain_sets(AVFilmGrainAFGS1Params *s, const uint8_t *payload, int payload_size)
int ff_aom_attach_film_grain_sets(const AVFilmGrainAFGS1Params *s, AVFrame *frame)
static FILE * out
refcounted data buffer API
#define s(width, name)
Definition cbs_vp9.c:198
static AVFrame * frame
A reference to a data buffer.
Definition buffer.h:82
AVBufferRef * sets[8]
This structure describes how to handle film grain synthesis in video for specific codecs.
This structure describes decoded (raw) audio or video data.
Definition frame.h:472