FFmpeg
Loading...
Searching...
No Matches
libshine.c
Go to the documentation of this file.
1/*
2 * Interface to libshine for mp3 encoding
3 * Copyright (c) 2012 Paul B Mahol
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <shine/layer3.h>
23
26#include "audio_frame_queue.h"
27#include "avcodec.h"
28#include "codec_internal.h"
29#include "encode.h"
30#include "mpegaudio.h"
31#include "mpegaudiodecheader.h"
32
33#define BUFFER_SIZE (4096 * 20)
34
35typedef struct SHINEContext {
36 shine_config_t config;
37 shine_t shine;
42
44{
45 SHINEContext *s = avctx->priv_data;
46
47 shine_set_config_mpeg_defaults(&s->config.mpeg);
48 if (avctx->bit_rate)
49 s->config.mpeg.bitr = avctx->bit_rate / 1000;
50 s->config.mpeg.mode = avctx->ch_layout.nb_channels == 2 ? STEREO : MONO;
51 s->config.wave.samplerate = avctx->sample_rate;
52 s->config.wave.channels = avctx->ch_layout.nb_channels == 2 ? PCM_STEREO : PCM_MONO;
53 if (shine_check_config(s->config.wave.samplerate, s->config.mpeg.bitr) < 0) {
54 av_log(avctx, AV_LOG_ERROR, "invalid configuration\n");
55 return AVERROR(EINVAL);
56 }
57 s->shine = shine_initialise(&s->config);
58 if (!s->shine)
59 return AVERROR(ENOMEM);
60 avctx->frame_size = shine_samples_per_pass(s->shine);
61 ff_af_queue_init(avctx, &s->afq);
62 return 0;
63}
64
66 const AVFrame *frame, int *got_packet_ptr)
67{
68 SHINEContext *s = avctx->priv_data;
70 unsigned char *data;
71 int written;
72 int ret, len;
73
74 if (frame)
75 data = shine_encode_buffer(s->shine, (int16_t **)frame->data, &written);
76 else
77 data = shine_flush(s->shine, &written);
78 if (written < 0)
79 return -1;
80 if (written > 0) {
81 if (s->buffer_index + written > BUFFER_SIZE) {
82 av_log(avctx, AV_LOG_ERROR, "internal buffer too small\n");
83 return AVERROR_BUG;
84 }
85 memcpy(s->buffer + s->buffer_index, data, written);
86 s->buffer_index += written;
87 }
88 if (frame) {
89 if ((ret = ff_af_queue_add(&s->afq, frame)) < 0)
90 return ret;
91 }
92
93 if (s->buffer_index < 4 || !s->afq.frame_count)
94 return 0;
95 if (avpriv_mpegaudio_decode_header(&hdr, AV_RB32(s->buffer))) {
96 av_log(avctx, AV_LOG_ERROR, "free format output not supported\n");
97 return -1;
98 }
99
100 len = hdr.frame_size;
101 if (len <= s->buffer_index) {
102 if ((ret = ff_get_encode_buffer(avctx, avpkt, len, 0)))
103 return ret;
104 memcpy(avpkt->data, s->buffer, len);
105 s->buffer_index -= len;
106 memmove(s->buffer, s->buffer + len, s->buffer_index);
107
108 ret = ff_af_queue_remove(&s->afq, avctx->frame_size, avpkt);
109 if (ret < 0)
110 return ret;
111
112 *got_packet_ptr = 1;
113 }
114 return 0;
115}
116
118{
119 SHINEContext *s = avctx->priv_data;
120
121 ff_af_queue_close(&s->afq);
122 shine_close(s->shine);
123 return 0;
124}
125
126static const int libshine_sample_rates[] = {
127 44100, 48000, 32000, 0
128};
129
131 .p.name = "libshine",
132 CODEC_LONG_NAME("libshine MP3 (MPEG audio layer 3)"),
133 .p.type = AVMEDIA_TYPE_AUDIO,
134 .p.id = AV_CODEC_ID_MP3,
135 .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
136 .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE,
137 .priv_data_size = sizeof(SHINEContext),
140 .close = libshine_encode_close,
144 .p.wrapper_name = "libshine",
145};
const FFCodec ff_libshine_encoder
Definition libshine.c:130
av_cold void ff_af_queue_close(AudioFrameQueue *afq)
Close AudioFrameQueue.
av_cold void ff_af_queue_init(AVCodecContext *avctx, AudioFrameQueue *afq)
Initialize AudioFrameQueue.
int ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, AVPacket *pkt)
Remove frame(s) from the queue.
int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f)
Add a frame to the queue.
Libavcodec external API header.
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#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(...)
#define STEREO
Definition cook.c:65
#define MONO
Definition cook.c:64
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
Definition encode.c:106
#define BUFFER_SIZE
#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
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition error.h:52
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition samplefmt.h:64
#define AV_RB32(p)
#define av_cold
Definition attributes.h:117
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
#define BUFFER_SIZE
Definition libshine.c:33
static int libshine_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Definition libshine.c:65
mpeg audio declarations for both encoder and decoder.
int avpriv_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header)
MPEG Audio header decoder.
const char data[16]
Definition mxf.c:149
int nb_channels
Number of channels in this layout.
main external API structure.
Definition avcodec.h:443
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
int64_t bit_rate
the average bitrate
Definition avcodec.h:493
int sample_rate
samples per second
Definition avcodec.h:1040
int frame_size
Number of samples per channel in an audio frame.
Definition avcodec.h:1068
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
uint8_t * data
Definition packet.h:603
AudioFrameQueue afq
Definition libshine.c:40
uint8_t buffer[BUFFER_SIZE]
Definition libshine.c:38
shine_t shine
Definition libshine.c:37
int buffer_index
Definition libshine.c:39
shine_config_t config
Definition libshine.c:36
#define av_log(a,...)
int len