aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-06-11 09:36:01 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-06-11 09:36:34 +0200
commit73d5cf8f43786b3a643d9955e4c6499f5b391b81 (patch)
tree8b6435ea549944a7863eda9629341a428a4ccb03 /libavcodec
parent5d199c3ad985eab4500cbfd2d1146ac70197ceac (diff)
parent84d3ff50cd679e0f35f0b7ce2cb2cedd99169959 (diff)
downloadandroid_external_ffmpeg-73d5cf8f43786b3a643d9955e4c6499f5b391b81.tar.gz
android_external_ffmpeg-73d5cf8f43786b3a643d9955e4c6499f5b391b81.tar.bz2
android_external_ffmpeg-73d5cf8f43786b3a643d9955e4c6499f5b391b81.zip
Merge remote-tracking branch 'qatar/master'
* qatar/master: lavc: add a libwavpack encoder wrapper Conflicts: Changelog doc/encoders.texi libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/Makefile1
-rw-r--r--libavcodec/allcodecs.c1
-rw-r--r--libavcodec/libwavpackenc.c194
-rw-r--r--libavcodec/version.h2
4 files changed, 197 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 1aeea281e5..c6cd41b0c6 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -715,6 +715,7 @@ OBJS-$(CONFIG_LIBVPX_VP8_DECODER) += libvpxdec.o
OBJS-$(CONFIG_LIBVPX_VP8_ENCODER) += libvpxenc.o
OBJS-$(CONFIG_LIBVPX_VP9_DECODER) += libvpxdec.o
OBJS-$(CONFIG_LIBVPX_VP9_ENCODER) += libvpxenc.o
+OBJS-$(CONFIG_LIBWAVPACK_ENCODER) += libwavpackenc.o
OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o
OBJS-$(CONFIG_LIBXAVS_ENCODER) += libxavs.o
OBJS-$(CONFIG_LIBXVID_ENCODER) += libxvid.o
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 150359dcef..5cdf7788e5 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -499,6 +499,7 @@ void avcodec_register_all(void)
REGISTER_ENCDEC (LIBVORBIS, libvorbis);
REGISTER_ENCDEC (LIBVPX_VP8, libvpx_vp8);
REGISTER_ENCDEC (LIBVPX_VP9, libvpx_vp9);
+ REGISTER_ENCODER(LIBWAVPACK, libwavpack);
REGISTER_ENCODER(LIBX264, libx264);
REGISTER_ENCODER(LIBX264RGB, libx264rgb);
REGISTER_ENCODER(LIBXAVS, libxavs);
diff --git a/libavcodec/libwavpackenc.c b/libavcodec/libwavpackenc.c
new file mode 100644
index 0000000000..77d98a214f
--- /dev/null
+++ b/libavcodec/libwavpackenc.c
@@ -0,0 +1,194 @@
+/*
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <wavpack/wavpack.h>
+#include <string.h>
+
+#include "libavutil/attributes.h"
+#include "libavutil/opt.h"
+#include "libavutil/samplefmt.h"
+
+#include "audio_frame_queue.h"
+#include "avcodec.h"
+#include "internal.h"
+
+#define WV_DEFAULT_BLOCK_SIZE 32768
+
+typedef struct LibWavpackContext {
+ const AVClass *class;
+ WavpackContext *wv;
+ AudioFrameQueue afq;
+
+ AVPacket *pkt;
+ int user_size;
+
+ int got_output;
+} LibWavpackContext;
+
+static int wavpack_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
+ const AVFrame *frame, int *got_output)
+{
+ LibWavpackContext *s = avctx->priv_data;
+ int ret;
+
+ s->got_output = 0;
+ s->pkt = pkt;
+ s->user_size = pkt->size;
+
+ if (frame) {
+ ret = ff_af_queue_add(&s->afq, frame);
+ if (ret < 0)
+ return ret;
+
+ ret = WavpackPackSamples(s->wv, (int32_t*)frame->data[0], frame->nb_samples);
+ if (!ret) {
+ av_log(avctx, AV_LOG_ERROR, "Error encoding a frame: %s\n",
+ WavpackGetErrorMessage(s->wv));
+ return AVERROR_UNKNOWN;
+ }
+ }
+
+ if (!s->got_output &&
+ (!frame || frame->nb_samples < avctx->frame_size)) {
+ ret = WavpackFlushSamples(s->wv);
+ if (!ret) {
+ av_log(avctx, AV_LOG_ERROR, "Error flushing the encoder: %s\n",
+ WavpackGetErrorMessage(s->wv));
+ return AVERROR_UNKNOWN;
+ }
+ }
+
+ if (s->got_output) {
+ ff_af_queue_remove(&s->afq, avctx->frame_size, &pkt->pts, &pkt->duration);
+ *got_output = 1;
+ }
+
+ return 0;
+}
+
+static int encode_callback(void *id, void *data, int32_t count)
+{
+ AVCodecContext *avctx = id;
+ LibWavpackContext *s = avctx->priv_data;
+ int ret, offset = s->pkt->size;
+
+ if (s->user_size) {
+ if (s->user_size - count < s->pkt->size) {
+ av_log(avctx, AV_LOG_ERROR, "Provided packet too small.\n");
+ return 0;
+ }
+ s->pkt->size += count;
+ } else {
+ ret = av_grow_packet(s->pkt, count);
+ if (ret < 0) {
+ av_log(avctx, AV_LOG_ERROR, "Error allocating output packet.\n");
+ return 0;
+ }
+ }
+
+ memcpy(s->pkt->data + offset, data, count);
+
+ s->got_output = 1;
+
+ return 1;
+}
+
+static av_cold int wavpack_encode_init(AVCodecContext *avctx)
+{
+ LibWavpackContext *s = avctx->priv_data;
+ WavpackConfig config = { 0 };
+ int ret;
+
+ s->wv = WavpackOpenFileOutput(encode_callback, avctx, NULL);
+ if (!s->wv) {
+ av_log(avctx, AV_LOG_ERROR, "Error allocating the encoder.\n");
+ return AVERROR(ENOMEM);
+ }
+
+ if (!avctx->frame_size)
+ avctx->frame_size = WV_DEFAULT_BLOCK_SIZE;
+
+ config.bytes_per_sample = 4;
+ config.bits_per_sample = 32;
+ config.block_samples = avctx->frame_size;
+ config.channel_mask = avctx->channel_layout;
+ config.num_channels = avctx->channels;
+ config.sample_rate = avctx->sample_rate;
+
+ if (avctx->compression_level != FF_COMPRESSION_DEFAULT) {
+ if (avctx->compression_level >= 3) {
+ config.flags |= CONFIG_VERY_HIGH_FLAG;
+
+ if (avctx->compression_level >= 8)
+ config.xmode = 6;
+ else if (avctx->compression_level >= 7)
+ config.xmode = 5;
+ else if (avctx->compression_level >= 6)
+ config.xmode = 4;
+ else if (avctx->compression_level >= 5)
+ config.xmode = 3;
+ else if (avctx->compression_level >= 4)
+ config.xmode = 2;
+ } else if (avctx->compression_level >= 2)
+ config.flags |= CONFIG_HIGH_FLAG;
+ else if (avctx->compression_level < 1)
+ config.flags |= CONFIG_FAST_FLAG;
+ }
+
+ ret = WavpackSetConfiguration(s->wv, &config, -1);
+ if (!ret)
+ goto fail;
+
+ ret = WavpackPackInit(s->wv);
+ if (!ret)
+ goto fail;
+
+ ff_af_queue_init(avctx, &s->afq);
+
+ return 0;
+
+fail:
+ av_log(avctx, AV_LOG_ERROR, "Error configuring the encoder: %s.\n",
+ WavpackGetErrorMessage(s->wv));
+ WavpackCloseFile(s->wv);
+ return AVERROR_UNKNOWN;
+}
+
+static av_cold int wavpack_encode_close(AVCodecContext *avctx)
+{
+ LibWavpackContext *s = avctx->priv_data;
+
+ WavpackCloseFile(s->wv);
+
+ ff_af_queue_close(&s->afq);
+
+ return 0;
+}
+
+AVCodec ff_libwavpack_encoder = {
+ .name = "libwavpack",
+ .type = AVMEDIA_TYPE_AUDIO,
+ .id = AV_CODEC_ID_WAVPACK,
+ .priv_data_size = sizeof(LibWavpackContext),
+ .init = wavpack_encode_init,
+ .encode2 = wavpack_encode_frame,
+ .close = wavpack_encode_close,
+ .capabilities = CODEC_CAP_DELAY | CODEC_CAP_SMALL_LAST_FRAME,
+ .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32,
+ AV_SAMPLE_FMT_NONE },
+};
diff --git a/libavcodec/version.h b/libavcodec/version.h
index e7e2cacef8..c1941ab424 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -29,7 +29,7 @@
#include "libavutil/avutil.h"
#define LIBAVCODEC_VERSION_MAJOR 55
-#define LIBAVCODEC_VERSION_MINOR 15
+#define LIBAVCODEC_VERSION_MINOR 16
#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \