2005-12-17 18:14:38 +00:00
|
|
|
/*
|
|
|
|
* General DV muxer/demuxer
|
2006-02-08 11:43:47 +00:00
|
|
|
* Copyright (c) 2003 Roman Shaposhnik
|
2003-09-29 17:54:07 +00:00
|
|
|
*
|
|
|
|
* Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
|
|
|
|
* of DV technical info.
|
|
|
|
*
|
2002-10-08 17:58:36 +00:00
|
|
|
* Raw DV format
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard
|
2002-10-08 17:58:36 +00:00
|
|
|
*
|
2008-08-28 22:41:00 +00:00
|
|
|
* 50 Mbps (DVCPRO50) and 100 Mbps (DVCPRO HD) support
|
2006-03-06 08:54:33 +00:00
|
|
|
* Copyright (c) 2006 Daniel Maas <dmaas@maasdigital.com>
|
2008-08-28 22:41:00 +00:00
|
|
|
* Funded by BBC Research & Development
|
2006-03-06 08:54:33 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-10-08 17:58:36 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-10-08 17:58:36 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-10-08 17:58:36 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-10-08 17:58:36 +00:00
|
|
|
*/
|
2003-09-29 17:54:07 +00:00
|
|
|
#include <time.h>
|
2002-10-08 17:58:36 +00:00
|
|
|
#include "avformat.h"
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavcodec/dvdata.h"
|
2009-02-22 09:42:56 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-06-04 11:58:23 +00:00
|
|
|
#include "libavutil/mathematics.h"
|
2003-10-31 22:26:26 +00:00
|
|
|
#include "dv.h"
|
|
|
|
|
|
|
|
struct DVDemuxContext {
|
2006-03-06 08:54:33 +00:00
|
|
|
const DVprofile* sys; /* Current DV profile. E.g.: 525/60, 625/50 */
|
2008-10-24 21:41:27 +00:00
|
|
|
AVFormatContext* fctx;
|
|
|
|
AVStream* vst;
|
|
|
|
AVStream* ast[4];
|
|
|
|
AVPacket audio_pkt[4];
|
|
|
|
uint8_t audio_buf[4][8192];
|
|
|
|
int ach;
|
|
|
|
int frames;
|
|
|
|
uint64_t abytes;
|
2003-10-31 22:26:26 +00:00
|
|
|
};
|
2002-10-08 17:58:36 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
static inline uint16_t dv_audio_12to16(uint16_t sample)
|
|
|
|
{
|
|
|
|
uint16_t shift, result;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
sample = (sample < 0x800) ? sample : sample | 0xf000;
|
2008-10-24 21:41:27 +00:00
|
|
|
shift = (sample & 0xf00) >> 8;
|
2003-09-29 17:54:07 +00:00
|
|
|
|
|
|
|
if (shift < 0x2 || shift > 0xd) {
|
2005-12-22 01:10:11 +00:00
|
|
|
result = sample;
|
2003-09-29 17:54:07 +00:00
|
|
|
} else if (shift < 0x8) {
|
|
|
|
shift--;
|
2005-12-22 01:10:11 +00:00
|
|
|
result = (sample - (256 * shift)) << shift;
|
2003-09-29 17:54:07 +00:00
|
|
|
} else {
|
2005-12-22 01:10:11 +00:00
|
|
|
shift = 0xe - shift;
|
|
|
|
result = ((sample + ((256 * shift) + 1)) << shift) - 1;
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2003-09-29 17:54:07 +00:00
|
|
|
* This is the dumbest implementation of all -- it simply looks at
|
|
|
|
* a fixed offset and if pack isn't there -- fails. We might want
|
|
|
|
* to have a fallback mechanism for complete search of missing packs.
|
|
|
|
*/
|
|
|
|
static const uint8_t* dv_extract_pack(uint8_t* frame, enum dv_pack_type t)
|
|
|
|
{
|
|
|
|
int offs;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
switch (t) {
|
|
|
|
case dv_audio_source:
|
2008-10-24 21:41:27 +00:00
|
|
|
offs = (80*6 + 80*16*3 + 3);
|
|
|
|
break;
|
2003-09-29 17:54:07 +00:00
|
|
|
case dv_audio_control:
|
2008-10-24 21:41:27 +00:00
|
|
|
offs = (80*6 + 80*16*4 + 3);
|
|
|
|
break;
|
2003-09-29 17:54:07 +00:00
|
|
|
case dv_video_control:
|
2008-10-24 21:41:27 +00:00
|
|
|
offs = (80*5 + 48 + 5);
|
|
|
|
break;
|
2003-09-29 17:54:07 +00:00
|
|
|
default:
|
2008-10-24 21:41:27 +00:00
|
|
|
return NULL;
|
2005-12-17 18:14:38 +00:00
|
|
|
}
|
2003-09-29 17:54:07 +00:00
|
|
|
|
2008-05-06 09:16:36 +00:00
|
|
|
return frame[offs] == t ? &frame[offs] : NULL;
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2003-09-29 17:54:07 +00:00
|
|
|
* There's a couple of assumptions being made here:
|
|
|
|
* 1. By default we silence erroneous (0x8000/16bit 0x800/12bit) audio samples.
|
|
|
|
* We can pass them upwards when ffmpeg will be ready to deal with them.
|
|
|
|
* 2. We don't do software emphasis.
|
|
|
|
* 3. Audio is always returned as 16bit linear samples: 12bit nonlinear samples
|
|
|
|
* are converted into 16bit linear ones.
|
|
|
|
*/
|
2008-08-28 22:41:00 +00:00
|
|
|
static int dv_extract_audio(uint8_t* frame, uint8_t* ppcm[4],
|
2006-03-06 08:54:33 +00:00
|
|
|
const DVprofile *sys)
|
2003-09-29 17:54:07 +00:00
|
|
|
{
|
2006-03-06 08:54:33 +00:00
|
|
|
int size, chan, i, j, d, of, smpls, freq, quant, half_ch;
|
2003-09-29 17:54:07 +00:00
|
|
|
uint16_t lc, rc;
|
|
|
|
const uint8_t* as_pack;
|
2008-08-28 22:41:00 +00:00
|
|
|
uint8_t *pcm, ipcm;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
as_pack = dv_extract_pack(frame, dv_audio_source);
|
|
|
|
if (!as_pack) /* No audio ? */
|
2005-12-22 01:10:11 +00:00
|
|
|
return 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2008-10-24 21:41:27 +00:00
|
|
|
smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
|
|
|
|
freq = (as_pack[4] >> 3) & 0x07; /* 0 - 48kHz, 1 - 44,1kHz, 2 - 32kHz */
|
|
|
|
quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
if (quant > 1)
|
2008-10-24 21:37:06 +00:00
|
|
|
return -1; /* unsupported quantization */
|
2003-09-29 17:54:07 +00:00
|
|
|
|
|
|
|
size = (sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */
|
2008-10-24 21:41:27 +00:00
|
|
|
half_ch = sys->difseg_size / 2;
|
2003-09-29 17:54:07 +00:00
|
|
|
|
2008-10-24 21:37:06 +00:00
|
|
|
/* We work with 720p frames split in half, thus even frames have
|
2008-10-24 21:41:27 +00:00
|
|
|
* channels 0,1 and odd 2,3. */
|
|
|
|
ipcm = (sys->height == 720 && !(frame[1] & 0x0C)) ? 2 : 0;
|
|
|
|
pcm = ppcm[ipcm++];
|
2008-08-28 22:41:00 +00:00
|
|
|
|
2006-03-06 08:54:33 +00:00
|
|
|
/* for each DIF channel */
|
|
|
|
for (chan = 0; chan < sys->n_difchan; chan++) {
|
|
|
|
/* for each DIF segment */
|
|
|
|
for (i = 0; i < sys->difseg_size; i++) {
|
|
|
|
frame += 6 * 80; /* skip DIF segment header */
|
|
|
|
if (quant == 1 && i == half_ch) {
|
|
|
|
/* next stereo channel (12bit mode only) */
|
2008-08-28 22:41:00 +00:00
|
|
|
pcm = ppcm[ipcm++];
|
|
|
|
if (!pcm)
|
2006-03-06 08:54:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-12-22 01:10:11 +00:00
|
|
|
|
2006-03-06 08:54:33 +00:00
|
|
|
/* for each AV sequence */
|
|
|
|
for (j = 0; j < 9; j++) {
|
|
|
|
for (d = 8; d < 80; d += 2) {
|
|
|
|
if (quant == 0) { /* 16bit quantization */
|
2008-10-24 21:41:27 +00:00
|
|
|
of = sys->audio_shuffle[i][j] + (d - 8) / 2 * sys->audio_stride;
|
2006-03-06 08:54:33 +00:00
|
|
|
if (of*2 >= size)
|
|
|
|
continue;
|
|
|
|
|
2008-10-02 16:28:58 +00:00
|
|
|
pcm[of*2] = frame[d+1]; // FIXME: maybe we have to admit
|
|
|
|
pcm[of*2+1] = frame[d]; // that DV is a big-endian PCM
|
2006-03-06 08:54:33 +00:00
|
|
|
if (pcm[of*2+1] == 0x80 && pcm[of*2] == 0x00)
|
|
|
|
pcm[of*2+1] = 0;
|
|
|
|
} else { /* 12bit quantization */
|
2008-10-24 21:41:27 +00:00
|
|
|
lc = ((uint16_t)frame[d] << 4) |
|
2006-03-06 08:54:33 +00:00
|
|
|
((uint16_t)frame[d+2] >> 4);
|
|
|
|
rc = ((uint16_t)frame[d+1] << 4) |
|
|
|
|
((uint16_t)frame[d+2] & 0x0f);
|
|
|
|
lc = (lc == 0x800 ? 0 : dv_audio_12to16(lc));
|
|
|
|
rc = (rc == 0x800 ? 0 : dv_audio_12to16(rc));
|
|
|
|
|
2008-10-24 21:41:27 +00:00
|
|
|
of = sys->audio_shuffle[i%half_ch][j] + (d - 8) / 3 * sys->audio_stride;
|
2006-03-06 08:54:33 +00:00
|
|
|
if (of*2 >= size)
|
|
|
|
continue;
|
|
|
|
|
2008-10-02 16:28:58 +00:00
|
|
|
pcm[of*2] = lc & 0xff; // FIXME: maybe we have to admit
|
|
|
|
pcm[of*2+1] = lc >> 8; // that DV is a big-endian PCM
|
2006-03-06 08:54:33 +00:00
|
|
|
of = sys->audio_shuffle[i%half_ch+half_ch][j] +
|
2008-10-24 21:41:27 +00:00
|
|
|
(d - 8) / 3 * sys->audio_stride;
|
2008-10-02 16:28:58 +00:00
|
|
|
pcm[of*2] = rc & 0xff; // FIXME: maybe we have to admit
|
|
|
|
pcm[of*2+1] = rc >> 8; // that DV is a big-endian PCM
|
2006-03-06 08:54:33 +00:00
|
|
|
++d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
frame += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
|
|
|
|
}
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
2006-03-06 08:54:33 +00:00
|
|
|
|
2008-08-28 22:41:00 +00:00
|
|
|
/* next stereo channel (50Mbps and 100Mbps only) */
|
|
|
|
pcm = ppcm[ipcm++];
|
|
|
|
if (!pcm)
|
2006-03-06 08:54:33 +00:00
|
|
|
break;
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2003-10-31 22:26:26 +00:00
|
|
|
static int dv_extract_audio_info(DVDemuxContext* c, uint8_t* frame)
|
2003-09-29 17:54:07 +00:00
|
|
|
{
|
|
|
|
const uint8_t* as_pack;
|
2006-03-06 08:54:33 +00:00
|
|
|
int freq, stype, smpls, quant, i, ach;
|
2003-09-29 17:54:07 +00:00
|
|
|
|
|
|
|
as_pack = dv_extract_pack(frame, dv_audio_source);
|
2006-03-06 08:54:33 +00:00
|
|
|
if (!as_pack || !c->sys) { /* No audio ? */
|
2003-10-31 22:26:26 +00:00
|
|
|
c->ach = 0;
|
2005-12-22 01:10:11 +00:00
|
|
|
return 0;
|
2003-10-31 22:26:26 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2008-10-24 21:41:27 +00:00
|
|
|
smpls = as_pack[1] & 0x3f; /* samples in this frame - min. samples */
|
|
|
|
freq = (as_pack[4] >> 3) & 0x07; /* 0 - 48kHz, 1 - 44,1kHz, 2 - 32kHz */
|
|
|
|
stype = (as_pack[3] & 0x1f); /* 0 - 2CH, 2 - 4CH, 3 - 8CH */
|
|
|
|
quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
|
2006-03-06 08:54:33 +00:00
|
|
|
|
|
|
|
/* note: ach counts PAIRS of channels (i.e. stereo channels) */
|
2008-10-08 20:55:22 +00:00
|
|
|
ach = ((int[4]){ 1, 0, 2, 4})[stype];
|
2008-10-07 16:14:33 +00:00
|
|
|
if (ach == 1 && quant && freq == 2)
|
|
|
|
ach = 2;
|
2004-09-27 22:53:27 +00:00
|
|
|
|
|
|
|
/* Dynamic handling of the audio streams in DV */
|
2008-10-24 21:41:27 +00:00
|
|
|
for (i = 0; i < ach; i++) {
|
2004-09-27 22:53:27 +00:00
|
|
|
if (!c->ast[i]) {
|
|
|
|
c->ast[i] = av_new_stream(c->fctx, 0);
|
2005-12-22 01:10:11 +00:00
|
|
|
if (!c->ast[i])
|
|
|
|
break;
|
|
|
|
av_set_pts_info(c->ast[i], 64, 1, 30000);
|
2010-03-30 23:30:55 +00:00
|
|
|
c->ast[i]->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2008-10-24 21:41:27 +00:00
|
|
|
c->ast[i]->codec->codec_id = CODEC_ID_PCM_S16LE;
|
2004-10-13 00:03:00 +00:00
|
|
|
|
|
|
|
av_init_packet(&c->audio_pkt[i]);
|
2008-10-24 21:41:27 +00:00
|
|
|
c->audio_pkt[i].size = 0;
|
|
|
|
c->audio_pkt[i].data = c->audio_buf[i];
|
2004-10-13 00:03:00 +00:00
|
|
|
c->audio_pkt[i].stream_index = c->ast[i]->index;
|
2010-03-31 12:29:58 +00:00
|
|
|
c->audio_pkt[i].flags |= AV_PKT_FLAG_KEY;
|
2004-09-27 22:53:27 +00:00
|
|
|
}
|
2005-07-17 22:24:36 +00:00
|
|
|
c->ast[i]->codec->sample_rate = dv_audio_frequency[freq];
|
2008-10-24 21:41:27 +00:00
|
|
|
c->ast[i]->codec->channels = 2;
|
|
|
|
c->ast[i]->codec->bit_rate = 2 * dv_audio_frequency[freq] * 16;
|
|
|
|
c->ast[i]->start_time = 0;
|
2003-10-31 22:26:26 +00:00
|
|
|
}
|
2004-09-27 22:53:27 +00:00
|
|
|
c->ach = i;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2006-03-06 08:54:33 +00:00
|
|
|
return (c->sys->audio_min_samples[freq] + smpls) * 4; /* 2ch, 2bytes */;
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
|
|
|
|
2003-10-31 22:26:26 +00:00
|
|
|
static int dv_extract_video_info(DVDemuxContext *c, uint8_t* frame)
|
2003-09-29 17:54:07 +00:00
|
|
|
{
|
|
|
|
const uint8_t* vsc_pack;
|
2003-10-31 22:26:26 +00:00
|
|
|
AVCodecContext* avctx;
|
|
|
|
int apt, is16_9;
|
2003-09-29 17:54:07 +00:00
|
|
|
int size = 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2006-03-06 08:54:33 +00:00
|
|
|
if (c->sys) {
|
2005-07-17 22:24:36 +00:00
|
|
|
avctx = c->vst->codec;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2008-10-24 21:41:27 +00:00
|
|
|
av_set_pts_info(c->vst, 64, c->sys->time_base.num,
|
|
|
|
c->sys->time_base.den);
|
2008-10-07 16:59:18 +00:00
|
|
|
avctx->time_base= c->sys->time_base;
|
2008-10-24 21:41:27 +00:00
|
|
|
if (!avctx->width){
|
2006-03-06 08:54:33 +00:00
|
|
|
avctx->width = c->sys->width;
|
|
|
|
avctx->height = c->sys->height;
|
2005-09-02 08:30:26 +00:00
|
|
|
}
|
2006-03-06 08:54:33 +00:00
|
|
|
avctx->pix_fmt = c->sys->pix_fmt;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
/* finding out SAR is a little bit messy */
|
|
|
|
vsc_pack = dv_extract_pack(frame, dv_video_control);
|
2008-10-24 21:41:27 +00:00
|
|
|
apt = frame[4] & 0x07;
|
|
|
|
is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 ||
|
|
|
|
(!apt && (vsc_pack[2] & 0x07) == 0x07)));
|
2008-08-23 23:43:20 +00:00
|
|
|
c->vst->sample_aspect_ratio = c->sys->sar[is16_9];
|
2008-10-07 16:59:18 +00:00
|
|
|
avctx->bit_rate = av_rescale_q(c->sys->frame_size, (AVRational){8,1},
|
|
|
|
c->sys->time_base);
|
2006-03-06 08:54:33 +00:00
|
|
|
size = c->sys->frame_size;
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2006-09-15 19:14:24 +00:00
|
|
|
* The following 3 functions constitute our interface to the world
|
2003-09-29 17:54:07 +00:00
|
|
|
*/
|
|
|
|
|
2003-10-31 22:26:26 +00:00
|
|
|
DVDemuxContext* dv_init_demux(AVFormatContext *s)
|
2003-09-29 17:54:07 +00:00
|
|
|
{
|
|
|
|
DVDemuxContext *c;
|
|
|
|
|
|
|
|
c = av_mallocz(sizeof(DVDemuxContext));
|
|
|
|
if (!c)
|
|
|
|
return NULL;
|
|
|
|
|
2003-10-31 22:26:26 +00:00
|
|
|
c->vst = av_new_stream(s, 0);
|
2004-09-27 22:53:27 +00:00
|
|
|
if (!c->vst) {
|
2005-12-17 18:14:38 +00:00
|
|
|
av_free(c);
|
2004-09-27 22:53:27 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2004-05-21 20:43:21 +00:00
|
|
|
|
2008-10-24 21:41:27 +00:00
|
|
|
c->sys = NULL;
|
2003-10-31 22:26:26 +00:00
|
|
|
c->fctx = s;
|
2008-08-27 20:28:11 +00:00
|
|
|
memset(c->ast, 0, sizeof(c->ast));
|
2008-10-24 21:41:27 +00:00
|
|
|
c->ach = 0;
|
2004-03-23 05:35:10 +00:00
|
|
|
c->frames = 0;
|
|
|
|
c->abytes = 0;
|
2004-10-13 00:03:00 +00:00
|
|
|
|
2010-03-30 23:30:55 +00:00
|
|
|
c->vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2008-10-24 21:41:27 +00:00
|
|
|
c->vst->codec->codec_id = CODEC_ID_DVVIDEO;
|
|
|
|
c->vst->codec->bit_rate = 25000000;
|
|
|
|
c->vst->start_time = 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
return c;
|
2002-10-08 17:58:36 +00:00
|
|
|
}
|
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
int dv_get_packet(DVDemuxContext *c, AVPacket *pkt)
|
2002-10-08 17:58:36 +00:00
|
|
|
{
|
2003-09-29 17:54:07 +00:00
|
|
|
int size = -1;
|
2003-10-31 22:26:26 +00:00
|
|
|
int i;
|
|
|
|
|
2008-10-24 21:41:27 +00:00
|
|
|
for (i = 0; i < c->ach; i++) {
|
2003-10-31 22:26:26 +00:00
|
|
|
if (c->ast[i] && c->audio_pkt[i].size) {
|
|
|
|
*pkt = c->audio_pkt[i];
|
2005-12-22 01:10:11 +00:00
|
|
|
c->audio_pkt[i].size = 0;
|
|
|
|
size = pkt->size;
|
|
|
|
break;
|
2003-10-31 22:26:26 +00:00
|
|
|
}
|
2003-01-27 09:21:30 +00:00
|
|
|
}
|
2003-09-29 17:54:07 +00:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
int dv_produce_packet(DVDemuxContext *c, AVPacket *pkt,
|
2011-04-30 09:55:36 +00:00
|
|
|
uint8_t* buf, int buf_size, int64_t pos)
|
2003-09-29 17:54:07 +00:00
|
|
|
{
|
2003-10-31 22:26:26 +00:00
|
|
|
int size, i;
|
2008-08-28 22:41:00 +00:00
|
|
|
uint8_t *ppcm[4] = {0};
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2006-04-01 23:13:53 +00:00
|
|
|
if (buf_size < DV_PROFILE_BYTES ||
|
2009-10-16 07:55:57 +00:00
|
|
|
!(c->sys = ff_dv_frame_profile(c->sys, buf, buf_size)) ||
|
2006-04-01 23:13:53 +00:00
|
|
|
buf_size < c->sys->frame_size) {
|
|
|
|
return -1; /* Broken frame, or not enough data */
|
|
|
|
}
|
2003-09-29 17:54:07 +00:00
|
|
|
|
|
|
|
/* Queueing audio packet */
|
|
|
|
/* FIXME: in case of no audio/bad audio we have to do something */
|
2003-10-31 22:26:26 +00:00
|
|
|
size = dv_extract_audio_info(c, buf);
|
2008-10-24 21:41:27 +00:00
|
|
|
for (i = 0; i < c->ach; i++) {
|
2011-04-30 09:55:36 +00:00
|
|
|
c->audio_pkt[i].pos = pos;
|
2004-10-13 00:03:00 +00:00
|
|
|
c->audio_pkt[i].size = size;
|
2005-07-17 22:24:36 +00:00
|
|
|
c->audio_pkt[i].pts = c->abytes * 30000*8 / c->ast[i]->codec->bit_rate;
|
2008-08-28 22:41:00 +00:00
|
|
|
ppcm[i] = c->audio_buf[i];
|
2003-10-31 22:26:26 +00:00
|
|
|
}
|
2008-08-28 22:41:00 +00:00
|
|
|
dv_extract_audio(buf, ppcm, c->sys);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2008-10-24 21:37:06 +00:00
|
|
|
/* We work with 720p frames split in half, thus even frames have
|
|
|
|
* channels 0,1 and odd 2,3. */
|
2008-08-28 22:41:00 +00:00
|
|
|
if (c->sys->height == 720) {
|
2009-06-19 21:36:21 +00:00
|
|
|
if (buf[1] & 0x0C) {
|
2008-08-28 22:41:00 +00:00
|
|
|
c->audio_pkt[2].size = c->audio_pkt[3].size = 0;
|
2009-06-19 21:36:21 +00:00
|
|
|
} else {
|
2008-08-28 22:41:00 +00:00
|
|
|
c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
|
2009-06-19 21:36:21 +00:00
|
|
|
c->abytes += size;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
c->abytes += size;
|
2008-08-28 22:41:00 +00:00
|
|
|
}
|
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
/* Now it's time to return video packet */
|
2003-10-31 22:26:26 +00:00
|
|
|
size = dv_extract_video_info(c, buf);
|
2003-02-06 22:34:55 +00:00
|
|
|
av_init_packet(pkt);
|
2008-10-24 21:41:27 +00:00
|
|
|
pkt->data = buf;
|
2011-04-30 09:55:36 +00:00
|
|
|
pkt->pos = pos;
|
2008-10-24 21:41:27 +00:00
|
|
|
pkt->size = size;
|
2010-03-31 12:29:58 +00:00
|
|
|
pkt->flags |= AV_PKT_FLAG_KEY;
|
2003-09-29 17:54:07 +00:00
|
|
|
pkt->stream_index = c->vst->id;
|
2008-10-24 21:41:27 +00:00
|
|
|
pkt->pts = c->frames;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-03-23 05:35:10 +00:00
|
|
|
c->frames++;
|
2003-10-31 22:26:26 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
return size;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-10-12 01:51:04 +00:00
|
|
|
static int64_t dv_frame_offset(AVFormatContext *s, DVDemuxContext *c,
|
|
|
|
int64_t timestamp, int flags)
|
2004-03-23 05:35:10 +00:00
|
|
|
{
|
2004-09-18 00:32:36 +00:00
|
|
|
// FIXME: sys may be wrong if last dv_read_packet() failed (buffer is junk)
|
2009-10-16 07:55:57 +00:00
|
|
|
const DVprofile* sys = ff_dv_codec_profile(c->vst->codec);
|
2005-04-26 11:04:34 +00:00
|
|
|
int64_t offset;
|
2011-03-04 18:57:36 +00:00
|
|
|
int64_t size = avio_size(s->pb) - s->data_offset;
|
2004-10-12 01:51:04 +00:00
|
|
|
int64_t max_offset = ((size-1) / sys->frame_size) * sys->frame_size;
|
2004-09-18 00:32:36 +00:00
|
|
|
|
2005-04-26 11:04:34 +00:00
|
|
|
offset = sys->frame_size * timestamp;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2010-03-23 17:22:25 +00:00
|
|
|
if (size >= 0 && offset > max_offset) offset = max_offset;
|
2004-10-12 01:51:04 +00:00
|
|
|
else if (offset < 0) offset = 0;
|
2004-03-23 05:35:10 +00:00
|
|
|
|
2010-11-27 14:40:12 +00:00
|
|
|
return offset + s->data_offset;
|
2004-03-23 05:35:10 +00:00
|
|
|
}
|
|
|
|
|
2007-01-11 22:32:19 +00:00
|
|
|
void dv_offset_reset(DVDemuxContext *c, int64_t frame_offset)
|
2004-10-13 00:03:00 +00:00
|
|
|
{
|
2007-01-11 22:32:19 +00:00
|
|
|
c->frames= frame_offset;
|
|
|
|
if (c->ach)
|
2008-10-07 16:59:18 +00:00
|
|
|
c->abytes= av_rescale_q(c->frames, c->sys->time_base,
|
|
|
|
(AVRational){8, c->ast[0]->codec->bit_rate});
|
2004-10-13 00:03:00 +00:00
|
|
|
c->audio_pkt[0].size = c->audio_pkt[1].size = 0;
|
2008-08-28 22:41:00 +00:00
|
|
|
c->audio_pkt[2].size = c->audio_pkt[3].size = 0;
|
2004-10-13 00:03:00 +00:00
|
|
|
}
|
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
/************************************************************
|
|
|
|
* Implementation of the easiest DV storage of all -- raw DV.
|
|
|
|
************************************************************/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
typedef struct RawDVContext {
|
2003-10-31 22:26:26 +00:00
|
|
|
DVDemuxContext* dv_demux;
|
2006-03-06 08:54:33 +00:00
|
|
|
uint8_t buf[DV_MAX_FRAME_SIZE];
|
2003-09-29 17:54:07 +00:00
|
|
|
} RawDVContext;
|
|
|
|
|
|
|
|
static int dv_read_header(AVFormatContext *s,
|
|
|
|
AVFormatParameters *ap)
|
|
|
|
{
|
2009-06-15 01:41:59 +00:00
|
|
|
unsigned state, marker_pos = 0;
|
2003-09-29 17:54:07 +00:00
|
|
|
RawDVContext *c = s->priv_data;
|
2006-03-06 08:54:33 +00:00
|
|
|
|
2003-10-31 22:26:26 +00:00
|
|
|
c->dv_demux = dv_init_demux(s);
|
2004-09-19 02:05:22 +00:00
|
|
|
if (!c->dv_demux)
|
|
|
|
return -1;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
state = avio_rb32(s->pb);
|
2009-02-22 09:42:56 +00:00
|
|
|
while ((state & 0xffffff7f) != 0x1f07003f) {
|
|
|
|
if (url_feof(s->pb)) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Cannot find DV header.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-06-15 01:41:59 +00:00
|
|
|
if (state == 0x003f0700 || state == 0xff3f0700)
|
2011-03-03 19:11:45 +00:00
|
|
|
marker_pos = avio_tell(s->pb);
|
|
|
|
if (state == 0xff3f0701 && avio_tell(s->pb) - marker_pos == 80) {
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, -163, SEEK_CUR);
|
2011-02-21 15:43:01 +00:00
|
|
|
state = avio_rb32(s->pb);
|
2009-06-15 01:41:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-02-21 15:43:01 +00:00
|
|
|
state = (state << 8) | avio_r8(s->pb);
|
2009-02-22 09:42:56 +00:00
|
|
|
}
|
|
|
|
AV_WB32(c->buf, state);
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
if (avio_read(s->pb, c->buf + 4, DV_PROFILE_BYTES - 4) <= 0 ||
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, -DV_PROFILE_BYTES, SEEK_CUR) < 0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2004-09-19 02:05:22 +00:00
|
|
|
|
2009-10-16 07:55:57 +00:00
|
|
|
c->dv_demux->sys = ff_dv_frame_profile(c->dv_demux->sys, c->buf, DV_PROFILE_BYTES);
|
2008-08-28 22:41:00 +00:00
|
|
|
if (!c->dv_demux->sys) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Can't determine profile of DV input stream.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-10-07 16:59:18 +00:00
|
|
|
s->bit_rate = av_rescale_q(c->dv_demux->sys->frame_size, (AVRational){8,1},
|
|
|
|
c->dv_demux->sys->time_base);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2004-09-19 02:05:22 +00:00
|
|
|
return 0;
|
2003-09-29 17:54:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
int size;
|
2005-12-17 18:14:38 +00:00
|
|
|
RawDVContext *c = s->priv_data;
|
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
size = dv_get_packet(c->dv_demux, pkt);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
if (size < 0) {
|
2011-04-30 09:55:36 +00:00
|
|
|
int64_t pos = avio_tell(s->pb);
|
2009-01-05 17:50:13 +00:00
|
|
|
if (!c->dv_demux->sys)
|
|
|
|
return AVERROR(EIO);
|
2006-03-06 08:54:33 +00:00
|
|
|
size = c->dv_demux->sys->frame_size;
|
2011-02-21 15:43:01 +00:00
|
|
|
if (avio_read(s->pb, c->buf, size) <= 0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2003-09-29 17:54:07 +00:00
|
|
|
|
2011-04-30 09:55:36 +00:00
|
|
|
size = dv_produce_packet(c->dv_demux, pkt, c->buf, size, pos);
|
2005-12-17 18:14:38 +00:00
|
|
|
}
|
|
|
|
|
2003-09-29 17:54:07 +00:00
|
|
|
return size;
|
2002-10-08 17:58:36 +00:00
|
|
|
}
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
static int dv_read_seek(AVFormatContext *s, int stream_index,
|
2004-10-12 01:51:04 +00:00
|
|
|
int64_t timestamp, int flags)
|
2004-03-23 05:35:10 +00:00
|
|
|
{
|
2008-10-24 21:41:27 +00:00
|
|
|
RawDVContext *r = s->priv_data;
|
2004-10-12 01:51:04 +00:00
|
|
|
DVDemuxContext *c = r->dv_demux;
|
2008-10-24 21:41:27 +00:00
|
|
|
int64_t offset = dv_frame_offset(s, c, timestamp, flags);
|
2004-10-12 01:51:04 +00:00
|
|
|
|
2011-09-14 17:24:25 +00:00
|
|
|
if (avio_seek(s->pb, offset, SEEK_SET) < 0)
|
|
|
|
return -1;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2011-09-14 17:24:25 +00:00
|
|
|
dv_offset_reset(c, offset / c->sys->frame_size);
|
|
|
|
return 0;
|
2004-03-23 05:35:10 +00:00
|
|
|
}
|
|
|
|
|
2002-11-11 09:07:32 +00:00
|
|
|
static int dv_read_close(AVFormatContext *s)
|
2002-10-08 17:58:36 +00:00
|
|
|
{
|
2003-09-29 17:54:07 +00:00
|
|
|
RawDVContext *c = s->priv_data;
|
|
|
|
av_free(c->dv_demux);
|
2002-10-08 17:58:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-26 08:45:59 +00:00
|
|
|
static int dv_probe(AVProbeData *p)
|
|
|
|
{
|
2009-06-15 01:41:59 +00:00
|
|
|
unsigned state, marker_pos = 0;
|
2009-02-26 08:45:59 +00:00
|
|
|
int i;
|
2009-09-14 22:03:07 +00:00
|
|
|
int matches = 0;
|
2009-09-29 10:12:18 +00:00
|
|
|
int secondary_matches = 0;
|
2009-02-26 08:45:59 +00:00
|
|
|
|
|
|
|
if (p->buf_size < 5)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
state = AV_RB32(p->buf);
|
|
|
|
for (i = 4; i < p->buf_size; i++) {
|
|
|
|
if ((state & 0xffffff7f) == 0x1f07003f)
|
2009-09-14 22:03:07 +00:00
|
|
|
matches++;
|
2009-09-29 10:12:18 +00:00
|
|
|
// any section header, also with seq/chan num != 0,
|
|
|
|
// should appear around every 12000 bytes, at least 10 per frame
|
|
|
|
if ((state & 0xff07ff7f) == 0x1f07003f)
|
|
|
|
secondary_matches++;
|
2009-06-15 01:41:59 +00:00
|
|
|
if (state == 0x003f0700 || state == 0xff3f0700)
|
|
|
|
marker_pos = i;
|
|
|
|
if (state == 0xff3f0701 && i - marker_pos == 80)
|
2009-09-14 22:03:07 +00:00
|
|
|
matches++;
|
2009-02-26 08:45:59 +00:00
|
|
|
state = (state << 8) | p->buf[i];
|
|
|
|
}
|
|
|
|
|
2009-09-14 22:03:07 +00:00
|
|
|
if (matches && p->buf_size / matches < 1024*1024) {
|
2009-09-29 10:12:18 +00:00
|
|
|
if (matches > 4 || (secondary_matches >= 10 && p->buf_size / secondary_matches < 24000))
|
2009-09-14 22:03:07 +00:00
|
|
|
return AVPROBE_SCORE_MAX*3/4; // not max to avoid dv in mov to match
|
|
|
|
return AVPROBE_SCORE_MAX/4;
|
|
|
|
}
|
2009-02-26 08:45:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_DV_DEMUXER
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_dv_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "dv",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("DV video format"),
|
|
|
|
.priv_data_size = sizeof(RawDVContext),
|
|
|
|
.read_probe = dv_probe,
|
|
|
|
.read_header = dv_read_header,
|
|
|
|
.read_packet = dv_read_packet,
|
|
|
|
.read_close = dv_read_close,
|
|
|
|
.read_seek = dv_read_seek,
|
2004-03-24 06:32:57 +00:00
|
|
|
.extensions = "dv,dif",
|
2003-08-28 19:53:47 +00:00
|
|
|
};
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif
|