FFmpeg
libopenmpt.c
Go to the documentation of this file.
1 /*
2  * Tracked MOD demuxer (libopenmpt)
3  * Copyright (c) 2016 Josh de Kock
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 <libopenmpt/libopenmpt.h>
23 #include <libopenmpt/libopenmpt_stream_callbacks_file.h>
24 #include <libopenmpt/libopenmpt_version.h>
25 /* Shims to support libopenmpt < 0.3.0 (as documented by libopenmpt) */
26 #if !defined(OPENMPT_API_VERSION_MAKE)
27 #define OPENMPT_API_VERSION_MAKE(major, minor, patch) (((major)<<24)|((minor)<<16)|((patch)<<0))
28 #endif
29 #if !defined(OPENMPT_API_VERSION_AT_LEAST)
30 #define OPENMPT_API_VERSION_AT_LEAST(major, minor, patch) (OPENMPT_API_VERSION >= OPENMPT_API_VERSION_MAKE((major), (minor), (patch)))
31 #endif
32 
33 #include "libavutil/avstring.h"
35 #include "libavutil/opt.h"
36 #include "avformat.h"
37 #include "demux.h"
38 #include "internal.h"
39 
40 typedef struct OpenMPTContext {
41  const AVClass *class;
42  openmpt_module *module;
43 
44  double duration;
45  /* options */
48  int subsong;
50 
51 #define OFFSET(x) offsetof(OpenMPTContext, x)
52 #define A AV_OPT_FLAG_AUDIO_PARAM
53 #define D AV_OPT_FLAG_DECODING_PARAM
54 static const AVOption options[] = {
55  { "sample_rate", "set sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT, { .i64 = 48000 }, 1000, INT_MAX, A | D },
56  { "layout", "set channel layout", OFFSET(ch_layout), AV_OPT_TYPE_CHLAYOUT, { .str = "stereo" }, 0, 0, A | D },
57  { "subsong", "set subsong", OFFSET(subsong), AV_OPT_TYPE_INT, { .i64 = -2 }, -2, INT_MAX, A | D, .unit = "subsong"},
58  { "all", "all", 0, AV_OPT_TYPE_CONST, { .i64 = -1}, 0, 0, A | D, .unit = "subsong" },
59  { "auto", "auto", 0, AV_OPT_TYPE_CONST, { .i64 = -2}, 0, 0, A | D, .unit = "subsong" },
60  { NULL }
61 };
62 
63 static void openmpt_logfunc(const char *message, void *userdata)
64 {
65  int level = AV_LOG_INFO;
66  if (strstr(message, "ERROR") != NULL) {
68  }
69  av_log(userdata, level, "%s\n", message);
70 }
71 
72 #define add_meta(s, name, meta) \
73 do { \
74  const char *value = meta; \
75  if (value && value[0]) \
76  av_dict_set(&s->metadata, name, value, 0); \
77  openmpt_free_string(value); \
78 } while(0)
79 
81 {
82  AVStream *st;
83  OpenMPTContext *openmpt = s->priv_data;
84  int64_t size;
85  char *buf;
86 #if OPENMPT_API_VERSION_AT_LEAST(0,3,0)
87  int error;
88 #endif
89  int ret;
90 
91  size = avio_size(s->pb);
92  if (size <= 0)
93  return AVERROR_INVALIDDATA;
94  buf = av_malloc(size);
95  if (!buf)
96  return AVERROR(ENOMEM);
97  size = avio_read(s->pb, buf, size);
98  if (size < 0) {
99  av_log(s, AV_LOG_ERROR, "Reading input buffer failed.\n");
100  av_freep(&buf);
101  return size;
102  }
103 
104 #if OPENMPT_API_VERSION_AT_LEAST(0,3,0)
105  error = OPENMPT_ERROR_OK;
106  openmpt->module = openmpt_module_create_from_memory2(buf, size, openmpt_logfunc, s, NULL, NULL, &error, NULL, NULL);
107  av_freep(&buf);
108  if (!openmpt->module) {
109  if (error == OPENMPT_ERROR_OUT_OF_MEMORY)
110  return AVERROR(ENOMEM);
111  else if (error >= OPENMPT_ERROR_GENERAL)
112  return AVERROR_INVALIDDATA;
113  else
114  return AVERROR_UNKNOWN;
115  }
116 #else
117  openmpt->module = openmpt_module_create_from_memory(buf, size, openmpt_logfunc, s, NULL);
118  av_freep(&buf);
119  if (!openmpt->module)
120  return AVERROR_INVALIDDATA;
121 #endif
122 
123  if (openmpt->subsong >= openmpt_module_get_num_subsongs(openmpt->module)) {
124  av_log(s, AV_LOG_ERROR, "Invalid subsong index: %d\n", openmpt->subsong);
125  return AVERROR(EINVAL);
126  }
127 
128  if (openmpt->subsong != -2) {
129  if (openmpt->subsong >= 0) {
130  av_dict_set_int(&s->metadata, "track", openmpt->subsong + 1, 0);
131  }
132  ret = openmpt_module_select_subsong(openmpt->module, openmpt->subsong);
133  if (!ret){
134  av_log(s, AV_LOG_ERROR, "Could not select requested subsong: %d", openmpt->subsong);
135  return AVERROR(EINVAL);
136  }
137  }
138 
139  openmpt->duration = openmpt_module_get_duration_seconds(openmpt->module);
140 
141  add_meta(s, "artist", openmpt_module_get_metadata(openmpt->module, "artist"));
142  add_meta(s, "title", openmpt_module_get_metadata(openmpt->module, "title"));
143  add_meta(s, "encoder", openmpt_module_get_metadata(openmpt->module, "tracker"));
144  add_meta(s, "comment", openmpt_module_get_metadata(openmpt->module, "message"));
145  add_meta(s, "date", openmpt_module_get_metadata(openmpt->module, "date"));
146 
147  st = avformat_new_stream(s, NULL);
148  if (!st)
149  return AVERROR(ENOMEM);
150  avpriv_set_pts_info(st, 64, 1, AV_TIME_BASE);
151  st->duration = llrint(openmpt->duration*AV_TIME_BASE);
152 
155  st->codecpar->sample_rate = openmpt->sample_rate;
157  if (ret < 0)
158  return ret;
159 
160  return 0;
161 }
162 
163 #define AUDIO_PKT_SIZE 2048
164 
166 {
167  OpenMPTContext *openmpt = s->priv_data;
168  int n_samples = AUDIO_PKT_SIZE / (openmpt->ch_layout.nb_channels ? openmpt->ch_layout.nb_channels*4 : 4);
169  int ret;
170 
171  if ((ret = av_new_packet(pkt, AUDIO_PKT_SIZE)) < 0)
172  return ret;
173 
174  switch (openmpt->ch_layout.nb_channels) {
175  case 1:
176  ret = openmpt_module_read_float_mono(openmpt->module, openmpt->sample_rate,
177  n_samples, (float *)pkt->data);
178  break;
179  case 2:
180  ret = openmpt_module_read_interleaved_float_stereo(openmpt->module, openmpt->sample_rate,
181  n_samples, (float *)pkt->data);
182  break;
183  case 4:
184  ret = openmpt_module_read_interleaved_float_quad(openmpt->module, openmpt->sample_rate,
185  n_samples, (float *)pkt->data);
186  break;
187  default:
188  av_log(s, AV_LOG_ERROR, "Unsupported number of channels: %d", openmpt->ch_layout.nb_channels);
189  return AVERROR(EINVAL);
190  }
191 
192  if (ret < 1) {
193  pkt->size = 0;
194  return AVERROR_EOF;
195  }
196 
197  pkt->size = ret * (openmpt->ch_layout.nb_channels * 4);
198 
199  return 0;
200 }
201 
203 {
204  OpenMPTContext *openmpt = s->priv_data;
205  if (openmpt->module) {
206  openmpt_module_destroy(openmpt->module);
207  openmpt->module = NULL;
208  }
209  return 0;
210 }
211 
212 static int read_seek_openmpt(AVFormatContext *s, int stream_idx, int64_t ts, int flags)
213 {
214  OpenMPTContext *openmpt = s->priv_data;
215  openmpt_module_set_position_seconds(openmpt->module, (double)ts/AV_TIME_BASE);
216  return 0;
217 }
218 
220 {
221  const char *ext;
222  if (p->filename) {
223  ext = strrchr(p->filename, '.');
224  if (ext && strlen(ext + 1) > 0) {
225  ext++; /* skip '.' */
226  if (openmpt_is_extension_supported(ext) == 1)
228  }
229  }
230  return 0;
231 }
232 
233 static int read_probe_openmpt(const AVProbeData *p)
234 {
235 #if OPENMPT_API_VERSION_AT_LEAST(0,3,0)
236  int probe_result;
237  if (p->buf && p->buf_size > 0) {
238  probe_result = openmpt_probe_file_header_without_filesize(
239  OPENMPT_PROBE_FILE_HEADER_FLAGS_DEFAULT,
240  p->buf, p->buf_size,
242  if (probe_result == OPENMPT_PROBE_FILE_HEADER_RESULT_SUCCESS) {
243  /* As probing here relies on code external to FFmpeg, do not return
244  * AVPROBE_SCORE_MAX in order to reduce the impact in the rare
245  * cases of false positives.
246  */
247  return AVPROBE_SCORE_MIME + 1;
248  } else if (probe_result == OPENMPT_PROBE_FILE_HEADER_RESULT_WANTMOREDATA) {
249  if (probe_openmpt_extension(p) > 0) {
250  return AVPROBE_SCORE_RETRY;
251  } else {
252  if (p->buf_size >= openmpt_probe_file_header_get_recommended_size()) {
253  /* We have already received the recommended amount of data
254  * and still cannot decide. Return a rather low score.
255  */
256  return AVPROBE_SCORE_RETRY / 2;
257  } else {
258  /* The file extension is unknown and we have very few data
259  * bytes available. libopenmpt cannot decide anything here,
260  * and returning any score > 0 would result in successful
261  * probing of random data.
262  */
263  return 0;
264  }
265  }
266  } else if (probe_result == OPENMPT_PROBE_FILE_HEADER_RESULT_FAILURE) {
267  return 0;
268  }
269  }
270 #endif
271  /* for older libopenmpt, fall back to file extension probing */
272  return probe_openmpt_extension(p);
273 }
274 
275 static const AVClass class_openmpt = {
276  .class_name = "libopenmpt",
277  .item_name = av_default_item_name,
278  .option = options,
279  .version = LIBAVUTIL_VERSION_INT,
280 };
281 
283  .p.name = "libopenmpt",
284  .p.long_name = NULL_IF_CONFIG_SMALL("Tracker formats (libopenmpt)"),
285  .p.priv_class = &class_openmpt,
286 #if OPENMPT_API_VERSION_AT_LEAST(0,3,0)
287  .p.extensions = "669,amf,ams,dbm,digi,dmf,dsm,dtm,far,gdm,ice,imf,it,j2b,m15,mdl,med,mmcmp,mms,mo3,mod,mptm,mt2,mtm,nst,okt,plm,ppm,psm,pt36,ptm,s3m,sfx,sfx2,st26,stk,stm,stp,ult,umx,wow,xm,xpk",
288 #else
289  .p.extensions = "669,amf,ams,dbm,digi,dmf,dsm,far,gdm,ice,imf,it,j2b,m15,mdl,med,mmcmp,mms,mo3,mod,mptm,mt2,mtm,nst,okt,plm,ppm,psm,pt36,ptm,s3m,sfx,sfx2,st26,stk,stm,ult,umx,wow,xm,xpk",
290 #endif
291  .priv_data_size = sizeof(OpenMPTContext),
292  .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
298 };
error
static void error(const char *err)
Definition: target_bsf_fuzzer.c:31
openmpt_logfunc
static void openmpt_logfunc(const char *message, void *userdata)
Definition: libopenmpt.c:63
AV_CODEC_ID_PCM_F32BE
@ AV_CODEC_ID_PCM_F32BE
Definition: codec_id.h:348
level
uint8_t level
Definition: svq3.c:204
AVERROR
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
opt.h
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
OpenMPTContext::module
openmpt_module * module
Definition: libopenmpt.c:42
message
Definition: api-threadmessage-test.c:46
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
read_probe_openmpt
static int read_probe_openmpt(const AVProbeData *p)
Definition: libopenmpt.c:233
OpenMPTContext::duration
double duration
Definition: libopenmpt.c:44
AVPacket::data
uint8_t * data
Definition: packet.h:522
AVOption
AVOption.
Definition: opt.h:346
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:454
AVERROR_UNKNOWN
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:73
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:313
avio_size
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:322
sample_rate
sample_rate
Definition: ffmpeg_filter.c:409
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:30
OpenMPTContext::subsong
int subsong
Definition: libopenmpt.c:48
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: avformat.c:853
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:151
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:143
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:802
read_packet_openmpt
static int read_packet_openmpt(AVFormatContext *s, AVPacket *pkt)
Definition: libopenmpt.c:165
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:41
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_NE
#define AV_NE(be, le)
Definition: macros.h:33
av_new_packet
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:98
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:553
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:453
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
OFFSET
#define OFFSET(x)
Definition: libopenmpt.c:51
AVProbeData::filename
const char * filename
Definition: avformat.h:452
AUDIO_PKT_SIZE
#define AUDIO_PKT_SIZE
Definition: libopenmpt.c:163
FF_INFMT_FLAG_INIT_CLEANUP
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition: demux.h:35
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
OpenMPTContext::ch_layout
AVChannelLayout ch_layout
Definition: libopenmpt.c:47
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:766
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
read_header_openmpt
static int read_header_openmpt(AVFormatContext *s)
Definition: libopenmpt.c:80
probe_openmpt_extension
static int probe_openmpt_extension(const AVProbeData *p)
Definition: libopenmpt.c:219
AV_OPT_TYPE_CHLAYOUT
@ AV_OPT_TYPE_CHLAYOUT
Definition: opt.h:252
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
AVPROBE_SCORE_EXTENSION
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:461
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
AVPacket::size
int size
Definition: packet.h:523
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:106
AVChannelLayout
An AVChannelLayout holds information about the channel layout of audio data.
Definition: channel_layout.h:303
size
int size
Definition: twinvq_data.h:10344
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:41
ff_libopenmpt_demuxer
const FFInputFormat ff_libopenmpt_demuxer
Definition: libopenmpt.c:282
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:191
read_close_openmpt
static int read_close_openmpt(AVFormatContext *s)
Definition: libopenmpt.c:202
AVPROBE_SCORE_MIME
#define AVPROBE_SCORE_MIME
score for file mime type
Definition: avformat.h:462
AV_TIME_BASE
#define AV_TIME_BASE
Internal time base represented as integer.
Definition: avutil.h:254
D
#define D
Definition: libopenmpt.c:53
AVPROBE_SCORE_RETRY
#define AVPROBE_SCORE_RETRY
Definition: avformat.h:458
OpenMPTContext
Definition: libopenmpt.c:40
demux.h
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:743
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
avformat.h
channel_layout.h
class_openmpt
static const AVClass class_openmpt
Definition: libopenmpt.c:275
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:611
A
#define A
Definition: libopenmpt.c:52
av_channel_layout_copy
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
Definition: channel_layout.c:439
av_dict_set_int
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set() that converts the value to a string and stores it.
Definition: dict.c:167
read_probe
static int read_probe(const AVProbeData *p)
Definition: cdg.c:30
llrint
#define llrint(x)
Definition: libm.h:394
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:499
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
read_seek_openmpt
static int read_seek_openmpt(AVFormatContext *s, int stream_idx, int64_t ts, int flags)
Definition: libopenmpt.c:212
FFInputFormat
Definition: demux.h:37
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:474
AV_CODEC_ID_PCM_F32LE
@ AV_CODEC_ID_PCM_F32LE
Definition: codec_id.h:349
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
avstring.h
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:244
OpenMPTContext::sample_rate
int sample_rate
Definition: libopenmpt.c:46
options
static const AVOption options[]
Definition: libopenmpt.c:54
add_meta
#define add_meta(s, name, meta)
Definition: libopenmpt.c:72