annotate stream/stream_vcd.c @ 21926:a8cd73869242

at open() assign *file_format=DEMUXER_TYPE_MPEG_PS to avoid useless demuxer probing
author nicodvb
date Tue, 16 Jan 2007 22:38:26 +0000
parents 3ff1eade91f9
children 72fbf66a9429
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
1
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
2 #include "config.h"
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
3
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
4 #include "mp_msg.h"
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
5 #include "stream.h"
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
6 #include "help_mp.h"
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15912
diff changeset
7 #include "m_option.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15912
diff changeset
8 #include "m_struct.h"
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
9
10121
d42177a0da2a Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents: 9886
diff changeset
10 #include <fcntl.h>
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
11 #include <stdlib.h>
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
12 #include <unistd.h>
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
13 #include <sys/ioctl.h>
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
14 #include <errno.h>
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
15
21848
3ff1eade91f9 GNU/kFreeBSD support, closes Bugzilla #704.
diego
parents: 19271
diff changeset
16 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
17 #include <sys/cdrio.h>
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
18 #include "vcd_read_fbsd.h"
12797
b2419eef04da OpenBSD portability patches from the OpenBSD ports tree
diego
parents: 10591
diff changeset
19 #elif defined(__NetBSD__) || defined (__OpenBSD__)
13678
dc1facd7c7b0 add vcd support to darwin for ppc
nplourde
parents: 12797
diff changeset
20 #include "vcd_read_nbsd.h"
13681
e52daf7f3bcc enable vcd for all darwin based sys not only mac osx
nplourde
parents: 13678
diff changeset
21 #elif defined(SYS_DARWIN)
e52daf7f3bcc enable vcd for all darwin based sys not only mac osx
nplourde
parents: 13678
diff changeset
22 #include "vcd_read_darwin.h"
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
23 #else
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
24 #include "vcd_read.h"
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
25 #endif
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
26
21926
a8cd73869242 at open() assign *file_format=DEMUXER_TYPE_MPEG_PS to avoid useless demuxer probing
nicodvb
parents: 21848
diff changeset
27 #include "libmpdemux/demuxer.h"
a8cd73869242 at open() assign *file_format=DEMUXER_TYPE_MPEG_PS to avoid useless demuxer probing
nicodvb
parents: 21848
diff changeset
28
10591
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
29 extern char *cdrom_device;
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
30
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
31 static struct stream_priv_s {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
32 int track;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
33 char* device;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
34 } stream_priv_dflts = {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
35 1,
10591
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
36 NULL
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
37 };
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
38
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
39 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f)
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
40 /// URL definition
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
41 static m_option_t stream_opts_fields[] = {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
42 { "track", ST_OFF(track), CONF_TYPE_INT, M_OPT_MIN, 1, 0, NULL },
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
43 { "device", ST_OFF(device), CONF_TYPE_STRING, 0, 0 ,0, NULL},
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
44 /// For url parsing
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
45 { "hostname", ST_OFF(track), CONF_TYPE_INT, M_OPT_MIN, 1, 0, NULL },
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
46 { "filename", ST_OFF(device), CONF_TYPE_STRING, 0, 0 ,0, NULL},
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
47 { NULL, NULL, 0, 0, 0, 0, NULL }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
48 };
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
49 static struct m_struct_st stream_opts = {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
50 "vcd",
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
51 sizeof(struct stream_priv_s),
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
52 &stream_priv_dflts,
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
53 stream_opts_fields
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
54 };
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
55
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
56 static int fill_buffer(stream_t *s, char* buffer, int max_len){
15912
25feca1387e7 don't read past the end of the selected track
nicodvb
parents: 15566
diff changeset
57 if(s->pos > s->end_pos) /// don't past end of current track
25feca1387e7 don't read past the end of the selected track
nicodvb
parents: 15566
diff changeset
58 return 0;
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
59 return vcd_read(s->priv,buffer);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
60 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
61
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
62 static int seek(stream_t *s,off_t newpos) {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
63 s->pos = newpos;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
64 vcd_set_msf(s->priv,s->pos/VCD_SECTOR_DATA);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
65 return 1;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
66 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
67
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
68 static void close_s(stream_t *stream) {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
69 free(stream->priv);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
70 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
71
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
72 static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
73 struct stream_priv_s* p = (struct stream_priv_s*)opts;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
74 int ret,ret2,f;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
75 mp_vcd_priv_t* vcd;
21848
3ff1eade91f9 GNU/kFreeBSD support, closes Bugzilla #704.
diego
parents: 19271
diff changeset
76 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
77 int bsize = VCD_SECTOR_SIZE;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
78 #endif
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
79
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
80 if(mode != STREAM_READ) {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
81 m_struct_free(&stream_opts,opts);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
82 return STREAM_UNSUPORTED;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
83 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
84
10591
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
85 if (!p->device) {
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
86 if(cdrom_device)
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
87 p->device = strdup(cdrom_device);
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
88 else
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
89 p->device = strdup(DEFAULT_CDROM_DEVICE);
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
90 }
0d381b648b51 Fix -cdrom-device to work again with cdda and vcd.
albeu
parents: 10121
diff changeset
91
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
92 f=open(p->device,O_RDONLY);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
93 if(f<0){
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
94 mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_CdDevNotfound,p->device);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
95 m_struct_free(&stream_opts,opts);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
96 return STREAM_ERROR;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
97 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
98
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
99 vcd = vcd_read_toc(f);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
100 if(!vcd) {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
101 mp_msg(MSGT_OPEN,MSGL_ERR,"Failed to get cd toc\n");
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
102 close(f);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
103 m_struct_free(&stream_opts,opts);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
104 return STREAM_ERROR;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
105 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
106 ret2=vcd_get_track_end(vcd,p->track);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
107 if(ret2<0){
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
108 mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_ErrTrackSelect " (get)\n");
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
109 close(f);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
110 free(vcd);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
111 m_struct_free(&stream_opts,opts);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
112 return STREAM_ERROR;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
113 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
114 ret=vcd_seek_to_track(vcd,p->track);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
115 if(ret<0){
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
116 mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_ErrTrackSelect " (seek)\n");
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
117 close(f);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
118 free(vcd);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
119 m_struct_free(&stream_opts,opts);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
120 return STREAM_ERROR;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
121 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
122 mp_msg(MSGT_OPEN,MSGL_V,"VCD start byte position: 0x%X end: 0x%X\n",ret,ret2);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
123
21848
3ff1eade91f9 GNU/kFreeBSD support, closes Bugzilla #704.
diego
parents: 19271
diff changeset
124 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
125 if (ioctl (f, CDRIOCSETBLOCKSIZE, &bsize) == -1) {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
126 mp_msg(MSGT_OPEN,MSGL_WARN,"Error in CDRIOCSETBLOCKSIZE");
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
127 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
128 #endif
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
129
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
130 stream->fd = f;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
131 stream->type = STREAMTYPE_VCD;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
132 stream->sector_size = VCD_SECTOR_DATA;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
133 stream->start_pos=ret;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
134 stream->end_pos=ret2;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
135 stream->priv = vcd;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
136
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
137 stream->fill_buffer = fill_buffer;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
138 stream->seek = seek;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
139 stream->close = close_s;
21926
a8cd73869242 at open() assign *file_format=DEMUXER_TYPE_MPEG_PS to avoid useless demuxer probing
nicodvb
parents: 21848
diff changeset
140 *file_format = DEMUXER_TYPE_MPEG_PS;
9886
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
141
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
142 m_struct_free(&stream_opts,opts);
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
143 return STREAM_OK;
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
144 }
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
145
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
146 stream_info_t stream_info_vcd = {
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
147 "Video CD",
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
148 "vcd",
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
149 "Albeu",
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
150 "based on the code from ???",
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
151 open_s,
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
152 { "vcd", NULL },
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
153 &stream_opts,
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
154 1 // Urls are an option string
e578e4375434 Port vcd to the new API
albeu
parents:
diff changeset
155 };