2 * Tracked MOD demuxer (libopenmpt)
3 * Copyright (c) 2016 Josh de Kock
5 * This file is part of FFmpeg.
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.
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.
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
22 #include <libopenmpt/libopenmpt.h>
23 #include <libopenmpt/libopenmpt_stream_callbacks_file.h>
25 #include "libavutil/avstring.h"
26 #include "libavutil/opt.h"
30 typedef struct OpenMPTContext {
32 openmpt_module *module;
42 #define OFFSET(x) offsetof(OpenMPTContext, x)
43 #define A AV_OPT_FLAG_AUDIO_PARAM
44 #define D AV_OPT_FLAG_DECODING_PARAM
45 static const AVOption options[] = {
46 { "sample_rate", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, { .i64 = 48000 }, 1000, INT_MAX, A | D },
47 { "layout", "set channel layout", OFFSET(layout), AV_OPT_TYPE_CHANNEL_LAYOUT, { .i64 = AV_CH_LAYOUT_STEREO }, 0, INT64_MAX, A | D },
48 { "subsong", "set subsong", OFFSET(subsong), AV_OPT_TYPE_INT, { .i64 = -2 }, -2, INT_MAX, A | D, "subsong"},
49 { "all", "all", 0, AV_OPT_TYPE_CONST, { .i64 = -1}, 0, 0, A | D, "subsong" },
50 { "auto", "auto", 0, AV_OPT_TYPE_CONST, { .i64 = -2}, 0, 0, A | D, "subsong" },
54 static void openmpt_logfunc(const char *message, void *userdata)
56 int level = AV_LOG_INFO;
57 if (strstr(message, "ERROR") != NULL) {
60 av_log(userdata, level, "%s\n", message);
63 #define add_meta(s, name, meta) \
65 const char *value = meta; \
66 if (value && value[0]) \
67 av_dict_set(&s->metadata, name, value, 0); \
68 openmpt_free_string(value); \
71 static int read_header_openmpt(AVFormatContext *s)
74 OpenMPTContext *openmpt = s->priv_data;
75 int64_t size = avio_size(s->pb);
77 return AVERROR_INVALIDDATA;
78 char *buf = av_malloc(size);
83 return AVERROR(ENOMEM);
84 size = avio_read(s->pb, buf, size);
86 av_log(s, AV_LOG_ERROR, "Reading input buffer failed.\n");
91 openmpt->module = openmpt_module_create_from_memory(buf, size, openmpt_logfunc, s, NULL);
94 return AVERROR_INVALIDDATA;
96 openmpt->channels = av_get_channel_layout_nb_channels(openmpt->layout);
98 if (openmpt->subsong >= openmpt_module_get_num_subsongs(openmpt->module)) {
99 openmpt_module_destroy(openmpt->module);
100 av_log(s, AV_LOG_ERROR, "Invalid subsong index: %d\n", openmpt->subsong);
101 return AVERROR(EINVAL);
104 if (openmpt->subsong != -2) {
105 if (openmpt->subsong >= 0) {
106 av_dict_set_int(&s->metadata, "track", openmpt->subsong + 1, 0);
108 ret = openmpt_module_select_subsong(openmpt->module, openmpt->subsong);
110 openmpt_module_destroy(openmpt->module);
111 av_log(s, AV_LOG_ERROR, "Could not select requested subsong: %d", openmpt->subsong);
112 return AVERROR(EINVAL);
116 openmpt->duration = openmpt_module_get_duration_seconds(openmpt->module);
118 add_meta(s, "artist", openmpt_module_get_metadata(openmpt->module, "artist"));
119 add_meta(s, "title", openmpt_module_get_metadata(openmpt->module, "title"));
120 add_meta(s, "encoder", openmpt_module_get_metadata(openmpt->module, "tracker"));
121 add_meta(s, "comment", openmpt_module_get_metadata(openmpt->module, "message"));
122 add_meta(s, "date", openmpt_module_get_metadata(openmpt->module, "date"));
124 st = avformat_new_stream(s, NULL);
126 openmpt_module_destroy(openmpt->module);
127 openmpt->module = NULL;
128 return AVERROR(ENOMEM);
130 avpriv_set_pts_info(st, 64, 1, AV_TIME_BASE);
131 st->duration = llrint(openmpt->duration*AV_TIME_BASE);
133 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
134 st->codecpar->codec_id = AV_NE(AV_CODEC_ID_PCM_F32BE, AV_CODEC_ID_PCM_F32LE);
135 st->codecpar->channels = openmpt->channels;
136 st->codecpar->sample_rate = openmpt->sample_rate;
141 #define AUDIO_PKT_SIZE 2048
143 static int read_packet_openmpt(AVFormatContext *s, AVPacket *pkt)
145 OpenMPTContext *openmpt = s->priv_data;
146 int n_samples = AUDIO_PKT_SIZE / (openmpt->channels ? openmpt->channels*4 : 4);
149 if ((ret = av_new_packet(pkt, AUDIO_PKT_SIZE)) < 0)
152 switch (openmpt->channels) {
154 ret = openmpt_module_read_float_mono(openmpt->module, openmpt->sample_rate,
155 n_samples, (float *)pkt->data);
158 ret = openmpt_module_read_interleaved_float_stereo(openmpt->module, openmpt->sample_rate,
159 n_samples, (float *)pkt->data);
162 ret = openmpt_module_read_interleaved_float_quad(openmpt->module, openmpt->sample_rate,
163 n_samples, (float *)pkt->data);
166 av_log(s, AV_LOG_ERROR, "Unsupported number of channels: %d", openmpt->channels);
167 return AVERROR(EINVAL);
175 pkt->size = ret * (openmpt->channels * 4);
180 static int read_close_openmpt(AVFormatContext *s)
182 OpenMPTContext *openmpt = s->priv_data;
183 openmpt_module_destroy(openmpt->module);
184 openmpt->module = NULL;
188 static int read_seek_openmpt(AVFormatContext *s, int stream_idx, int64_t ts, int flags)
190 OpenMPTContext *openmpt = s->priv_data;
191 openmpt_module_set_position_seconds(openmpt->module, (double)ts/AV_TIME_BASE);
195 static const AVClass class_openmpt = {
196 .class_name = "libopenmpt",
197 .item_name = av_default_item_name,
199 .version = LIBAVUTIL_VERSION_INT,
202 AVInputFormat ff_libopenmpt_demuxer = {
203 .name = "libopenmpt",
204 .long_name = NULL_IF_CONFIG_SMALL("Tracker formats (libopenmpt)"),
205 .priv_data_size = sizeof(OpenMPTContext),
206 .read_header = read_header_openmpt,
207 .read_packet = read_packet_openmpt,
208 .read_close = read_close_openmpt,
209 .read_seek = read_seek_openmpt,
210 .priv_class = &class_openmpt,
211 .extensions = "669,amf,ams,dbm,digi,dmf,dsm,far,gdm,imf,it,j2b,m15,mdl,med,mmcmp,mms,mo3,mod,mptm,mt2,mtm,nst,okt,plm,ppm,psm,pt36,ptm,s3m,sfx,sfx2,stk,stm,ult,umx,wow,xm,xpk",