2004-04-11 16:26:04 +02:00
|
|
|
/*
|
2008-05-14 20:01:51 +02:00
|
|
|
* Copyright (C) 2004 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2004-04-11 16:26:04 +02:00
|
|
|
|
|
|
|
// #include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
// #include <unistd.h>
|
2006-08-31 23:26:02 +02:00
|
|
|
#include <limits.h>
|
2009-03-19 04:25:12 +01:00
|
|
|
#include <stdbool.h>
|
2010-11-05 11:50:11 +01:00
|
|
|
#include <string.h>
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2012-01-28 12:41:36 +01:00
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include <libavformat/avio.h>
|
|
|
|
#include <libavutil/avutil.h>
|
|
|
|
#include <libavutil/avstring.h>
|
|
|
|
#include <libavutil/mathematics.h>
|
|
|
|
#include <libavutil/opt.h>
|
|
|
|
|
2004-04-11 16:26:04 +02:00
|
|
|
#include "config.h"
|
2008-04-16 06:11:12 +02:00
|
|
|
#include "options.h"
|
2004-04-11 16:26:04 +02:00
|
|
|
#include "mp_msg.h"
|
2008-05-10 21:29:38 +02:00
|
|
|
#include "av_opts.h"
|
2010-05-19 12:44:37 +02:00
|
|
|
#include "bstr.h"
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2007-03-15 19:36:36 +01:00
|
|
|
#include "stream/stream.h"
|
2010-02-18 01:18:50 +01:00
|
|
|
#include "aviprint.h"
|
2004-04-11 16:26:04 +02:00
|
|
|
#include "demuxer.h"
|
|
|
|
#include "stheader.h"
|
2006-08-31 00:25:40 +02:00
|
|
|
#include "m_option.h"
|
2011-01-26 18:40:52 +01:00
|
|
|
#include "sub/sub.h"
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2008-04-09 02:46:21 +02:00
|
|
|
#include "mp_taglists.h"
|
|
|
|
|
2010-03-22 20:38:42 +01:00
|
|
|
#define INITIAL_PROBE_SIZE STREAM_BUFFER_SIZE
|
|
|
|
#define SMALL_MAX_PROBE_SIZE (32 * 1024)
|
2011-07-03 14:42:04 +02:00
|
|
|
#define PROBE_BUF_SIZE (2 * 1024 * 1024)
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2007-12-02 22:26:23 +01:00
|
|
|
const m_option_t lavfdopts_conf[] = {
|
2010-04-23 21:08:18 +02:00
|
|
|
OPT_INTRANGE("probesize", lavfdopts.probesize, 0, 32, INT_MAX),
|
|
|
|
OPT_STRING("format", lavfdopts.format, 0),
|
|
|
|
OPT_INTRANGE("analyzeduration", lavfdopts.analyzeduration, 0, 0, INT_MAX),
|
|
|
|
OPT_STRING("cryptokey", lavfdopts.cryptokey, 0),
|
|
|
|
OPT_STRING("o", lavfdopts.avopt, 0),
|
|
|
|
{NULL, NULL, 0, 0, 0, 0, NULL}
|
2006-08-31 00:25:40 +02:00
|
|
|
};
|
|
|
|
|
2007-12-22 17:22:54 +01:00
|
|
|
#define BIO_BUFFER_SIZE 32768
|
2006-06-21 21:24:17 +02:00
|
|
|
|
2010-04-23 22:50:34 +02:00
|
|
|
typedef struct lavf_priv {
|
2004-04-11 16:26:04 +02:00
|
|
|
AVInputFormat *avif;
|
|
|
|
AVFormatContext *avfc;
|
2011-12-22 01:06:52 +01:00
|
|
|
AVIOContext *pb;
|
2010-02-12 21:38:29 +01:00
|
|
|
uint8_t buffer[BIO_BUFFER_SIZE];
|
2004-04-11 16:26:04 +02:00
|
|
|
int audio_streams;
|
|
|
|
int video_streams;
|
2007-07-13 23:15:24 +02:00
|
|
|
int sub_streams;
|
2004-04-11 19:20:52 +02:00
|
|
|
int64_t last_pts;
|
2006-06-20 21:57:16 +02:00
|
|
|
int astreams[MAX_A_STREAMS];
|
2006-11-21 00:31:01 +01:00
|
|
|
int vstreams[MAX_V_STREAMS];
|
2007-07-13 23:15:24 +02:00
|
|
|
int sstreams[MAX_S_STREAMS];
|
2007-10-27 21:12:59 +02:00
|
|
|
int cur_program;
|
2010-10-04 20:12:36 +02:00
|
|
|
int nb_streams_last;
|
2010-11-06 02:39:49 +01:00
|
|
|
bool internet_radio_hack;
|
2010-11-06 22:17:16 +01:00
|
|
|
bool use_dts;
|
2010-11-10 06:17:51 +01:00
|
|
|
bool seek_by_bytes;
|
|
|
|
int bitrate;
|
2011-07-03 14:42:04 +02:00
|
|
|
} lavf_priv_t;
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static int mp_read(void *opaque, uint8_t *buf, int size)
|
|
|
|
{
|
2010-04-23 22:50:34 +02:00
|
|
|
struct demuxer *demuxer = opaque;
|
|
|
|
struct stream *stream = demuxer->stream;
|
2004-04-11 16:51:10 +02:00
|
|
|
int ret;
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
ret = stream_read(stream, buf, size);
|
2004-04-11 17:04:54 +02:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_DBG2,
|
|
|
|
"%d=mp_read(%p, %p, %d), pos: %"PRId64", eof:%d\n",
|
2010-06-05 18:14:56 +02:00
|
|
|
ret, stream, buf, size, stream_tell(stream), stream->eof);
|
2004-04-11 16:51:10 +02:00
|
|
|
return ret;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static int64_t mp_seek(void *opaque, int64_t pos, int whence)
|
|
|
|
{
|
2010-04-23 22:50:34 +02:00
|
|
|
struct demuxer *demuxer = opaque;
|
|
|
|
struct stream *stream = demuxer->stream;
|
2008-10-03 16:54:22 +02:00
|
|
|
int64_t current_pos;
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_DBG2, "mp_seek(%p, %"PRId64", %d)\n",
|
|
|
|
stream, pos, whence);
|
|
|
|
if (whence == SEEK_CUR)
|
|
|
|
pos += stream_tell(stream);
|
|
|
|
else if (whence == SEEK_END && stream->end_pos > 0)
|
2004-04-11 16:26:04 +02:00
|
|
|
pos += stream->end_pos;
|
2011-07-03 14:42:04 +02:00
|
|
|
else if (whence == SEEK_SET)
|
2007-03-04 17:23:18 +01:00
|
|
|
pos += stream->start_pos;
|
2012-02-26 04:53:13 +01:00
|
|
|
else if (whence == AVSEEK_SIZE && stream->end_pos > 0) {
|
|
|
|
off_t size;
|
|
|
|
if (stream_control(stream, STREAM_CTRL_GET_SIZE, &size) == STREAM_OK)
|
|
|
|
return size;
|
2007-08-20 11:27:47 +02:00
|
|
|
return stream->end_pos - stream->start_pos;
|
2012-02-26 04:53:13 +01:00
|
|
|
} else
|
2004-04-11 16:26:04 +02:00
|
|
|
return -1;
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
if (pos < 0)
|
2007-08-19 23:22:27 +02:00
|
|
|
return -1;
|
2008-08-13 02:01:31 +02:00
|
|
|
current_pos = stream_tell(stream);
|
2011-07-03 14:42:04 +02:00
|
|
|
if (stream_seek(stream, pos) == 0) {
|
2008-08-13 02:01:31 +02:00
|
|
|
stream_reset(stream);
|
|
|
|
stream_seek(stream, current_pos);
|
2004-04-11 16:26:04 +02:00
|
|
|
return -1;
|
2008-08-13 02:01:31 +02:00
|
|
|
}
|
2004-04-11 17:04:54 +02:00
|
|
|
|
2007-03-04 17:23:18 +01:00
|
|
|
return pos - stream->start_pos;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
|
|
|
|
2010-04-23 22:50:34 +02:00
|
|
|
static int64_t mp_read_seek(void *opaque, int stream_idx, int64_t ts, int flags)
|
|
|
|
{
|
|
|
|
struct demuxer *demuxer = opaque;
|
|
|
|
struct stream *stream = demuxer->stream;
|
|
|
|
struct lavf_priv *priv = demuxer->priv;
|
|
|
|
|
|
|
|
AVStream *st = priv->avfc->streams[stream_idx];
|
|
|
|
double pts = (double)ts * st->time_base.num / st->time_base.den;
|
|
|
|
int ret = stream_control(stream, STREAM_CTRL_SEEK_TO_TIME, &pts);
|
|
|
|
if (ret < 0)
|
|
|
|
ret = AVERROR(ENOSYS);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static void list_formats(void)
|
|
|
|
{
|
2007-02-06 23:15:20 +01:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, "Available lavf input formats:\n");
|
2010-11-06 03:00:10 +01:00
|
|
|
AVInputFormat *fmt = NULL;
|
2011-07-07 23:41:42 +02:00
|
|
|
while ((fmt = av_iformat_next(fmt)))
|
2007-02-06 23:15:20 +01:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, "%15s : %s\n", fmt->name, fmt->long_name);
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static int lavf_check_file(demuxer_t *demuxer)
|
|
|
|
{
|
2010-04-23 21:08:18 +02:00
|
|
|
struct MPOpts *opts = demuxer->opts;
|
|
|
|
struct lavfdopts *lavfdopts = &opts->lavfdopts;
|
2004-04-11 16:26:04 +02:00
|
|
|
AVProbeData avpd;
|
|
|
|
lavf_priv_t *priv;
|
2010-02-12 21:38:29 +01:00
|
|
|
int probe_data_size = 0;
|
|
|
|
int read_size = INITIAL_PROBE_SIZE;
|
2010-05-01 15:50:49 +02:00
|
|
|
int score;
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
if (!demuxer->priv)
|
|
|
|
demuxer->priv = calloc(sizeof(lavf_priv_t), 1);
|
|
|
|
priv = demuxer->priv;
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2010-04-23 21:57:25 +02:00
|
|
|
char *format = lavfdopts->format;
|
|
|
|
if (!format)
|
|
|
|
format = demuxer->stream->lavf_type;
|
|
|
|
if (format) {
|
|
|
|
if (strcmp(format, "help") == 0) {
|
2011-07-03 14:42:04 +02:00
|
|
|
list_formats();
|
|
|
|
return 0;
|
2007-02-06 23:15:20 +01:00
|
|
|
}
|
2010-04-23 21:57:25 +02:00
|
|
|
priv->avif = av_find_input_format(format);
|
2007-02-06 23:15:20 +01:00
|
|
|
if (!priv->avif) {
|
2010-04-23 21:57:25 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_FATAL, "Unknown lavf format %s\n", format);
|
2007-02-06 23:15:20 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, "Forced lavf %s demuxer\n",
|
|
|
|
priv->avif->long_name);
|
2007-02-06 23:15:20 +01:00
|
|
|
return DEMUXER_TYPE_LAVF;
|
|
|
|
}
|
2009-06-01 11:39:02 +02:00
|
|
|
|
2010-02-12 21:38:29 +01:00
|
|
|
avpd.buf = av_mallocz(FFMAX(BIO_BUFFER_SIZE, PROBE_BUF_SIZE) +
|
|
|
|
FF_INPUT_BUFFER_PADDING_SIZE);
|
|
|
|
do {
|
2011-07-03 14:42:04 +02:00
|
|
|
read_size = stream_read(demuxer->stream, avpd.buf + probe_data_size,
|
|
|
|
read_size);
|
|
|
|
if (read_size < 0) {
|
2010-03-22 20:39:43 +01:00
|
|
|
av_free(avpd.buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
probe_data_size += read_size;
|
2011-07-03 14:42:04 +02:00
|
|
|
avpd.filename = demuxer->stream->url;
|
2010-06-29 16:48:54 +02:00
|
|
|
if (!avpd.filename) {
|
|
|
|
mp_msg(MSGT_DEMUX, MSGL_WARN, "Stream url is not set!\n");
|
|
|
|
avpd.filename = "";
|
|
|
|
}
|
2010-03-22 20:39:43 +01:00
|
|
|
if (!strncmp(avpd.filename, "ffmpeg://", 9))
|
|
|
|
avpd.filename += 9;
|
2011-07-03 14:42:04 +02:00
|
|
|
avpd.buf_size = probe_data_size;
|
2010-03-22 20:39:43 +01:00
|
|
|
|
2010-05-01 15:50:49 +02:00
|
|
|
score = 0;
|
2011-07-03 14:42:04 +02:00
|
|
|
priv->avif = av_probe_input_format2(&avpd, probe_data_size > 0, &score);
|
|
|
|
read_size = FFMIN(2 * read_size, PROBE_BUF_SIZE - probe_data_size);
|
2010-03-22 20:38:42 +01:00
|
|
|
} while ((demuxer->desc->type != DEMUXER_TYPE_LAVF_PREFERRED ||
|
|
|
|
probe_data_size < SMALL_MAX_PROBE_SIZE) &&
|
2010-05-01 17:38:37 +02:00
|
|
|
score <= AVPROBE_SCORE_MAX / 4 &&
|
2010-05-01 15:50:49 +02:00
|
|
|
read_size > 0 && probe_data_size < PROBE_BUF_SIZE);
|
2010-02-12 21:38:29 +01:00
|
|
|
av_free(avpd.buf);
|
|
|
|
|
2011-01-21 21:52:15 +01:00
|
|
|
if (!priv->avif || score <= AVPROBE_SCORE_MAX / 4) {
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_V,
|
|
|
|
"LAVF_check: no clue about this gibberish!\n");
|
2004-04-11 16:26:04 +02:00
|
|
|
return 0;
|
2011-07-03 14:42:04 +02:00
|
|
|
} else
|
|
|
|
mp_msg(MSGT_HEADER, MSGL_V, "LAVF_check: %s\n", priv->avif->long_name);
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2010-11-10 14:38:36 +01:00
|
|
|
demuxer->filetype = priv->avif->long_name;
|
|
|
|
if (!demuxer->filetype)
|
|
|
|
demuxer->filetype = priv->avif->name;
|
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
return DEMUXER_TYPE_LAVF;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
2007-04-14 12:03:42 +02:00
|
|
|
|
2010-11-05 11:50:11 +01:00
|
|
|
static bool matches_avinputformat_name(struct lavf_priv *priv,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
const char *avifname = priv->avif->name;
|
|
|
|
while (1) {
|
|
|
|
const char *next = strchr(avifname, ',');
|
|
|
|
if (!next)
|
|
|
|
return !strcmp(avifname, name);
|
|
|
|
int len = next - avifname;
|
|
|
|
if (len == strlen(name) && !memcmp(avifname, name, len))
|
|
|
|
return true;
|
|
|
|
avifname = next + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-08 17:02:42 +01:00
|
|
|
/* formats for which an internal demuxer is preferred */
|
|
|
|
static const char * const preferred_internal[] = {
|
|
|
|
/* lavf Matroska demuxer doesn't support ordered chapters and fails
|
|
|
|
* for more files */
|
|
|
|
"matroska",
|
|
|
|
/* lavf gives neither pts nor dts for some video frames in .rm */
|
|
|
|
"rm",
|
2007-04-14 12:03:42 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static int lavf_check_preferred_file(demuxer_t *demuxer)
|
|
|
|
{
|
2007-04-14 12:03:42 +02:00
|
|
|
if (lavf_check_file(demuxer)) {
|
2010-11-05 11:50:11 +01:00
|
|
|
const char * const *p;
|
2007-04-14 12:03:42 +02:00
|
|
|
lavf_priv_t *priv = demuxer->priv;
|
2010-11-08 17:02:42 +01:00
|
|
|
for (p = preferred_internal; *p; p++)
|
2010-11-05 11:50:11 +01:00
|
|
|
if (matches_avinputformat_name(priv, *p))
|
2010-11-08 17:02:42 +01:00
|
|
|
return 0;
|
2010-11-17 20:47:56 +01:00
|
|
|
return DEMUXER_TYPE_LAVF_PREFERRED;
|
2007-04-14 12:03:42 +02:00
|
|
|
}
|
2010-11-17 20:47:56 +01:00
|
|
|
return 0;
|
2007-04-14 12:03:42 +02:00
|
|
|
}
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static uint8_t char2int(char c)
|
|
|
|
{
|
2007-10-14 14:11:28 +02:00
|
|
|
if (c >= '0' && c <= '9') return c - '0';
|
|
|
|
if (c >= 'a' && c <= 'f') return c - 'a' + 10;
|
|
|
|
if (c >= 'A' && c <= 'F') return c - 'A' + 10;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static void parse_cryptokey(AVFormatContext *avfc, const char *str)
|
|
|
|
{
|
2007-10-14 14:11:28 +02:00
|
|
|
int len = strlen(str) / 2;
|
|
|
|
uint8_t *key = av_mallocz(len);
|
|
|
|
int i;
|
|
|
|
avfc->keylen = len;
|
|
|
|
avfc->key = key;
|
|
|
|
for (i = 0; i < len; i++, str += 2)
|
|
|
|
*key++ = (char2int(str[0]) << 4) | char2int(str[1]);
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static void handle_stream(demuxer_t *demuxer, AVFormatContext *avfc, int i)
|
|
|
|
{
|
|
|
|
lavf_priv_t *priv = demuxer->priv;
|
|
|
|
AVStream *st = avfc->streams[i];
|
|
|
|
AVCodecContext *codec = st->codec;
|
2010-05-04 00:45:00 +02:00
|
|
|
char *stream_type = NULL;
|
|
|
|
int stream_id;
|
2011-12-22 01:06:52 +01:00
|
|
|
AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
|
|
|
|
AVDictionaryEntry *title = av_dict_get(st->metadata, "title", NULL, 0);
|
2011-08-10 21:52:35 +02:00
|
|
|
// Don't use native MPEG codec tag values with our generic tag tables.
|
|
|
|
// May contain for example value 3 for MP3, which we'd map to PCM audio.
|
|
|
|
if (matches_avinputformat_name(priv, "mpeg") ||
|
|
|
|
matches_avinputformat_name(priv, "mpegts"))
|
|
|
|
codec->codec_tag = 0;
|
2012-02-01 17:34:51 +01:00
|
|
|
int override_tag = mp_taglist_override(codec->codec_id);
|
2009-08-31 00:51:52 +02:00
|
|
|
// For some formats (like PCM) always trust CODEC_ID_* more than codec_tag
|
|
|
|
if (override_tag)
|
|
|
|
codec->codec_tag = override_tag;
|
2006-12-10 01:50:38 +01:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
switch (codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_AUDIO: {
|
|
|
|
WAVEFORMATEX *wf;
|
|
|
|
sh_audio_t *sh_audio;
|
|
|
|
sh_audio = new_sh_audio_aid(demuxer, i, priv->audio_streams);
|
|
|
|
if (!sh_audio)
|
2007-10-27 21:00:07 +02:00
|
|
|
break;
|
2011-07-03 14:42:04 +02:00
|
|
|
stream_type = "audio";
|
|
|
|
priv->astreams[priv->audio_streams] = i;
|
|
|
|
wf = calloc(sizeof(*wf) + codec->extradata_size, 1);
|
|
|
|
// mp4a tag is used for all mp4 files no matter what they actually contain
|
|
|
|
if (codec->codec_tag == MKTAG('m', 'p', '4', 'a'))
|
|
|
|
codec->codec_tag = 0;
|
|
|
|
if (!codec->codec_tag)
|
2012-02-01 17:34:51 +01:00
|
|
|
codec->codec_tag = mp_taglist_audio(codec->codec_id);
|
2011-07-03 14:42:04 +02:00
|
|
|
wf->wFormatTag = codec->codec_tag;
|
|
|
|
wf->nChannels = codec->channels;
|
|
|
|
wf->nSamplesPerSec = codec->sample_rate;
|
|
|
|
wf->nAvgBytesPerSec = codec->bit_rate / 8;
|
|
|
|
wf->nBlockAlign = codec->block_align ? codec->block_align : 1;
|
|
|
|
wf->wBitsPerSample = codec->bits_per_coded_sample;
|
|
|
|
wf->cbSize = codec->extradata_size;
|
|
|
|
if (codec->extradata_size)
|
|
|
|
memcpy(wf + 1, codec->extradata, codec->extradata_size);
|
|
|
|
sh_audio->wf = wf;
|
|
|
|
sh_audio->audio.dwSampleSize = codec->block_align;
|
|
|
|
if (codec->frame_size && codec->sample_rate) {
|
|
|
|
sh_audio->audio.dwScale = codec->frame_size;
|
|
|
|
sh_audio->audio.dwRate = codec->sample_rate;
|
|
|
|
} else {
|
|
|
|
sh_audio->audio.dwScale = codec->block_align ? codec->block_align * 8 : 8;
|
|
|
|
sh_audio->audio.dwRate = codec->bit_rate;
|
2007-10-27 21:00:07 +02:00
|
|
|
}
|
2011-08-10 21:52:35 +02:00
|
|
|
int g = av_gcd(sh_audio->audio.dwScale, sh_audio->audio.dwRate);
|
2011-07-03 14:42:04 +02:00
|
|
|
sh_audio->audio.dwScale /= g;
|
|
|
|
sh_audio->audio.dwRate /= g;
|
|
|
|
// printf("sca:%d rat:%d fs:%d sr:%d ba:%d\n", sh_audio->audio.dwScale, sh_audio->audio.dwRate, codec->frame_size, codec->sample_rate, codec->block_align);
|
|
|
|
sh_audio->ds = demuxer->audio;
|
|
|
|
sh_audio->format = codec->codec_tag;
|
|
|
|
sh_audio->channels = codec->channels;
|
|
|
|
sh_audio->samplerate = codec->sample_rate;
|
|
|
|
sh_audio->i_bps = codec->bit_rate / 8;
|
|
|
|
switch (codec->codec_id) {
|
|
|
|
case CODEC_ID_PCM_S8:
|
|
|
|
case CODEC_ID_PCM_U8:
|
|
|
|
sh_audio->samplesize = 1;
|
|
|
|
break;
|
|
|
|
case CODEC_ID_PCM_S16LE:
|
|
|
|
case CODEC_ID_PCM_S16BE:
|
|
|
|
case CODEC_ID_PCM_U16LE:
|
|
|
|
case CODEC_ID_PCM_U16BE:
|
|
|
|
sh_audio->samplesize = 2;
|
|
|
|
break;
|
|
|
|
case CODEC_ID_PCM_ALAW:
|
|
|
|
sh_audio->format = 0x6;
|
|
|
|
break;
|
|
|
|
case CODEC_ID_PCM_MULAW:
|
|
|
|
sh_audio->format = 0x7;
|
2007-10-27 21:00:07 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-07-03 19:41:46 +02:00
|
|
|
if (title && title->value) {
|
|
|
|
sh_audio->title = talloc_strdup(sh_audio, title->value);
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AID_%d_NAME=%s\n",
|
|
|
|
priv->audio_streams, title->value);
|
2011-07-03 19:41:46 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
if (lang && lang->value) {
|
|
|
|
sh_audio->lang = talloc_strdup(sh_audio, lang->value);
|
|
|
|
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AID_%d_LANG=%s\n",
|
|
|
|
priv->audio_streams, sh_audio->lang);
|
|
|
|
}
|
|
|
|
if (st->disposition & AV_DISPOSITION_DEFAULT)
|
|
|
|
sh_audio->default_track = 1;
|
|
|
|
if (mp_msg_test(MSGT_HEADER, MSGL_V))
|
|
|
|
print_wave_header(sh_audio->wf, MSGL_V);
|
|
|
|
st->discard = AVDISCARD_ALL;
|
|
|
|
stream_id = priv->audio_streams++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AVMEDIA_TYPE_VIDEO: {
|
|
|
|
sh_video_t *sh_video;
|
|
|
|
BITMAPINFOHEADER *bih;
|
|
|
|
sh_video = new_sh_video_vid(demuxer, i, priv->video_streams);
|
|
|
|
if (!sh_video)
|
2007-10-27 21:00:07 +02:00
|
|
|
break;
|
2011-07-03 14:42:04 +02:00
|
|
|
stream_type = "video";
|
|
|
|
priv->vstreams[priv->video_streams] = i;
|
|
|
|
bih = calloc(sizeof(*bih) + codec->extradata_size, 1);
|
|
|
|
|
|
|
|
if (codec->codec_id == CODEC_ID_RAWVIDEO) {
|
|
|
|
switch (codec->pix_fmt) {
|
|
|
|
case PIX_FMT_RGB24:
|
|
|
|
codec->codec_tag = MKTAG(24, 'B', 'G', 'R');
|
|
|
|
case PIX_FMT_BGR24:
|
|
|
|
codec->codec_tag = MKTAG(24, 'R', 'G', 'B');
|
|
|
|
}
|
2011-10-18 05:35:31 +02:00
|
|
|
if (!codec->codec_tag)
|
|
|
|
codec->codec_tag = avcodec_pix_fmt_to_codec_tag(codec->pix_fmt);
|
2011-07-03 14:42:04 +02:00
|
|
|
}
|
|
|
|
if (!codec->codec_tag)
|
2012-02-01 17:34:51 +01:00
|
|
|
codec->codec_tag = mp_taglist_video(codec->codec_id);
|
2011-07-03 14:42:04 +02:00
|
|
|
bih->biSize = sizeof(*bih) + codec->extradata_size;
|
|
|
|
bih->biWidth = codec->width;
|
|
|
|
bih->biHeight = codec->height;
|
|
|
|
bih->biBitCount = codec->bits_per_coded_sample;
|
|
|
|
bih->biSizeImage = bih->biWidth * bih->biHeight * bih->biBitCount / 8;
|
|
|
|
bih->biCompression = codec->codec_tag;
|
|
|
|
sh_video->bih = bih;
|
|
|
|
sh_video->disp_w = codec->width;
|
|
|
|
sh_video->disp_h = codec->height;
|
|
|
|
if (st->time_base.den) { /* if container has time_base, use that */
|
|
|
|
sh_video->video.dwRate = st->time_base.den;
|
|
|
|
sh_video->video.dwScale = st->time_base.num;
|
|
|
|
} else {
|
|
|
|
sh_video->video.dwRate = codec->time_base.den;
|
|
|
|
sh_video->video.dwScale = codec->time_base.num;
|
|
|
|
}
|
2012-04-14 01:43:40 +02:00
|
|
|
/* Try to make up some frame rate value, even if it's not reliable.
|
|
|
|
* FPS information is needed to support subtitle formats which base
|
|
|
|
* timing on frame numbers.
|
|
|
|
* Libavformat seems to report no "reliable" FPS value for AVI files,
|
|
|
|
* while they are typically constant enough FPS that the value this
|
|
|
|
* heuristic makes up works with subtitles in practice.
|
|
|
|
*/
|
|
|
|
double fps;
|
|
|
|
if (st->r_frame_rate.num)
|
|
|
|
fps = av_q2d(st->r_frame_rate);
|
|
|
|
else
|
|
|
|
fps = 1.0 / FFMAX(av_q2d(st->time_base),
|
|
|
|
av_q2d(st->codec->time_base) *
|
|
|
|
st->codec->ticks_per_frame);
|
|
|
|
sh_video->fps = fps;
|
|
|
|
sh_video->frametime = 1 / fps;
|
2011-07-03 14:42:04 +02:00
|
|
|
sh_video->format = bih->biCompression;
|
|
|
|
if (st->sample_aspect_ratio.num)
|
|
|
|
sh_video->aspect = codec->width * st->sample_aspect_ratio.num
|
|
|
|
/ (float)(codec->height * st->sample_aspect_ratio.den);
|
|
|
|
else
|
|
|
|
sh_video->aspect = codec->width * codec->sample_aspect_ratio.num
|
|
|
|
/ (float)(codec->height * codec->sample_aspect_ratio.den);
|
|
|
|
sh_video->i_bps = codec->bit_rate / 8;
|
2011-07-03 19:41:46 +02:00
|
|
|
if (title && title->value) {
|
|
|
|
sh_video->title = talloc_strdup(sh_video, title->value);
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VID_%d_NAME=%s\n",
|
|
|
|
priv->video_streams, title->value);
|
2011-07-03 19:41:46 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_DBG2, "aspect= %d*%d/(%d*%d)\n",
|
|
|
|
codec->width, codec->sample_aspect_ratio.num,
|
|
|
|
codec->height, codec->sample_aspect_ratio.den);
|
|
|
|
|
|
|
|
sh_video->ds = demuxer->video;
|
|
|
|
if (codec->extradata_size)
|
|
|
|
memcpy(sh_video->bih + 1, codec->extradata, codec->extradata_size);
|
|
|
|
if ( mp_msg_test(MSGT_HEADER, MSGL_V))
|
|
|
|
print_video_header(sh_video->bih, MSGL_V);
|
|
|
|
if (demuxer->video->id != priv->video_streams
|
|
|
|
&& demuxer->video->id != -1)
|
|
|
|
st->discard = AVDISCARD_ALL;
|
|
|
|
else {
|
|
|
|
demuxer->video->id = i;
|
|
|
|
demuxer->video->sh = demuxer->v_streams[i];
|
2007-10-27 21:00:07 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
stream_id = priv->video_streams++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AVMEDIA_TYPE_SUBTITLE: {
|
|
|
|
sh_sub_t *sh_sub;
|
|
|
|
char type;
|
|
|
|
/* only support text subtitles for now */
|
|
|
|
if (codec->codec_id == CODEC_ID_TEXT)
|
|
|
|
type = 't';
|
|
|
|
else if (codec->codec_id == CODEC_ID_MOV_TEXT)
|
|
|
|
type = 'm';
|
|
|
|
else if (codec->codec_id == CODEC_ID_SSA)
|
|
|
|
type = 'a';
|
|
|
|
else if (codec->codec_id == CODEC_ID_DVD_SUBTITLE)
|
|
|
|
type = 'v';
|
|
|
|
else if (codec->codec_id == CODEC_ID_XSUB)
|
|
|
|
type = 'x';
|
|
|
|
else if (codec->codec_id == CODEC_ID_DVB_SUBTITLE)
|
|
|
|
type = 'b';
|
|
|
|
else if (codec->codec_id == CODEC_ID_DVB_TELETEXT)
|
|
|
|
type = 'd';
|
|
|
|
else if (codec->codec_id == CODEC_ID_HDMV_PGS_SUBTITLE)
|
|
|
|
type = 'p';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
sh_sub = new_sh_sub_sid(demuxer, i, priv->sub_streams);
|
|
|
|
if (!sh_sub)
|
2008-01-30 09:10:25 +01:00
|
|
|
break;
|
2011-07-03 14:42:04 +02:00
|
|
|
stream_type = "subtitle";
|
|
|
|
priv->sstreams[priv->sub_streams] = i;
|
|
|
|
sh_sub->type = type;
|
|
|
|
if (codec->extradata_size) {
|
|
|
|
sh_sub->extradata = malloc(codec->extradata_size);
|
|
|
|
memcpy(sh_sub->extradata, codec->extradata, codec->extradata_size);
|
|
|
|
sh_sub->extradata_len = codec->extradata_size;
|
2008-01-30 09:10:25 +01:00
|
|
|
}
|
2011-07-03 19:41:46 +02:00
|
|
|
if (title && title->value) {
|
|
|
|
sh_sub->title = talloc_strdup(sh_sub, title->value);
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SID_%d_NAME=%s\n",
|
|
|
|
priv->sub_streams, title->value);
|
2011-07-03 19:41:46 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
if (lang && lang->value) {
|
|
|
|
sh_sub->lang = talloc_strdup(sh_sub, lang->value);
|
|
|
|
mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SID_%d_LANG=%s\n",
|
|
|
|
priv->sub_streams, sh_sub->lang);
|
|
|
|
}
|
|
|
|
if (st->disposition & AV_DISPOSITION_DEFAULT)
|
|
|
|
sh_sub->default_track = 1;
|
|
|
|
stream_id = priv->sub_streams++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AVMEDIA_TYPE_ATTACHMENT: {
|
2011-12-22 01:06:52 +01:00
|
|
|
AVDictionaryEntry *ftag = av_dict_get(st->metadata, "filename",
|
2011-07-03 14:42:04 +02:00
|
|
|
NULL, 0);
|
|
|
|
char *filename = ftag ? ftag->value : NULL;
|
|
|
|
if (st->codec->codec_id == CODEC_ID_TTF)
|
2011-07-27 07:38:12 +02:00
|
|
|
demuxer_add_attachment(demuxer, bstr(filename),
|
|
|
|
bstr("application/x-truetype-font"),
|
2011-07-03 14:42:04 +02:00
|
|
|
(struct bstr){codec->extradata,
|
|
|
|
codec->extradata_size});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
st->discard = AVDISCARD_ALL;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
2010-05-04 00:45:00 +02:00
|
|
|
if (stream_type) {
|
|
|
|
AVCodec *avc = avcodec_find_decoder(codec->codec_id);
|
2010-08-21 18:04:18 +02:00
|
|
|
const char *codec_name = avc ? avc->name : "unknown";
|
2011-06-19 18:28:18 +02:00
|
|
|
if (!avc && *stream_type == 's' && demuxer->s_streams[i])
|
2011-12-10 21:39:43 +01:00
|
|
|
codec_name = sh_sub_type2str((demuxer->s_streams[i])->type);
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, "[lavf] stream %d: %s (%s), -%cid %d",
|
|
|
|
i, stream_type, codec_name, *stream_type, stream_id);
|
2010-05-04 00:45:00 +02:00
|
|
|
if (lang && lang->value && *stream_type != 'v')
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, ", -%clang %s",
|
|
|
|
*stream_type, lang->value);
|
2010-05-04 00:45:00 +02:00
|
|
|
if (title && title->value)
|
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, ", %s", title->value);
|
|
|
|
mp_msg(MSGT_DEMUX, MSGL_INFO, "\n");
|
|
|
|
}
|
2007-10-27 21:00:07 +02:00
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static demuxer_t *demux_open_lavf(demuxer_t *demuxer)
|
|
|
|
{
|
2008-04-16 06:11:12 +02:00
|
|
|
struct MPOpts *opts = demuxer->opts;
|
2010-04-23 21:08:18 +02:00
|
|
|
struct lavfdopts *lavfdopts = &opts->lavfdopts;
|
2007-10-27 21:00:07 +02:00
|
|
|
AVFormatContext *avfc;
|
2011-12-22 01:06:52 +01:00
|
|
|
AVDictionaryEntry *t = NULL;
|
2011-07-03 14:42:04 +02:00
|
|
|
lavf_priv_t *priv = demuxer->priv;
|
2007-10-30 16:49:53 +01:00
|
|
|
int i;
|
2011-07-03 14:42:04 +02:00
|
|
|
char mp_filename[256] = "mp:";
|
2007-10-27 21:00:07 +02:00
|
|
|
|
|
|
|
stream_seek(demuxer->stream, 0);
|
|
|
|
|
2009-11-22 15:15:41 +01:00
|
|
|
avfc = avformat_alloc_context();
|
2007-10-27 21:00:07 +02:00
|
|
|
|
2010-04-23 21:08:18 +02:00
|
|
|
if (lavfdopts->cryptokey)
|
|
|
|
parse_cryptokey(avfc, lavfdopts->cryptokey);
|
2010-11-06 22:17:16 +01:00
|
|
|
if (matches_avinputformat_name(priv, "avi")) {
|
|
|
|
/* for avi libavformat returns the avi timestamps in .dts,
|
|
|
|
* some made-up stuff that's not really pts in .pts */
|
|
|
|
priv->use_dts = true;
|
2010-11-14 10:53:27 +01:00
|
|
|
demuxer->timestamp_type = TIMESTAMP_TYPE_SORT;
|
2010-11-06 22:17:16 +01:00
|
|
|
} else {
|
|
|
|
if (opts->user_correct_pts != 0)
|
|
|
|
avfc->flags |= AVFMT_FLAG_GENPTS;
|
|
|
|
}
|
2007-10-27 21:00:07 +02:00
|
|
|
if (index_mode == 0)
|
|
|
|
avfc->flags |= AVFMT_FLAG_IGNIDX;
|
|
|
|
|
2010-04-23 21:08:18 +02:00
|
|
|
if (lavfdopts->probesize) {
|
2012-01-28 12:41:36 +01:00
|
|
|
if (av_opt_set_int(avfc, "probesize", lavfdopts->probesize, 0) < 0)
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_ERR,
|
|
|
|
"demux_lavf, couldn't set option probesize to %u\n",
|
|
|
|
lavfdopts->probesize);
|
2007-10-27 21:00:07 +02:00
|
|
|
}
|
2010-04-23 21:08:18 +02:00
|
|
|
if (lavfdopts->analyzeduration) {
|
2012-01-28 12:41:36 +01:00
|
|
|
if (av_opt_set_int(avfc, "analyzeduration",
|
|
|
|
lavfdopts->analyzeduration * AV_TIME_BASE, 0) < 0)
|
2010-04-23 21:08:18 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_ERR, "demux_lavf, couldn't set option "
|
|
|
|
"analyzeduration to %u\n", lavfdopts->analyzeduration);
|
2007-10-27 21:00:07 +02:00
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
if (lavfdopts->avopt) {
|
|
|
|
if (parse_avopts(avfc, lavfdopts->avopt) < 0) {
|
|
|
|
mp_msg(MSGT_HEADER, MSGL_ERR,
|
|
|
|
"Your options /%s/ look like gibberish to me pal\n",
|
|
|
|
lavfdopts->avopt);
|
2008-05-10 21:29:38 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
if (demuxer->stream->url) {
|
2010-02-03 23:32:48 +01:00
|
|
|
if (!strncmp(demuxer->stream->url, "ffmpeg://rtsp:", 14))
|
2011-07-03 14:42:04 +02:00
|
|
|
av_strlcpy(mp_filename, demuxer->stream->url + 9,
|
|
|
|
sizeof(mp_filename));
|
2010-02-03 23:32:48 +01:00
|
|
|
else
|
2010-02-03 23:36:47 +01:00
|
|
|
av_strlcat(mp_filename, demuxer->stream->url, sizeof(mp_filename));
|
2010-02-03 23:32:48 +01:00
|
|
|
} else
|
2010-02-03 23:36:47 +01:00
|
|
|
av_strlcat(mp_filename, "foobar.dummy", sizeof(mp_filename));
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-06-21 22:28:53 +02:00
|
|
|
if (!(priv->avif->flags & AVFMT_NOFILE)) {
|
2011-12-22 01:06:52 +01:00
|
|
|
priv->pb = avio_alloc_context(priv->buffer, BIO_BUFFER_SIZE, 0,
|
|
|
|
demuxer, mp_read, NULL, mp_seek);
|
2011-06-21 22:28:53 +02:00
|
|
|
priv->pb->read_seek = mp_read_seek;
|
2011-12-22 01:06:52 +01:00
|
|
|
priv->pb->seekable = demuxer->stream->end_pos
|
|
|
|
&& (demuxer->stream->flags & MP_STREAM_SEEK) == MP_STREAM_SEEK
|
|
|
|
? AVIO_SEEKABLE_NORMAL : 0;
|
|
|
|
avfc->pb = priv->pb;
|
2011-06-21 22:28:53 +02:00
|
|
|
}
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-12-22 01:06:52 +01:00
|
|
|
if (avformat_open_input(&avfc, mp_filename, priv->avif, NULL) < 0) {
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_ERR,
|
2011-12-22 01:06:52 +01:00
|
|
|
"LAVF_header: avformat_open_input() failed\n");
|
2007-10-27 21:00:07 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
priv->avfc = avfc;
|
2007-10-27 21:00:07 +02:00
|
|
|
|
2012-01-28 12:41:36 +01:00
|
|
|
if (avformat_find_stream_info(avfc, NULL) < 0) {
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_ERR,
|
|
|
|
"LAVF_header: av_find_stream_info() failed\n");
|
2007-10-27 21:00:07 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-08-12 01:26:42 +02:00
|
|
|
/* Add metadata. */
|
2011-12-22 01:06:52 +01:00
|
|
|
while ((t = av_dict_get(avfc->metadata, "", t,
|
2012-01-28 12:41:36 +01:00
|
|
|
AV_DICT_IGNORE_SUFFIX)))
|
2009-08-12 01:26:42 +02:00
|
|
|
demux_info_add(demuxer, t->key, t->value);
|
2007-10-27 21:00:07 +02:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
for (i = 0; i < avfc->nb_chapters; i++) {
|
2008-06-16 17:54:29 +02:00
|
|
|
AVChapter *c = avfc->chapters[i];
|
2011-07-03 14:42:04 +02:00
|
|
|
uint64_t start = av_rescale_q(c->start, c->time_base,
|
|
|
|
(AVRational){1, 1000000000});
|
|
|
|
uint64_t end = av_rescale_q(c->end, c->time_base,
|
|
|
|
(AVRational){1, 1000000000});
|
2011-12-22 01:06:52 +01:00
|
|
|
t = av_dict_get(c->metadata, "title", NULL, 0);
|
2011-07-27 07:38:12 +02:00
|
|
|
demuxer_add_chapter(demuxer, t ? bstr(t->value) : bstr(NULL),
|
2011-07-03 14:42:04 +02:00
|
|
|
start, end);
|
2008-06-16 17:54:29 +02:00
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
for (i = 0; i < avfc->nb_streams; i++)
|
2009-09-08 10:55:05 +02:00
|
|
|
handle_stream(demuxer, avfc, i);
|
2010-10-04 20:12:36 +02:00
|
|
|
priv->nb_streams_last = avfc->nb_streams;
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
if (avfc->nb_programs) {
|
2009-11-07 12:15:26 +01:00
|
|
|
int p;
|
|
|
|
for (p = 0; p < avfc->nb_programs; p++) {
|
2007-10-27 21:12:59 +02:00
|
|
|
AVProgram *program = avfc->programs[p];
|
2011-12-22 01:06:52 +01:00
|
|
|
t = av_dict_get(program->metadata, "title", NULL, 0);
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_INFO, "LAVF: Program %d %s\n",
|
|
|
|
program->id, t ? t->value : "");
|
2010-11-06 15:41:23 +01:00
|
|
|
mp_msg(MSGT_IDENTIFY, MSGL_V, "PROGRAM_ID=%d\n", program->id);
|
2009-11-07 12:15:26 +01:00
|
|
|
}
|
2009-09-08 10:55:05 +02:00
|
|
|
}
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_HEADER, MSGL_V, "LAVF: %d audio and %d video streams found\n",
|
|
|
|
priv->audio_streams, priv->video_streams);
|
|
|
|
mp_msg(MSGT_HEADER, MSGL_V, "LAVF: build %d\n", LIBAVFORMAT_BUILD);
|
2011-04-02 21:39:01 +02:00
|
|
|
demuxer->audio->id = -2; // wait for higher-level code to select track
|
2011-07-03 14:42:04 +02:00
|
|
|
if (!priv->video_streams) {
|
|
|
|
if (!priv->audio_streams) {
|
|
|
|
mp_msg(MSGT_HEADER, MSGL_ERR,
|
|
|
|
"LAVF: no audio or video headers found - broken file?\n");
|
2008-01-26 22:45:31 +01:00
|
|
|
return NULL;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
demuxer->video->id = -2; // audio-only
|
|
|
|
}
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2011-04-08 01:47:02 +02:00
|
|
|
// disabled because unreliable per-stream bitrate values returned
|
|
|
|
// by libavformat trigger this heuristic incorrectly and break things
|
|
|
|
#if 0
|
2010-11-10 06:17:51 +01:00
|
|
|
/* libavformat sets bitrate for mpeg based on pts at start and end
|
|
|
|
* of file, which fails for files with pts resets. So calculate our
|
|
|
|
* own bitrate estimate. */
|
|
|
|
if (priv->avif->flags & AVFMT_TS_DISCONT) {
|
|
|
|
for (int i = 0; i < avfc->nb_streams; i++)
|
|
|
|
priv->bitrate += avfc->streams[i]->codec->bit_rate;
|
|
|
|
/* pts-based is more accurate if there are no resets; try to make
|
|
|
|
* a somewhat reasonable guess */
|
|
|
|
if (!avfc->duration || avfc->duration == AV_NOPTS_VALUE
|
|
|
|
|| priv->bitrate && (avfc->bit_rate < priv->bitrate / 2
|
|
|
|
|| avfc->bit_rate > priv->bitrate * 2))
|
|
|
|
priv->seek_by_bytes = true;
|
|
|
|
if (!priv->bitrate)
|
|
|
|
priv->bitrate = 1440000;
|
|
|
|
}
|
2011-04-08 01:47:02 +02:00
|
|
|
#endif
|
2010-11-10 06:17:51 +01:00
|
|
|
demuxer->accurate_seek = !priv->seek_by_bytes;
|
2009-03-19 04:25:12 +01:00
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
return demuxer;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
|
|
|
|
2010-11-06 02:39:49 +01:00
|
|
|
static void check_internet_radio_hack(struct demuxer *demuxer)
|
|
|
|
{
|
|
|
|
struct lavf_priv *priv = demuxer->priv;
|
|
|
|
struct AVFormatContext *avfc = priv->avfc;
|
|
|
|
|
|
|
|
if (!matches_avinputformat_name(priv, "ogg"))
|
|
|
|
return;
|
|
|
|
if (priv->nb_streams_last == avfc->nb_streams)
|
|
|
|
return;
|
|
|
|
if (avfc->nb_streams - priv->nb_streams_last == 1
|
|
|
|
&& priv->video_streams == 0 && priv->sub_streams == 0
|
2011-07-03 14:42:04 +02:00
|
|
|
&& demuxer->a_streams[priv->audio_streams - 1]->format == 0x566f // vorbis
|
2010-11-06 02:39:49 +01:00
|
|
|
&& (priv->audio_streams == 2 || priv->internet_radio_hack)
|
|
|
|
&& demuxer->a_streams[0]->format == 0x566f) {
|
|
|
|
// extradata match could be checked but would require parsing
|
|
|
|
// headers, as the comment section will vary
|
|
|
|
if (!priv->internet_radio_hack) {
|
|
|
|
mp_msg(MSGT_DEMUX, MSGL_V,
|
|
|
|
"[lavf] enabling internet ogg radio hack\n");
|
|
|
|
}
|
|
|
|
priv->internet_radio_hack = true;
|
|
|
|
// use new per-track metadata as global metadata
|
2011-12-22 01:06:52 +01:00
|
|
|
AVDictionaryEntry *t = NULL;
|
2010-11-06 02:39:49 +01:00
|
|
|
AVStream *stream = avfc->streams[avfc->nb_streams - 1];
|
2011-12-22 01:06:52 +01:00
|
|
|
while ((t = av_dict_get(stream->metadata, "", t,
|
2012-01-28 12:41:36 +01:00
|
|
|
AV_DICT_IGNORE_SUFFIX)))
|
2010-11-06 02:39:49 +01:00
|
|
|
demux_info_add(demuxer, t->key, t->value);
|
|
|
|
} else {
|
|
|
|
if (priv->internet_radio_hack)
|
|
|
|
mp_tmsg(MSGT_DEMUX, MSGL_WARN, "[lavf] Internet radio ogg hack "
|
|
|
|
"was enabled, but stream characteristics changed.\n"
|
|
|
|
"This may or may not work.\n");
|
|
|
|
priv->internet_radio_hack = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-19 03:59:01 +02:00
|
|
|
static int destroy_avpacket(void *pkt)
|
|
|
|
{
|
|
|
|
av_free_packet(pkt);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static int demux_lavf_fill_buffer(demuxer_t *demux, demux_stream_t *dsds)
|
|
|
|
{
|
|
|
|
lavf_priv_t *priv = demux->priv;
|
2004-04-11 16:26:04 +02:00
|
|
|
demux_packet_t *dp;
|
|
|
|
demux_stream_t *ds;
|
|
|
|
int id;
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_DBG2, "demux_lavf_fill_buffer()\n");
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
demux->filepos = stream_tell(demux->stream);
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2011-08-19 03:59:01 +02:00
|
|
|
AVPacket *pkt = talloc(NULL, AVPacket);
|
|
|
|
if (av_read_frame(priv->avfc, pkt) < 0) {
|
|
|
|
talloc_free(pkt);
|
2004-04-11 16:26:04 +02:00
|
|
|
return 0;
|
2011-08-19 03:59:01 +02:00
|
|
|
}
|
|
|
|
talloc_set_destructor(pkt, destroy_avpacket);
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2010-10-04 20:12:36 +02:00
|
|
|
// handle any new streams that might have been added
|
|
|
|
for (id = priv->nb_streams_last; id < priv->avfc->nb_streams; id++)
|
|
|
|
handle_stream(demux, priv->avfc, id);
|
2010-11-06 02:39:49 +01:00
|
|
|
check_internet_radio_hack(demux);
|
|
|
|
|
2010-10-04 20:12:36 +02:00
|
|
|
priv->nb_streams_last = priv->avfc->nb_streams;
|
|
|
|
|
2011-08-19 03:59:01 +02:00
|
|
|
id = pkt->stream_index;
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2010-11-06 02:39:49 +01:00
|
|
|
if (id == demux->audio->id || priv->internet_radio_hack) {
|
2004-04-11 16:26:04 +02:00
|
|
|
// audio
|
2011-07-03 14:42:04 +02:00
|
|
|
ds = demux->audio;
|
|
|
|
if (!ds->sh) {
|
|
|
|
ds->sh = demux->a_streams[id];
|
|
|
|
mp_msg(MSGT_DEMUX, MSGL_V, "Auto-selected LAVF audio ID = %d\n",
|
|
|
|
ds->id);
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
} else if (id == demux->video->id) {
|
2004-04-11 16:26:04 +02:00
|
|
|
// video
|
2011-07-03 14:42:04 +02:00
|
|
|
ds = demux->video;
|
|
|
|
if (!ds->sh) {
|
|
|
|
ds->sh = demux->v_streams[id];
|
|
|
|
mp_msg(MSGT_DEMUX, MSGL_V, "Auto-selected LAVF video ID = %d\n",
|
|
|
|
ds->id);
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
} else if (id == demux->sub->id) {
|
2007-07-13 23:15:24 +02:00
|
|
|
// subtitle
|
2011-07-03 14:42:04 +02:00
|
|
|
ds = demux->sub;
|
|
|
|
sub_utf8 = 1;
|
2005-01-30 10:13:28 +01:00
|
|
|
} else {
|
2011-08-19 03:59:01 +02:00
|
|
|
talloc_free(pkt);
|
2005-01-30 10:13:28 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-08-21 20:55:32 +02:00
|
|
|
// If the packet has pointers to temporary fields that could be
|
|
|
|
// overwritten/freed by next av_read_frame(), copy them to persistent
|
|
|
|
// allocations so we can safely queue the packet for any length of time.
|
|
|
|
if (av_dup_packet(pkt) < 0)
|
|
|
|
abort();
|
2011-08-19 03:59:01 +02:00
|
|
|
dp = new_demux_packet_fromdata(pkt->data, pkt->size);
|
|
|
|
dp->avpacket = pkt;
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2011-08-19 03:59:01 +02:00
|
|
|
int64_t ts = priv->use_dts ? pkt->dts : pkt->pts;
|
2011-07-03 14:42:04 +02:00
|
|
|
if (ts != AV_NOPTS_VALUE) {
|
2010-11-06 22:17:16 +01:00
|
|
|
dp->pts = ts * av_q2d(priv->avfc->streams[id]->time_base);
|
2011-07-03 14:42:04 +02:00
|
|
|
priv->last_pts = dp->pts * AV_TIME_BASE;
|
2011-04-20 01:59:45 +02:00
|
|
|
// always set duration for subtitles, even if AV_PKT_FLAG_KEY isn't set,
|
2011-07-03 14:42:04 +02:00
|
|
|
// otherwise they will stay on screen to long if e.g. ASS is demuxed
|
|
|
|
// from mkv
|
2011-08-19 03:59:01 +02:00
|
|
|
if ((ds == demux->sub || (pkt->flags & AV_PKT_FLAG_KEY)) &&
|
|
|
|
pkt->convergence_duration > 0)
|
|
|
|
dp->duration = pkt->convergence_duration *
|
2011-07-03 14:42:04 +02:00
|
|
|
av_q2d(priv->avfc->streams[id]->time_base);
|
2004-10-24 21:17:55 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
dp->pos = demux->filepos;
|
2011-08-19 03:59:01 +02:00
|
|
|
dp->flags = !!(pkt->flags & AV_PKT_FLAG_KEY);
|
2004-04-11 16:26:04 +02:00
|
|
|
// append packet to DS stream:
|
2011-07-03 14:42:04 +02:00
|
|
|
ds_add_packet(ds, dp);
|
2004-04-11 16:26:04 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
static void demux_seek_lavf(demuxer_t *demuxer, float rel_seek_secs,
|
|
|
|
float audio_delay, int flags)
|
|
|
|
{
|
2004-04-11 19:20:52 +02:00
|
|
|
lavf_priv_t *priv = demuxer->priv;
|
2006-10-05 23:25:22 +02:00
|
|
|
int avsflags = 0;
|
2011-07-03 14:42:04 +02:00
|
|
|
mp_msg(MSGT_DEMUX, MSGL_DBG2, "demux_seek_lavf(%p, %f, %f, %d)\n",
|
|
|
|
demuxer, rel_seek_secs, audio_delay, flags);
|
2006-07-14 01:02:03 +02:00
|
|
|
|
2010-11-10 06:17:51 +01:00
|
|
|
if (priv->seek_by_bytes) {
|
|
|
|
int64_t pos = demuxer->filepos;
|
|
|
|
rel_seek_secs *= priv->bitrate / 8;
|
|
|
|
pos += rel_seek_secs;
|
|
|
|
av_seek_frame(priv->avfc, -1, pos, AVSEEK_FLAG_BYTE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
if (flags & SEEK_ABSOLUTE)
|
|
|
|
priv->last_pts = 0;
|
|
|
|
else if (rel_seek_secs < 0)
|
|
|
|
avsflags = AVSEEK_FLAG_BACKWARD;
|
2009-03-19 04:25:12 +01:00
|
|
|
if (flags & SEEK_FORWARD)
|
|
|
|
avsflags = 0;
|
|
|
|
else if (flags & SEEK_BACKWARD)
|
|
|
|
avsflags = AVSEEK_FLAG_BACKWARD;
|
2008-01-29 16:11:38 +01:00
|
|
|
if (flags & SEEK_FACTOR) {
|
2011-07-03 14:42:04 +02:00
|
|
|
if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE)
|
|
|
|
return;
|
|
|
|
priv->last_pts += rel_seek_secs * priv->avfc->duration;
|
|
|
|
} else
|
|
|
|
priv->last_pts += rel_seek_secs * AV_TIME_BASE;
|
2009-09-30 10:19:49 +02:00
|
|
|
if (av_seek_frame(priv->avfc, -1, priv->last_pts, avsflags) < 0) {
|
|
|
|
avsflags ^= AVSEEK_FLAG_BACKWARD;
|
|
|
|
av_seek_frame(priv->avfc, -1, priv->last_pts, avsflags);
|
|
|
|
}
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
static int demux_lavf_control(demuxer_t *demuxer, int cmd, void *arg)
|
2004-04-11 16:26:04 +02:00
|
|
|
{
|
|
|
|
lavf_priv_t *priv = demuxer->priv;
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2004-04-11 16:26:04 +02:00
|
|
|
switch (cmd) {
|
2011-07-03 14:42:04 +02:00
|
|
|
case DEMUXER_CTRL_CORRECT_PTS:
|
|
|
|
return DEMUXER_CTRL_OK;
|
2010-11-10 06:17:51 +01:00
|
|
|
case DEMUXER_CTRL_GET_TIME_LENGTH:
|
|
|
|
if (priv->seek_by_bytes) {
|
|
|
|
/* Our bitrate estimate may be better than would be used in
|
|
|
|
* otherwise similar fallback code at higher level */
|
|
|
|
if (demuxer->movi_end <= 0)
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
|
|
|
*(double *)arg = (demuxer->movi_end - demuxer->movi_start) * 8 /
|
2011-07-03 14:42:04 +02:00
|
|
|
priv->bitrate;
|
2010-11-10 06:17:51 +01:00
|
|
|
return DEMUXER_CTRL_GUESS;
|
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE)
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
2008-01-26 22:45:31 +01:00
|
|
|
|
2011-07-03 14:42:04 +02:00
|
|
|
*((double *)arg) = (double)priv->avfc->duration / AV_TIME_BASE;
|
|
|
|
return DEMUXER_CTRL_OK;
|
2004-04-11 16:26:04 +02:00
|
|
|
|
2010-11-10 06:17:51 +01:00
|
|
|
case DEMUXER_CTRL_GET_PERCENT_POS:
|
|
|
|
if (priv->seek_by_bytes)
|
2011-07-03 14:42:04 +02:00
|
|
|
return DEMUXER_CTRL_DONTKNOW; // let it use the fallback code
|
|
|
|
if (priv->avfc->duration == 0 || priv->avfc->duration == AV_NOPTS_VALUE)
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
|
|
|
|
|
|
|
*((int *)arg) = (int)((priv->last_pts - priv->avfc->start_time) * 100 /
|
|
|
|
priv->avfc->duration);
|
|
|
|
return DEMUXER_CTRL_OK;
|
|
|
|
case DEMUXER_CTRL_SWITCH_AUDIO:
|
|
|
|
case DEMUXER_CTRL_SWITCH_VIDEO:
|
|
|
|
{
|
|
|
|
int id = *((int *)arg);
|
|
|
|
int newid = -2;
|
|
|
|
int i, curridx = -1;
|
|
|
|
int nstreams, *pstreams;
|
|
|
|
demux_stream_t *ds;
|
|
|
|
|
|
|
|
if (cmd == DEMUXER_CTRL_SWITCH_VIDEO) {
|
|
|
|
ds = demuxer->video;
|
|
|
|
nstreams = priv->video_streams;
|
|
|
|
pstreams = priv->vstreams;
|
|
|
|
} else {
|
|
|
|
ds = demuxer->audio;
|
|
|
|
nstreams = priv->audio_streams;
|
|
|
|
pstreams = priv->astreams;
|
|
|
|
}
|
|
|
|
for (i = 0; i < nstreams; i++) {
|
|
|
|
if (pstreams[i] == ds->id) { //current stream id
|
|
|
|
curridx = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == -1) { // next track
|
|
|
|
i = (curridx + 2) % (nstreams + 1) - 1;
|
|
|
|
if (i >= 0)
|
2011-03-30 23:11:28 +02:00
|
|
|
newid = pstreams[i];
|
2011-07-03 14:42:04 +02:00
|
|
|
} else if (id >= 0 && id < nstreams) { // select track by id
|
|
|
|
i = id;
|
|
|
|
newid = pstreams[i];
|
|
|
|
} else // no sound
|
|
|
|
i = -1;
|
|
|
|
|
|
|
|
if (i == curridx) {
|
|
|
|
*(int *) arg = curridx < 0 ? -2 : curridx;
|
|
|
|
return DEMUXER_CTRL_OK;
|
|
|
|
} else {
|
|
|
|
ds_free_packs(ds);
|
|
|
|
if (ds->id >= 0)
|
|
|
|
priv->avfc->streams[ds->id]->discard = AVDISCARD_ALL;
|
|
|
|
ds->id = newid;
|
|
|
|
*(int *) arg = i < 0 ? -2 : i;
|
|
|
|
if (newid >= 0)
|
|
|
|
priv->avfc->streams[newid]->discard = AVDISCARD_NONE;
|
|
|
|
return DEMUXER_CTRL_OK;
|
2006-06-20 21:57:16 +02:00
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
}
|
|
|
|
case DEMUXER_CTRL_IDENTIFY_PROGRAM:
|
|
|
|
{
|
|
|
|
demux_program_t *prog = arg;
|
|
|
|
AVProgram *program;
|
|
|
|
int p, i;
|
|
|
|
int start;
|
|
|
|
|
|
|
|
prog->vid = prog->aid = prog->sid = -2;
|
|
|
|
if (priv->avfc->nb_programs < 1)
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
|
|
|
|
|
|
|
if (prog->progid == -1) {
|
|
|
|
p = 0;
|
|
|
|
while (p < priv->avfc->nb_programs && priv->avfc->programs[p]->id != priv->cur_program)
|
|
|
|
p++;
|
|
|
|
p = (p + 1) % priv->avfc->nb_programs;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < priv->avfc->nb_programs; i++)
|
|
|
|
if (priv->avfc->programs[i]->id == prog->progid)
|
|
|
|
break;
|
|
|
|
if (i == priv->avfc->nb_programs)
|
2009-11-07 12:09:23 +01:00
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
2011-07-03 14:42:04 +02:00
|
|
|
p = i;
|
|
|
|
}
|
|
|
|
start = p;
|
2007-10-27 21:15:43 +02:00
|
|
|
redo:
|
2011-07-03 14:42:04 +02:00
|
|
|
program = priv->avfc->programs[p];
|
|
|
|
for (i = 0; i < program->nb_stream_indexes; i++) {
|
|
|
|
switch (priv->avfc->streams[program->stream_index[i]]->codec->codec_type) {
|
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
if (prog->vid == -2)
|
|
|
|
prog->vid = program->stream_index[i];
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
if (prog->aid == -2)
|
|
|
|
prog->aid = program->stream_index[i];
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_SUBTITLE:
|
|
|
|
if (prog->sid == -2 && priv->avfc->streams[program->stream_index[i]]->codec->codec_id == CODEC_ID_TEXT)
|
|
|
|
prog->sid = program->stream_index[i];
|
|
|
|
break;
|
2007-10-27 21:15:43 +02:00
|
|
|
}
|
|
|
|
}
|
2011-07-03 14:42:04 +02:00
|
|
|
if (prog->aid >= 0 && prog->aid < MAX_A_STREAMS &&
|
|
|
|
demuxer->a_streams[prog->aid]) {
|
|
|
|
sh_audio_t *sh = demuxer->a_streams[prog->aid];
|
|
|
|
prog->aid = sh->aid;
|
|
|
|
} else
|
|
|
|
prog->aid = -2;
|
|
|
|
if (prog->vid >= 0 && prog->vid < MAX_V_STREAMS &&
|
|
|
|
demuxer->v_streams[prog->vid]) {
|
|
|
|
sh_video_t *sh = demuxer->v_streams[prog->vid];
|
|
|
|
prog->vid = sh->vid;
|
|
|
|
} else
|
|
|
|
prog->vid = -2;
|
|
|
|
if (prog->progid == -1 && prog->vid == -2 && prog->aid == -2) {
|
|
|
|
p = (p + 1) % priv->avfc->nb_programs;
|
|
|
|
if (p == start)
|
|
|
|
return DEMUXER_CTRL_DONTKNOW;
|
|
|
|
goto redo;
|
|
|
|
}
|
|
|
|
priv->cur_program = prog->progid = program->id;
|
|
|
|
return DEMUXER_CTRL_OK;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return DEMUXER_CTRL_NOTIMPL;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
static void demux_close_lavf(demuxer_t *demuxer)
|
2004-04-11 16:26:04 +02:00
|
|
|
{
|
2011-07-03 14:42:04 +02:00
|
|
|
lavf_priv_t *priv = demuxer->priv;
|
|
|
|
if (priv) {
|
|
|
|
if (priv->avfc) {
|
|
|
|
av_freep(&priv->avfc->key);
|
2012-01-28 12:41:36 +01:00
|
|
|
avformat_close_input(&priv->avfc);
|
2004-04-26 21:55:55 +02:00
|
|
|
}
|
2007-12-22 17:22:54 +01:00
|
|
|
av_freep(&priv->pb);
|
2011-07-03 14:42:04 +02:00
|
|
|
free(priv);
|
|
|
|
demuxer->priv = NULL;
|
2004-04-11 16:26:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
|
2008-01-13 17:00:39 +01:00
|
|
|
const demuxer_desc_t demuxer_desc_lavf = {
|
2011-07-03 14:42:04 +02:00
|
|
|
"libavformat demuxer",
|
|
|
|
"lavf",
|
|
|
|
"libavformat",
|
|
|
|
"Michael Niedermayer",
|
|
|
|
"supports many formats, requires libavformat",
|
|
|
|
DEMUXER_TYPE_LAVF,
|
|
|
|
0, // Check after other demuxer
|
|
|
|
lavf_check_file,
|
|
|
|
demux_lavf_fill_buffer,
|
|
|
|
demux_open_lavf,
|
|
|
|
demux_close_lavf,
|
|
|
|
demux_seek_lavf,
|
|
|
|
demux_lavf_control
|
2005-08-05 21:57:47 +02:00
|
|
|
};
|
|
|
|
|
2008-01-13 17:00:39 +01:00
|
|
|
const demuxer_desc_t demuxer_desc_lavf_preferred = {
|
2011-07-03 14:42:04 +02:00
|
|
|
"libavformat preferred demuxer",
|
|
|
|
"lavfpref",
|
|
|
|
"libavformat",
|
|
|
|
"Michael Niedermayer",
|
|
|
|
"supports many formats, requires libavformat",
|
|
|
|
DEMUXER_TYPE_LAVF_PREFERRED,
|
|
|
|
1,
|
|
|
|
lavf_check_preferred_file,
|
|
|
|
demux_lavf_fill_buffer,
|
|
|
|
demux_open_lavf,
|
|
|
|
demux_close_lavf,
|
|
|
|
demux_seek_lavf,
|
|
|
|
demux_lavf_control
|
2007-04-14 12:03:42 +02:00
|
|
|
};
|