2010-01-30 22:26:47 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
2013-07-12 20:11:08 +00:00
|
|
|
* Original author: Albeu
|
|
|
|
*
|
2010-01-30 22:26:47 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2003-04-09 07:31:11 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2008-10-13 16:23:55 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
2007-03-12 15:48:13 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "core/mp_msg.h"
|
2003-04-09 07:31:11 +00:00
|
|
|
#include "stream.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "core/m_option.h"
|
|
|
|
#include "core/m_struct.h"
|
2003-04-09 07:31:11 +00:00
|
|
|
|
2003-05-17 12:24:01 +00:00
|
|
|
#include <fcntl.h>
|
2003-04-09 07:31:11 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2008-10-13 16:23:55 +00:00
|
|
|
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
|
2003-04-09 07:31:11 +00:00
|
|
|
#include <sys/ioctl.h>
|
2007-03-12 15:48:13 +00:00
|
|
|
#endif
|
2003-04-09 07:31:11 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
2012-01-16 20:33:52 +00:00
|
|
|
#include "talloc.h"
|
|
|
|
|
2013-06-05 00:05:52 +00:00
|
|
|
#define VCD_SECTOR_SIZE 2352
|
|
|
|
#define VCD_SECTOR_OFFS 24
|
|
|
|
#define VCD_SECTOR_DATA 2324
|
|
|
|
|
2007-07-27 17:37:53 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__NetBSD__) || defined(__OpenBSD__)
|
2009-07-06 23:26:13 +00:00
|
|
|
#include "vcd_read_fbsd.h"
|
2007-12-11 23:52:55 +00:00
|
|
|
#elif defined(__APPLE__)
|
2009-07-06 23:26:13 +00:00
|
|
|
#include "vcd_read_darwin.h"
|
2008-10-13 16:23:55 +00:00
|
|
|
#elif defined(__MINGW32__) || defined(__CYGWIN__)
|
2007-03-12 15:48:13 +00:00
|
|
|
#include "vcd_read_win32.h"
|
2003-04-09 07:31:11 +00:00
|
|
|
#else
|
|
|
|
#include "vcd_read.h"
|
|
|
|
#endif
|
|
|
|
|
2003-08-13 11:18:24 +00:00
|
|
|
extern char *cdrom_device;
|
|
|
|
|
2003-04-09 07:31:11 +00:00
|
|
|
static struct stream_priv_s {
|
|
|
|
int track;
|
|
|
|
char* device;
|
|
|
|
} stream_priv_dflts = {
|
|
|
|
1,
|
2003-08-13 11:18:24 +00:00
|
|
|
NULL
|
2003-04-09 07:31:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f)
|
|
|
|
/// URL definition
|
2007-12-02 21:37:08 +00:00
|
|
|
static const m_option_t stream_opts_fields[] = {
|
2003-04-09 07:31:11 +00:00
|
|
|
{ "track", ST_OFF(track), CONF_TYPE_INT, M_OPT_MIN, 1, 0, NULL },
|
|
|
|
{ "device", ST_OFF(device), CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
|
|
/// For url parsing
|
|
|
|
{ "hostname", ST_OFF(track), CONF_TYPE_INT, M_OPT_MIN, 1, 0, NULL },
|
|
|
|
{ "filename", ST_OFF(device), CONF_TYPE_STRING, 0, 0 ,0, NULL},
|
|
|
|
{ NULL, NULL, 0, 0, 0, 0, NULL }
|
|
|
|
};
|
2008-01-13 12:34:42 +00:00
|
|
|
static const struct m_struct_st stream_opts = {
|
2003-04-09 07:31:11 +00:00
|
|
|
"vcd",
|
|
|
|
sizeof(struct stream_priv_s),
|
|
|
|
&stream_priv_dflts,
|
|
|
|
stream_opts_fields
|
|
|
|
};
|
|
|
|
|
|
|
|
static int fill_buffer(stream_t *s, char* buffer, int max_len){
|
2005-07-03 15:20:14 +00:00
|
|
|
if(s->pos > s->end_pos) /// don't past end of current track
|
|
|
|
return 0;
|
2013-06-05 00:04:21 +00:00
|
|
|
if (max_len < VCD_SECTOR_DATA)
|
|
|
|
return -1;
|
2003-04-09 07:31:11 +00:00
|
|
|
return vcd_read(s->priv,buffer);
|
|
|
|
}
|
|
|
|
|
2012-11-18 19:46:12 +00:00
|
|
|
static int seek(stream_t *s,int64_t newpos) {
|
2003-04-09 07:31:11 +00:00
|
|
|
s->pos = newpos;
|
|
|
|
vcd_set_msf(s->priv,s->pos/VCD_SECTOR_DATA);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void close_s(stream_t *stream) {
|
stream: remove fd member
Stream implementations could set this to a unix file descriptor. The
generic stream code could use it as fallback for a few things. This
was confusing and insane. In most cases, the stream implementations
defined all callbacks, so setting the fd member didn't have any
advantages, other than avoiding defining a private struct to store it.
It appears that even if the stream implementation used close() on the
fd (or something equivalent), stream.c would close() it a second time
(and on windows, even would call closesocket()), which should be proof
for the insanity of this code.
For stream_file.c, additionally make sure we don't close stdin or
stdout if "-" is used as filename.
For stream_vcd.c, remove the control() code. This code most likely
didn't make the slightest sense, because it used a different type
for stream->priv. It also leaked memory. Maybe it worked, but it's
incorrect and insignificant anyway, so kill it. This code was added
with commit 9521c19 (svn commit 31019).
Untested for all protocols other than stream_file.c.
2013-07-12 20:07:07 +00:00
|
|
|
mp_vcd_priv_t *p = stream->priv;
|
|
|
|
close(p->fd);
|
|
|
|
free(p);
|
2003-04-09 07:31:11 +00:00
|
|
|
}
|
|
|
|
|
2013-07-11 19:10:42 +00:00
|
|
|
static int open_s(stream_t *stream,int mode, void* opts)
|
|
|
|
{
|
2010-02-28 11:30:35 +00:00
|
|
|
struct stream_priv_s* p = opts;
|
2007-03-24 10:37:05 +00:00
|
|
|
int ret,ret2,f,sect,tmp;
|
2003-04-09 07:31:11 +00:00
|
|
|
mp_vcd_priv_t* vcd;
|
2007-01-10 14:56:23 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
2003-04-09 07:31:11 +00:00
|
|
|
int bsize = VCD_SECTOR_SIZE;
|
|
|
|
#endif
|
2008-10-13 16:23:55 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
2007-03-12 15:48:13 +00:00
|
|
|
HANDLE hd;
|
|
|
|
char device[] = "\\\\.\\?:";
|
|
|
|
#endif
|
2003-04-09 07:31:11 +00:00
|
|
|
|
2007-03-12 15:48:13 +00:00
|
|
|
if(mode != STREAM_READ
|
2008-10-13 16:23:55 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
2007-03-12 15:48:13 +00:00
|
|
|
|| GetVersion() > 0x80000000 // Win9x
|
|
|
|
#endif
|
|
|
|
) {
|
2003-04-09 07:31:11 +00:00
|
|
|
m_struct_free(&stream_opts,opts);
|
2007-08-28 22:38:45 +00:00
|
|
|
return STREAM_UNSUPPORTED;
|
2003-04-09 07:31:11 +00:00
|
|
|
}
|
|
|
|
|
2003-08-13 11:18:24 +00:00
|
|
|
if (!p->device) {
|
|
|
|
if(cdrom_device)
|
2012-01-16 20:33:52 +00:00
|
|
|
p->device = talloc_strdup(NULL, cdrom_device);
|
2003-08-13 11:18:24 +00:00
|
|
|
else
|
2012-01-16 20:33:52 +00:00
|
|
|
p->device = talloc_strdup(NULL, DEFAULT_CDROM_DEVICE);
|
2003-08-13 11:18:24 +00:00
|
|
|
}
|
|
|
|
|
2008-10-13 16:23:55 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
2007-03-12 15:48:13 +00:00
|
|
|
device[4] = p->device[0];
|
|
|
|
/* open() can't be used for devices so do it the complicated way */
|
|
|
|
hd = CreateFile(device, GENERIC_READ, FILE_SHARE_READ, NULL,
|
|
|
|
OPEN_EXISTING, FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
2013-07-13 01:58:49 +00:00
|
|
|
f = _open_osfhandle((intptr_t)hd, _O_RDONLY);
|
2007-03-12 15:48:13 +00:00
|
|
|
#else
|
2003-04-09 07:31:11 +00:00
|
|
|
f=open(p->device,O_RDONLY);
|
2007-03-12 15:48:13 +00:00
|
|
|
#endif
|
2009-07-06 23:26:13 +00:00
|
|
|
if(f<0){
|
2009-07-06 22:15:02 +00:00
|
|
|
mp_tmsg(MSGT_OPEN,MSGL_ERR,"CD-ROM Device '%s' not found.\n",p->device);
|
2003-04-09 07:31:11 +00:00
|
|
|
m_struct_free(&stream_opts,opts);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
vcd = vcd_read_toc(f);
|
|
|
|
if(!vcd) {
|
|
|
|
mp_msg(MSGT_OPEN,MSGL_ERR,"Failed to get cd toc\n");
|
|
|
|
close(f);
|
|
|
|
m_struct_free(&stream_opts,opts);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
ret2=vcd_get_track_end(vcd,p->track);
|
|
|
|
if(ret2<0){
|
2010-03-07 17:25:52 +00:00
|
|
|
mp_msg(MSGT_OPEN, MSGL_ERR, "%s (get)\n",
|
|
|
|
mp_gtext("Error selecting VCD track."));
|
2003-04-09 07:31:11 +00:00
|
|
|
close(f);
|
|
|
|
free(vcd);
|
|
|
|
m_struct_free(&stream_opts,opts);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
ret=vcd_seek_to_track(vcd,p->track);
|
|
|
|
if(ret<0){
|
2010-03-07 17:25:52 +00:00
|
|
|
mp_msg(MSGT_OPEN, MSGL_ERR, "%s (seek)\n",
|
|
|
|
mp_gtext("Error selecting VCD track."));
|
2003-04-09 07:31:11 +00:00
|
|
|
close(f);
|
|
|
|
free(vcd);
|
|
|
|
m_struct_free(&stream_opts,opts);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
2007-03-24 10:37:05 +00:00
|
|
|
/* search forward up to at most 3 seconds to skip leading margin */
|
|
|
|
sect = ret / VCD_SECTOR_DATA;
|
|
|
|
for (tmp = sect; tmp < sect + 3 * 75; tmp++) {
|
|
|
|
char mem[VCD_SECTOR_DATA];
|
|
|
|
//since MPEG packs are block-aligned we stop discarding sectors if they are non-null
|
|
|
|
if (vcd_read(vcd, mem) != VCD_SECTOR_DATA || mem[2] || mem[3])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mp_msg(MSGT_OPEN, MSGL_DBG2, "%d leading sectors skipped\n", tmp - sect);
|
|
|
|
vcd_set_msf(vcd, tmp);
|
|
|
|
ret = tmp * VCD_SECTOR_DATA;
|
|
|
|
|
2003-04-09 07:31:11 +00:00
|
|
|
mp_msg(MSGT_OPEN,MSGL_V,"VCD start byte position: 0x%X end: 0x%X\n",ret,ret2);
|
|
|
|
|
2007-01-10 14:56:23 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
2003-04-09 07:31:11 +00:00
|
|
|
if (ioctl (f, CDRIOCSETBLOCKSIZE, &bsize) == -1) {
|
|
|
|
mp_msg(MSGT_OPEN,MSGL_WARN,"Error in CDRIOCSETBLOCKSIZE");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
stream->sector_size = VCD_SECTOR_DATA;
|
|
|
|
stream->start_pos=ret;
|
|
|
|
stream->end_pos=ret2;
|
|
|
|
stream->priv = vcd;
|
|
|
|
|
|
|
|
stream->fill_buffer = fill_buffer;
|
|
|
|
stream->seek = seek;
|
|
|
|
stream->close = close_s;
|
2013-07-11 19:10:42 +00:00
|
|
|
stream->demuxer = "lavf"; // mpegps ( or "vcd"?)
|
2003-04-09 07:31:11 +00:00
|
|
|
|
|
|
|
m_struct_free(&stream_opts,opts);
|
|
|
|
return STREAM_OK;
|
|
|
|
}
|
|
|
|
|
2007-12-02 13:22:53 +00:00
|
|
|
const stream_info_t stream_info_vcd = {
|
2003-04-09 07:31:11 +00:00
|
|
|
"vcd",
|
|
|
|
open_s,
|
|
|
|
{ "vcd", NULL },
|
|
|
|
&stream_opts,
|
|
|
|
1 // Urls are an option string
|
|
|
|
};
|