annotate stream/vcd_read_fbsd.h @ 37174:6c941fe7fc3e

Align backslashes followed by a newline (line continuation). Do so when the statement spans over multiple lines.
author ib
date Sun, 07 Sep 2014 22:22:50 +0000
parents 3a192d8ecc56
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30426
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
1 /*
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
2 * This file is part of MPlayer.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
3 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
5 * it under the terms of the GNU General Public License as published by
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
7 * (at your option) any later version.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
8 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
12 * GNU General Public License for more details.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
13 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
14 * You should have received a copy of the GNU General Public License along
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
17 */
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30165
diff changeset
18
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26012
diff changeset
19 #ifndef MPLAYER_VCD_READ_FBSD_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26012
diff changeset
20 #define MPLAYER_VCD_READ_FBSD_H
26012
04f59a060070 Add missing multiple inclusion guards.
diego
parents: 25873
diff changeset
21
30165
b4cbeff5153e Add a few missing header #includes and #defines.
diego
parents: 26184
diff changeset
22 #define _XOPEN_SOURCE 500
b4cbeff5153e Add a few missing header #includes and #defines.
diego
parents: 26184
diff changeset
23
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
24 #include <sys/types.h>
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
25 #include <inttypes.h>
30165
b4cbeff5153e Add a few missing header #includes and #defines.
diego
parents: 26184
diff changeset
26 #include <unistd.h>
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
27 #include "libavutil/intreadwrite.h"
1038
b36fb1ae4b53 applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents: 958
diff changeset
28 #include <sys/cdio.h>
30165
b4cbeff5153e Add a few missing header #includes and #defines.
diego
parents: 26184
diff changeset
29 #include <sys/ioctl.h>
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
30 #if defined(__NetBSD__) || defined(__OpenBSD__)
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
31 #define VCD_NETBSD 1
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
32 #endif
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
33 #ifdef VCD_NETBSD
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
34 #include <sys/scsiio.h>
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
35 #define TOCADDR(te) ((te).data->addr)
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
36 #define READ_TOC CDIOREADTOCENTRYS
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
37 #else
1038
b36fb1ae4b53 applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents: 958
diff changeset
38 #include <sys/cdrio.h>
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
39 #define TOCADDR(te) ((te).entry.addr)
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
40 #define READ_TOC CDIOREADTOCENTRY
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
41 #endif
26184
7ee4ae1648e6 Add missing header #includes to fix 'make checkheaders'.
diego
parents: 26029
diff changeset
42 #include "mp_msg.h"
1038
b36fb1ae4b53 applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents: 958
diff changeset
43
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
44 //=================== VideoCD ==========================
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
45 #define CDROM_LEADOUT 0xAA
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
46
1177
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
47 typedef struct {
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
48 uint8_t sync [12];
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
49 uint8_t header [4];
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
50 uint8_t subheader [8];
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
51 uint8_t data [2324];
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
52 uint8_t spare [4];
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
53 } cdsector_t;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
54
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
55 #ifdef VCD_NETBSD
23859
df48923d6325 Fix several 100l
reimar
parents: 23858
diff changeset
56 typedef struct ioc_read_toc_entry vcd_tocentry;
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
57 #else
23859
df48923d6325 Fix several 100l
reimar
parents: 23858
diff changeset
58 typedef struct ioc_read_toc_single_entry vcd_tocentry;
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
59 #endif
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
60
9887
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
61 typedef struct mp_vcd_priv_st {
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
62 int fd;
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
63 vcd_tocentry entry;
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
64 #ifdef VCD_NETBSD
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
65 struct cd_toc_entry entry_data;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
66 #else
9887
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
67 cdsector_t buf;
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
68 #endif
25411
aef6ff061c9a Caching toc header in vcd private structure for later use.
ulion
parents: 23862
diff changeset
69 struct ioc_toc_header tochdr;
36433
3a192d8ecc56 Revise and fix stream control for VCD.
ib
parents: 33349
diff changeset
70 unsigned int track;
9887
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
71 } mp_vcd_priv_t;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
72
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
73 static inline void
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
74 vcd_set_msf(mp_vcd_priv_t* vcd, unsigned int sect)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
75 {
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
76 #ifdef VCD_NETBSD
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
77 vcd->entry.data = &vcd->entry_data;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
78 #endif
23862
a20ea1dd0812 Fix MSF -> sector conversion being 150 sectors of
reimar
parents: 23861
diff changeset
79 sect += 150;
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
80 TOCADDR(vcd->entry).msf.frame = sect % 75;
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
81 sect = sect / 75;
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
82 TOCADDR(vcd->entry).msf.second = sect % 60;
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
83 sect = sect / 60;
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
84 TOCADDR(vcd->entry).msf.minute = sect;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
85 }
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
86
23852
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
87 static inline void
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
88 vcd_inc_msf(mp_vcd_priv_t* vcd)
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
89 {
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
90 #ifdef VCD_NETBSD
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
91 vcd->entry.data = &vcd->entry_data;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
92 #endif
23852
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
93 TOCADDR(vcd->entry).msf.frame++;
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
94 if (TOCADDR(vcd->entry).msf.frame==75){
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
95 TOCADDR(vcd->entry).msf.frame=0;
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
96 TOCADDR(vcd->entry).msf.second++;
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
97 if (TOCADDR(vcd->entry).msf.second==60){
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
98 TOCADDR(vcd->entry).msf.second=0;
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
99 TOCADDR(vcd->entry).msf.minute++;
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
100 }
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
101 }
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
102 }
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
103
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
104 static inline unsigned int
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
105 vcd_get_msf(mp_vcd_priv_t* vcd)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
106 {
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
107 #ifdef VCD_NETBSD
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
108 vcd->entry.data = &vcd->entry_data;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
109 #endif
23847
773e6c50d1b8 TOCADDR macro as first step to common *BSD vcd reading code
reimar
parents: 19271
diff changeset
110 return TOCADDR(vcd->entry).msf.frame +
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
111 (TOCADDR(vcd->entry).msf.second +
23862
a20ea1dd0812 Fix MSF -> sector conversion being 150 sectors of
reimar
parents: 23861
diff changeset
112 TOCADDR(vcd->entry).msf.minute * 60) * 75 - 150;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
113 }
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
114
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
115 /**
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
116 * \brief read a TOC entry
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
117 * \param fd device to read from
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
118 * \param dst buffer to read data into
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
119 * \param nr track number to read info for
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
120 * \return 1 on success, 0 on failure
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
121 */
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
122 static int
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
123 read_toc_entry(mp_vcd_priv_t *vcd, int nr)
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
124 {
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
125 vcd->entry.address_format = CD_MSF_FORMAT;
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
126 #ifdef VCD_NETBSD
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
127 vcd->entry.data_len = sizeof(struct cd_toc_entry);
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
128 vcd->entry.data = &vcd->entry_data;
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
129 vcd->entry.starting_track = nr;
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
130 #else
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
131 vcd->entry.track = nr;
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
132 #endif
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
133 if (ioctl(vcd->fd, READ_TOC, &vcd->entry) == -1) {
23858
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
134 mp_msg(MSGT_OPEN,MSGL_ERR,"read CDROM toc entry: %s\n",strerror(errno));
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
135 return 0;
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
136 }
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
137 return 1;
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
138 }
85cb783c723c Factor out some common code
reimar
parents: 23857
diff changeset
139
33349
3ab3212fb624 Make vcd_seek_to_track static, the GUI no longer needs to
reimar
parents: 30981
diff changeset
140 static int
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
141 vcd_seek_to_track(mp_vcd_priv_t* vcd, int track)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
142 {
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
143 if (!read_toc_entry(vcd, track))
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
144 return -1;
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
145 return VCD_SECTOR_DATA * vcd_get_msf(vcd);
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
146 }
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
147
30670
fbd6ba7e0e14 Mark vcd_get_track_end () and vcd_read_toc() as static.
diego
parents: 30426
diff changeset
148 static int
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
149 vcd_get_track_end(mp_vcd_priv_t* vcd, int track)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
150 {
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
151 if (!read_toc_entry(vcd,
25411
aef6ff061c9a Caching toc header in vcd private structure for later use.
ulion
parents: 23862
diff changeset
152 track < vcd->tochdr.ending_track ? track + 1 : CDROM_LEADOUT))
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
153 return -1;
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
154 return VCD_SECTOR_DATA * vcd_get_msf(vcd);
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
155 }
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
156
30670
fbd6ba7e0e14 Mark vcd_get_track_end () and vcd_read_toc() as static.
diego
parents: 30426
diff changeset
157 static mp_vcd_priv_t*
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
158 vcd_read_toc(int fd)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
159 {
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
160 struct ioc_toc_header tochdr;
9887
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
161 mp_vcd_priv_t* vcd;
23861
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
162 int i, last_startsect;
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
163 if (ioctl(fd, CDIOREADTOCHEADER, &tochdr) == -1) {
9887
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
164 mp_msg(MSGT_OPEN,MSGL_ERR,"read CDROM toc header: %s\n",strerror(errno));
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
165 return NULL;
d862231858d5 Make the vcd API fully reentrant.
albeu
parents: 7406
diff changeset
166 }
18237
4231482179b6 Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents: 16547
diff changeset
167 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VCD_START_TRACK=%d\n", tochdr.starting_track);
4231482179b6 Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents: 16547
diff changeset
168 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VCD_END_TRACK=%d\n", tochdr.ending_track);
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
169 vcd = malloc(sizeof(mp_vcd_priv_t));
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
170 vcd->fd = fd;
25411
aef6ff061c9a Caching toc header in vcd private structure for later use.
ulion
parents: 23862
diff changeset
171 vcd->tochdr = tochdr;
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
172 for (i = tochdr.starting_track; i <= tochdr.ending_track + 1; i++) {
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
173 if (!read_toc_entry(vcd,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
174 i <= tochdr.ending_track ? i : CDROM_LEADOUT)) {
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
175 free(vcd);
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
176 return NULL;
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
177 }
23851
6dbeddab0b45 More VCD cosmetics
reimar
parents: 23849
diff changeset
178
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
179 if (i <= tochdr.ending_track)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
180 mp_msg(MSGT_OPEN,MSGL_INFO,"track %02d: adr=%d ctrl=%d format=%d %02d:%02d:%02d\n",
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
181 #ifdef VCD_NETBSD
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
182 (int)vcd->entry.starting_track,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
183 (int)vcd->entry.data->addr_type,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
184 (int)vcd->entry.data->control,
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
185 #else
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
186 (int)vcd->entry.track,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
187 (int)vcd->entry.entry.addr_type,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
188 (int)vcd->entry.entry.control,
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
189 #endif
23860
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
190 (int)vcd->entry.address_format,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
191 (int)TOCADDR(vcd->entry).msf.minute,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
192 (int)TOCADDR(vcd->entry).msf.second,
866b72d264a8 Some more *BSD vcd_read simplification
reimar
parents: 23859
diff changeset
193 (int)TOCADDR(vcd->entry).msf.frame
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
194 );
16547
aa15d627a00b Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents: 9899
diff changeset
195
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
196 if (mp_msg_test(MSGT_IDENTIFY, MSGL_INFO))
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
197 {
23861
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
198 int startsect = vcd_get_msf(vcd);
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
199 if (i > tochdr.starting_track)
16547
aa15d627a00b Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents: 9899
diff changeset
200 {
23861
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
201 // convert duraion to MSF
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
202 vcd_set_msf(vcd, startsect - last_startsect);
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
203 mp_msg(MSGT_IDENTIFY, MSGL_INFO,
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
204 "ID_VCD_TRACK_%d_MSF=%02d:%02d:%02d\n",
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
205 i - 1,
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
206 TOCADDR(vcd->entry).msf.minute,
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
207 TOCADDR(vcd->entry).msf.second,
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
208 TOCADDR(vcd->entry).msf.frame);
16547
aa15d627a00b Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents: 9899
diff changeset
209 }
23861
5d8097aa11cc Simplify track length calculation
reimar
parents: 23860
diff changeset
210 last_startsect = startsect;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
211 }
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
212 }
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
213 return vcd;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
214 }
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
215
30981
9bab99cfdff2 Try to fix VCD compilation on non-Linux systems.
reimar
parents: 30670
diff changeset
216 static int vcd_end_track(mp_vcd_priv_t* vcd)
9bab99cfdff2 Try to fix VCD compilation on non-Linux systems.
reimar
parents: 30670
diff changeset
217 {
9bab99cfdff2 Try to fix VCD compilation on non-Linux systems.
reimar
parents: 30670
diff changeset
218 return vcd->tochdr.ending_track;
9bab99cfdff2 Try to fix VCD compilation on non-Linux systems.
reimar
parents: 30670
diff changeset
219 }
9bab99cfdff2 Try to fix VCD compilation on non-Linux systems.
reimar
parents: 30670
diff changeset
220
23849
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
221 static int
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
222 vcd_read(mp_vcd_priv_t* vcd, char *mem)
2911a78219a8 Cosmetics to reduce diff between Free- and netBSD vcd stuff
reimar
parents: 23847
diff changeset
223 {
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
224 #ifdef VCD_NETBSD
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
225 struct scsireq sc;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
226 int lba = vcd_get_msf(vcd);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
227 int blocks;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
228 int rc;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
229
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
230 blocks = 1;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
231
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
232 memset(&sc, 0, sizeof(sc));
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
233 sc.cmd[0] = 0xBE;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
234 sc.cmd[1] = 5 << 2; // mode2/form2
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
235 AV_WB32(&sc.cmd[2], lba);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
236 AV_WB24(&sc.cmd[6], blocks);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
237 sc.cmd[9] = 1 << 4; // user data only
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
238 sc.cmd[10] = 0; // no subchannel
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
239 sc.cmdlen = 12;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
240 sc.databuf = (caddr_t) mem;
25873
cf37007e1817 vcd_read must read exactly VCD_SECTOR_DATA bytes.
reimar
parents: 25411
diff changeset
241 sc.datalen = VCD_SECTOR_DATA;
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
242 sc.senselen = sizeof(sc.sense);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
243 sc.flags = SCCMD_READ;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
244 sc.timeout = 10000;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
245 rc = ioctl(vcd->fd, SCIOCCOMMAND, &sc);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
246 if (rc == -1) {
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
247 mp_msg(MSGT_STREAM,MSGL_ERR,"SCIOCCOMMAND: %s\n",strerror(errno));
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
248 return -1;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
249 }
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
250 if (sc.retsts || sc.error) {
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
251 mp_msg(MSGT_STREAM,MSGL_ERR,"scsi command failed: status %d error %d\n",
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
252 sc.retsts,sc.error);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
253 return -1;
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
254 }
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
255 #else
23851
6dbeddab0b45 More VCD cosmetics
reimar
parents: 23849
diff changeset
256 if (pread(vcd->fd,&vcd->buf,VCD_SECTOR_SIZE,vcd_get_msf(vcd)*VCD_SECTOR_SIZE)
6dbeddab0b45 More VCD cosmetics
reimar
parents: 23849
diff changeset
257 != VCD_SECTOR_SIZE) return 0; // EOF?
1177
f2516027a346 FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents: 1038
diff changeset
258
23857
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
259 memcpy(mem,vcd->buf.data,VCD_SECTOR_DATA);
d5223bab4b92 Somewhat unified *BSD vcd reading
reimar
parents: 23856
diff changeset
260 #endif
23852
5982ecb1dcdf vcd_inc_msf function also for freebsd vcd_read
reimar
parents: 23851
diff changeset
261 vcd_inc_msf(vcd);
23851
6dbeddab0b45 More VCD cosmetics
reimar
parents: 23849
diff changeset
262 return VCD_SECTOR_DATA;
958
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
263 }
162a78d3cc08 FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
arpi_esp
parents:
diff changeset
264
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26012
diff changeset
265 #endif /* MPLAYER_VCD_READ_FBSD_H */