Go to the documentation of this file.
22 #include <shine/layer3.h>
33 #define BUFFER_SIZE (4096 * 20)
47 shine_set_config_mpeg_defaults(&
s->config.mpeg);
49 s->config.mpeg.bitr = avctx->
bit_rate / 1000;
53 if (shine_check_config(
s->config.wave.samplerate,
s->config.mpeg.bitr) < 0) {
57 s->shine = shine_initialise(&
s->config);
60 avctx->
frame_size = shine_samples_per_pass(
s->shine);
75 data = shine_encode_buffer(
s->shine, (int16_t **)
frame->
data, &written);
77 data = shine_flush(
s->shine, &written);
85 memcpy(
s->buffer +
s->buffer_index,
data, written);
86 s->buffer_index += written;
93 if (
s->buffer_index < 4 || !
s->afq.frame_count)
100 len = hdr.frame_size;
101 if (len <= s->buffer_index) {
104 memcpy(avpkt->
data,
s->buffer,
len);
105 s->buffer_index -=
len;
106 memmove(
s->buffer,
s->buffer +
len,
s->buffer_index);
121 shine_close(
s->shine);
126 44100, 48000, 32000, 0
130 .
p.
name =
"libshine",
147 .p.wrapper_name =
"libshine",
int frame_size
Number of samples per channel in an audio frame.
static av_cold int libshine_encode_init(AVCodecContext *avctx)
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
void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts, int64_t *duration)
Remove frame(s) from the queue.
#define AV_CHANNEL_LAYOUT_STEREO
int sample_rate
samples per second
void ff_af_queue_close(AudioFrameQueue *afq)
Close AudioFrameQueue.
av_cold void ff_af_queue_init(AVCodecContext *avctx, AudioFrameQueue *afq)
Initialize AudioFrameQueue.
This structure describes decoded (raw) audio or video data.
static av_cold int libshine_encode_close(AVCodecContext *avctx)
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
uint8_t buffer[BUFFER_SIZE]
int nb_channels
Number of channels in this layout.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
AVCodec p
The public AVCodec.
AVChannelLayout ch_layout
Audio channel layout.
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
#define FF_CODEC_ENCODE_CB(func)
int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f)
Add a frame to the queue.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static const int libshine_sample_rates[]
#define CODEC_LONG_NAME(str)
const FFCodec ff_libshine_encoder
int64_t bit_rate
the average bitrate
int(* init)(AVBSFContext *ctx)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
An AVChannelLayout holds information about the channel layout of audio data.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
AVSampleFormat
Audio sample formats.
const char * name
Name of the codec implementation.
static int libshine_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
main external API structure.
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define AV_CHANNEL_LAYOUT_MONO
This structure stores compressed data.
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.