FFmpeg
|
Include dependency graph for ilbc.c:
Go to the source code of this file.
Functions | |
static int | ilbc_write_header (AVFormatContext *s) |
static int | ilbc_write_packet (AVFormatContext *s, AVPacket *pkt) |
static int | ilbc_probe (AVProbeData *p) |
static int | ilbc_read_header (AVFormatContext *s) |
static int | ilbc_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
static const char | mode20_header [] = "#!iLBC20\n" |
static const char | mode30_header [] = "#!iLBC30\n" |
AVInputFormat | ff_ilbc_demuxer |
AVOutputFormat | ff_ilbc_muxer |
Function Documentation
|
static |
|
static |
|
static |
|
static |
|
static |
Variable Documentation
AVInputFormat ff_ilbc_demuxer |
Initial value:
= {
.name = "ilbc",
.long_name = NULL_IF_CONFIG_SMALL("iLBC storage"),
.read_probe = ilbc_probe,
.read_header = ilbc_read_header,
.read_packet = ilbc_read_packet,
.flags = AVFMT_GENERIC_INDEX,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: libavutil/internal.h:123
static int ilbc_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: ilbc.c:102
AVOutputFormat ff_ilbc_muxer |
Initial value:
= {
.name = "ilbc",
.long_name = NULL_IF_CONFIG_SMALL("iLBC storage"),
.mime_type = "audio/iLBC",
.extensions = "lbc",
.audio_codec = AV_CODEC_ID_ILBC,
.write_header = ilbc_write_header,
.write_packet = ilbc_write_packet,
.flags = AVFMT_NOTIMESTAMPS,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: libavutil/internal.h:123
static int ilbc_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: ilbc.c:56
Definition: libavcodec/avcodec.h:441
|
static |
Definition at line 25 of file ilbc.c.
Referenced by ilbc_probe(), ilbc_read_header(), and ilbc_write_header().
|
static |
Definition at line 26 of file ilbc.c.
Referenced by ilbc_read_header(), and ilbc_write_header().
Generated on Mon Nov 18 2024 06:52:07 for FFmpeg by 1.8.11