FFmpeg
Loading...
Searching...
No Matches
libshine.c File Reference
#include <shine/layer3.h>
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "audio_frame_queue.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "encode.h"
#include "mpegaudio.h"
#include "mpegaudiodecheader.h"

Go to the source code of this file.

Data Structures

struct  SHINEContext
 

Macros

#define BUFFER_SIZE   (4096 * 20)
 

Functions

static av_cold int libshine_encode_init (AVCodecContext *avctx)
 
static int libshine_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
 
static av_cold int libshine_encode_close (AVCodecContext *avctx)
 

Variables

static const int libshine_sample_rates []
 
const FFCodec ff_libshine_encoder
 

Macro Definition Documentation

◆ BUFFER_SIZE

#define BUFFER_SIZE   (4096 * 20)

Definition at line 33 of file libshine.c.

Function Documentation

◆ libshine_encode_init()

static av_cold int libshine_encode_init ( AVCodecContext * avctx)
static

Definition at line 43 of file libshine.c.

◆ libshine_encode_frame()

static int libshine_encode_frame ( AVCodecContext * avctx,
AVPacket * avpkt,
const AVFrame * frame,
int * got_packet_ptr )
static

Definition at line 65 of file libshine.c.

◆ libshine_encode_close()

static av_cold int libshine_encode_close ( AVCodecContext * avctx)
static

Definition at line 117 of file libshine.c.

Variable Documentation

◆ libshine_sample_rates

const int libshine_sample_rates[]
static
Initial value:
= {
44100, 48000, 32000, 0
}

Definition at line 126 of file libshine.c.

◆ ff_libshine_encoder

const FFCodec ff_libshine_encoder
Initial value:
= {
.p.name = "libshine",
CODEC_LONG_NAME("libshine MP3 (MPEG audio layer 3)"),
.p.type = AVMEDIA_TYPE_AUDIO,
.p.id = AV_CODEC_ID_MP3,
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
.priv_data_size = sizeof(SHINEContext),
.p.wrapper_name = "libshine",
}
#define CODEC_SAMPLERATES_ARRAY(array)
#define CODEC_CH_LAYOUTS(...)
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
#define FF_CODEC_ENCODE_CB(func)
#define CODEC_LONG_NAME(str)
#define CODEC_SAMPLEFMTS(...)
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition codec.h:79
#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_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition codec_id.h:454
#define AV_CHANNEL_LAYOUT_STEREO
#define AV_CHANNEL_LAYOUT_MONO
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition samplefmt.h:64
static av_cold int libshine_encode_init(AVCodecContext *avctx)
Definition libshine.c:43
static const int libshine_sample_rates[]
Definition libshine.c:126
static av_cold int libshine_encode_close(AVCodecContext *avctx)
Definition libshine.c:117
static int libshine_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Definition libshine.c:65

Definition at line 130 of file libshine.c.