Go to the documentation of this file.
22 #include <celt/celt.h>
23 #include <celt/celt_header.h>
38 case CELT_BAD_ARG:
return AVERROR(EINVAL);
39 #ifdef CELT_BUFFER_TOO_SMALL
40 case CELT_BUFFER_TOO_SMALL:
return AVERROR(ENOBUFS);
42 case CELT_INTERNAL_ERROR:
return AVERROR(EFAULT);
44 case CELT_UNIMPLEMENTED:
return AVERROR(ENOSYS);
45 #ifdef ENOTRECOVERABLE
46 case CELT_INVALID_STATE:
return AVERROR(ENOTRECOVERABLE);
48 case CELT_ALLOC_FAIL:
return AVERROR(ENOMEM);
49 default:
return AVERROR(EINVAL);
55 CELTHeader
header = { .version_id = 0 };
65 if (!
c->ch_layout.nb_channels || !
c->frame_size ||
66 c->frame_size > INT_MAX /
sizeof(int16_t) /
c->ch_layout.nb_channels)
68 celt->
mode = celt_mode_create(
c->sample_rate,
c->frame_size, &err);
71 celt->
dec = celt_decoder_create_custom(celt->
mode,
c->ch_layout.nb_channels, &err);
73 celt_mode_destroy(celt->
mode);
76 if (
c->extradata_size >= 4) {
80 "Invalid overlap (%d), ignored.\n", celt->
discard);
84 if (
c->extradata_size >= 8) {
89 "CELT bitstream version 0x%x may be "
90 "improperly decoded by libcelt for version 0x%x.\n",
101 celt_decoder_destroy(celt->
dec);
102 celt_mode_destroy(celt->
mode);
122 memmove(pcm, pcm + celt->
discard *
c->ch_layout.nb_channels,
136 .p.wrapper_name =
"libcelt",
#define AV_LOG_WARNING
Something somehow does not look correct.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
This structure describes decoded (raw) audio or video data.
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
static int ff_celt_bitstream_version_hack(CELTMode *mode)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
AVCodec p
The public AVCodec.
const FFCodec ff_libcelt_decoder
#define FF_CODEC_DECODE_CB(func)
int(* init)(AVBSFContext *ctx)
static int libcelt_dec_decode(AVCodecContext *c, AVFrame *frame, int *got_frame_ptr, AVPacket *pkt)
#define CODEC_LONG_NAME(str)
static int ff_celt_error_to_averror(int err)
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
static const uint8_t header[24]
static av_cold int libcelt_dec_init(AVCodecContext *c)
int nb_samples
number of audio samples (per channel) described by this frame
@ AV_SAMPLE_FMT_S16
signed 16 bits
const char * name
Name of the codec implementation.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
main external API structure.
static av_cold int libcelt_dec_close(AVCodecContext *c)
This structure stores compressed data.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.