FFmpeg
Loading...
Searching...
No Matches
null.c
Go to the documentation of this file.
1/*
2 * Null codecs
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 "config_components.h"
22
23#include "codec_internal.h"
24#include "decode.h"
25#include "encode.h"
26
27#if CONFIG_VNULL_DECODER || CONFIG_ANULL_DECODER
28static int null_decode(AVCodecContext *avctx, AVFrame *frame,
29 int *got_frame, AVPacket *avpkt)
30{
31 *got_frame = 0;
32 return avpkt->size;
33}
34
35#if CONFIG_VNULL_DECODER
37 .p.name = "vnull",
38 CODEC_LONG_NAME("null video"),
39 .p.type = AVMEDIA_TYPE_VIDEO,
40 .p.id = AV_CODEC_ID_VNULL,
41 .p.capabilities = AV_CODEC_CAP_DR1,
42 FF_CODEC_DECODE_CB(null_decode),
43};
44#endif
45
46#if CONFIG_ANULL_DECODER
48 .p.name = "anull",
49 CODEC_LONG_NAME("null audio"),
50 .p.type = AVMEDIA_TYPE_AUDIO,
51 .p.id = AV_CODEC_ID_ANULL,
52 .p.capabilities = AV_CODEC_CAP_DR1,
53 FF_CODEC_DECODE_CB(null_decode),
54};
55#endif
56
57#endif
58
59#if CONFIG_VNULL_ENCODER || CONFIG_ANULL_ENCODER
60static int null_encode(AVCodecContext *avctx, AVPacket *pkt,
61 const AVFrame *frame, int *got_packet)
62{
63 *got_packet = 0;
64 return 0;
65}
66
67#if CONFIG_VNULL_ENCODER
69 .p.name = "vnull",
70 CODEC_LONG_NAME("null video"),
71 .p.type = AVMEDIA_TYPE_VIDEO,
72 .p.id = AV_CODEC_ID_VNULL,
73 FF_CODEC_ENCODE_CB(null_encode),
74};
75#endif
76
77#if CONFIG_ANULL_ENCODER
79 .p.name = "anull",
80 CODEC_LONG_NAME("null audio"),
81 .p.type = AVMEDIA_TYPE_AUDIO,
82 .p.id = AV_CODEC_ID_ANULL,
83 .p.capabilities = AV_CODEC_CAP_VARIABLE_FRAME_SIZE,
90 FF_CODEC_ENCODE_CB(null_encode),
91};
92#endif
93
94#endif
const FFCodec ff_anull_decoder
const FFCodec ff_vnull_encoder
const FFCodec ff_vnull_decoder
const FFCodec ff_anull_encoder
#define FF_CODEC_DECODE_CB(func)
#define FF_CODEC_ENCODE_CB(func)
#define CODEC_LONG_NAME(str)
#define CODEC_SAMPLEFMTS(...)
static AVPacket * pkt
static AVFrame * frame
#define AV_CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition codec.h:116
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_VNULL
Dummy null video codec, useful mainly for development and debugging.
Definition codec_id.h:626
@ AV_CODEC_ID_ANULL
Dummy null audio codec, useful mainly for development and debugging.
Definition codec_id.h:631
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition samplefmt.h:66
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition samplefmt.h:64
@ AV_SAMPLE_FMT_FLT
float
Definition samplefmt.h:60
@ AV_SAMPLE_FMT_S64
signed 64 bits
Definition samplefmt.h:68
@ AV_SAMPLE_FMT_U8P
unsigned 8 bits, planar
Definition samplefmt.h:63
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition samplefmt.h:65
@ AV_SAMPLE_FMT_S32
signed 32 bits
Definition samplefmt.h:59
@ AV_SAMPLE_FMT_U8
unsigned 8 bits
Definition samplefmt.h:57
@ AV_SAMPLE_FMT_DBLP
double, planar
Definition samplefmt.h:67
@ AV_SAMPLE_FMT_DBL
double
Definition samplefmt.h:61
@ AV_SAMPLE_FMT_S64P
signed 64 bits, planar
Definition samplefmt.h:69
@ AV_SAMPLE_FMT_S16
signed 16 bits
Definition samplefmt.h:58
main external API structure.
Definition avcodec.h:443
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604