Mercurial > mplayer.hg
annotate libmpdemux/demux_ty.c @ 30272:c6c40936049c
We only need to disable seeking back in ad_ffmpeg when we actually _use_
a parser, not when just needs_parsing is set.
Fixes playback of e.g. ADPCM in AVI like http://samples.mplayerhq.hu/avi/imaadpcm.avi
author | reimar |
---|---|
date | Fri, 15 Jan 2010 21:01:31 +0000 |
parents | 83425130939d |
children | 737b7fd47ef4 |
rev | line source |
---|---|
10263 | 1 /* |
2 * tivo@wingert.org, February 2003 | |
3 * | |
4 * Copyright (C) 2003 Christopher R. Wingert | |
5 * | |
6 * The license covers the portions of this file regarding TiVo additions. | |
7 * | |
24487 | 8 * Olaf Beck and Tridge (indirectly) were essential at providing |
9 * information regarding the format of the TiVo streams. | |
10263 | 10 * |
24487 | 11 * However, no code in the following subsection is directly copied from |
10263 | 12 * either author. |
13 * | |
26742
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
14 * This file is part of MPlayer. |
10263 | 15 * |
26742
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
16 * MPlayer is free software; you can redistribute it and/or modify |
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
17 * it under the terms of the GNU General Public License as published by |
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
18 * the Free Software Foundation; either version 2 of the License, or |
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
19 * (at your option) any later version. |
10263 | 20 * |
26742
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
21 * MPlayer is distributed in the hope that it will be useful, |
10263 | 22 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 * GNU General Public License for more details. | |
25 * | |
26742
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
26 * You should have received a copy of the GNU General Public License along |
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
27 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
0c1db5fd3f79
Use standard license headers with standard formatting.
diego
parents:
25883
diff
changeset
|
28 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
10263 | 29 */ |
30 | |
31 | |
32 #include <stdio.h> | |
33 #include <stdlib.h> | |
34 #include <unistd.h> | |
35 #include <time.h> | |
36 #include <stdarg.h> | |
37 | |
38 #include "config.h" | |
39 #include "mp_msg.h" | |
40 #include "help_mp.h" | |
41 | |
22605
4d81dbdf46b9
Add explicit location for headers from the stream/ directory.
diego
parents:
20141
diff
changeset
|
42 #include "stream/stream.h" |
10263 | 43 #include "demuxer.h" |
44 #include "parse_es.h" | |
45 #include "stheader.h" | |
17012 | 46 #include "sub_cc.h" |
23703
9fb716ab06a3
Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpy
reimar
parents:
23381
diff
changeset
|
47 #include "libavutil/avstring.h" |
24461
921de822048c
Fix completely broken get_ty_pts (it's an ordinary MPEG timestamp)
reimar
parents:
24460
diff
changeset
|
48 #include "libavutil/intreadwrite.h" |
10263 | 49 |
28051 | 50 void skip_audio_frame( sh_audio_t *sh_audio ); |
10263 | 51 extern int sub_justify; |
52 | |
53 // 2/c0: audio data | |
54 // 3/c0: audio packet header (PES header) | |
55 // 4/c0: audio data (S/A only?) | |
56 // 9/c0: audio packet header, AC-3 audio | |
57 // 2/e0: video data | |
58 // 6/e0: video packet header (PES header) | |
59 // 7/e0: video sequence header start | |
60 // 8/e0: video I-frame header start | |
61 // a/e0: video P-frame header start | |
62 // b/e0: video B-frame header start | |
63 // c/e0: video GOP header start | |
64 // e/01: closed-caption data | |
24487 | 65 // e/02: Extended data services data |
10263 | 66 |
67 | |
24446 | 68 #define TIVO_PES_FILEID 0xf5467abd |
69 #define TIVO_PART_LENGTH 0x20000000 | |
10263 | 70 |
71 #define CHUNKSIZE ( 128 * 1024 ) | |
72 #define MAX_AUDIO_BUFFER ( 16 * 1024 ) | |
73 | |
24446 | 74 #define TY_V 1 |
75 #define TY_A 2 | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
76 |
24499 | 77 typedef struct |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
78 { |
24498
7d955b1de13c
Remove another variable and reorder to avoid wasting space due to alignment
reimar
parents:
24497
diff
changeset
|
79 off_t startOffset; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
80 off_t fileSize; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
81 int chunks; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
82 } tmf_fileParts; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
83 |
24446 | 84 #define MAX_TMF_PARTS 16 |
10263 | 85 |
24499 | 86 typedef struct |
10263 | 87 { |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
88 int whichChunk; |
29898 | 89 unsigned char chunk[ CHUNKSIZE ]; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
90 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
91 unsigned char lastAudio[ MAX_AUDIO_BUFFER ]; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
92 int lastAudioEnd; |
10263 | 93 |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
94 int tivoType; // 1 = SA, 2 = DTiVo |
10263 | 95 |
24463 | 96 int64_t lastAudioPTS; |
97 int64_t lastVideoPTS; | |
10263 | 98 |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
99 off_t size; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
100 int readHeader; |
24487 | 101 |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
102 int tmf; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
103 tmf_fileParts tmfparts[ MAX_TMF_PARTS ]; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
104 int tmf_totalparts; |
10263 | 105 } TiVoInfo; |
106 | |
107 off_t vstream_streamsize( ); | |
108 void ty_ClearOSD( int start ); | |
109 | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
110 // =========================================================================== |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
111 #define TMF_SIG "showing.xml" |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
112 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
113 // =========================================================================== |
24443 | 114 static int ty_tmf_filetoparts( demuxer_t *demux, TiVoInfo *tivo ) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
115 { |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
116 int parts = 0; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
117 |
24501 | 118 stream_seek(demux->stream, 0); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
119 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
120 mp_msg( MSGT_DEMUX, MSGL_DBG3, "Dumping tar contents\n" ); |
24501 | 121 while (!demux->stream->eof) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
122 { |
24488 | 123 char header[ 512 ]; |
124 char *name; | |
24500 | 125 char *extension; |
24488 | 126 char *sizestr; |
127 int size; | |
128 off_t skip; | |
24457 | 129 if (stream_read(demux->stream, header, 512) < 512) |
24487 | 130 { |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
131 mp_msg( MSGT_DEMUX, MSGL_DBG3, "Read bad\n" ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
132 break; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
133 } |
24448
044d3ec97bf7
Avoid strlcpy, tar headers already have space to ensure 0-termination
reimar
parents:
24447
diff
changeset
|
134 name = header; |
044d3ec97bf7
Avoid strlcpy, tar headers already have space to ensure 0-termination
reimar
parents:
24447
diff
changeset
|
135 name[99] = 0; |
044d3ec97bf7
Avoid strlcpy, tar headers already have space to ensure 0-termination
reimar
parents:
24447
diff
changeset
|
136 sizestr = &header[124]; |
24449 | 137 sizestr[11] = 0; |
24442
9fc610537539
Use strtol instead of horribly suboptimal ty_octaltodecimal
reimar
parents:
24423
diff
changeset
|
138 size = strtol(sizestr, NULL, 8); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
139 |
24501 | 140 mp_msg( MSGT_DEMUX, MSGL_DBG3, "name %-20.20s size %-12.12s %d\n", |
141 name, sizestr, size ); | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
142 |
24500 | 143 extension = strrchr(name, '.'); |
24501 | 144 if (extension && strcmp(extension, ".ty") == 0) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
145 { |
24455 | 146 if ( parts >= MAX_TMF_PARTS ) { |
147 mp_msg( MSGT_DEMUX, MSGL_ERR, "ty:tmf too big\n" ); | |
148 break; | |
149 } | |
24447
c6253f3b5f47
Do not ignore last chunk in .tmf files, it will cause part of the file to be
reimar
parents:
24446
diff
changeset
|
150 tivo->tmfparts[ parts ].fileSize = size; |
24501 | 151 tivo->tmfparts[ parts ].startOffset = stream_tell(demux->stream); |
24450 | 152 tivo->tmfparts[ parts ].chunks = size / CHUNKSIZE; |
24502 | 153 mp_msg(MSGT_DEMUX, MSGL_DBG3, |
154 "tmf_filetoparts(): index %d, chunks %d\n" | |
155 "tmf_filetoparts(): size %"PRId64"\n" | |
16750
0a31740dd5e6
Use PRI?64 defines as format strings for 64 bit variables.
reimar
parents:
16346
diff
changeset
|
156 "tmf_filetoparts(): startOffset %"PRId64"\n", |
24502 | 157 parts, tivo->tmfparts[ parts ].chunks, |
158 tivo->tmfparts[ parts ].fileSize, tivo->tmfparts[ parts ].startOffset | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
159 ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
160 parts++; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
161 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
162 |
24501 | 163 // size rounded up to blocks |
164 skip = (size + 511) & ~511; | |
165 stream_skip(demux->stream, skip); | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
166 } |
24501 | 167 stream_reset(demux->stream); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
168 tivo->tmf_totalparts = parts; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
169 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
170 "tmf_filetoparts(): No More Part Files %d\n", parts ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
171 |
24446 | 172 return 1; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
173 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
174 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
175 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
176 // =========================================================================== |
24451 | 177 static off_t tmf_filetooffset(TiVoInfo *tivo, int chunk) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
178 { |
24451 | 179 int i; |
180 for (i = 0; i < tivo->tmf_totalparts; i++) { | |
181 if (chunk < tivo->tmfparts[i].chunks) | |
182 return tivo->tmfparts[i].startOffset + chunk * CHUNKSIZE; | |
183 chunk -= tivo->tmfparts[i].chunks; | |
184 } | |
185 return -1; | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
186 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
187 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
188 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
189 // =========================================================================== |
24487 | 190 static int tmf_load_chunk( demuxer_t *demux, TiVoInfo *tivo, |
24506
1639f5402540
get rid of pointless size parameter for tmf_load_chunk
reimar
parents:
24505
diff
changeset
|
191 unsigned char *buff, int readChunk ) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
192 { |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
193 off_t fileoffset; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
194 int count; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
195 |
24487 | 196 mp_msg( MSGT_DEMUX, MSGL_DBG3, "\ntmf_load_chunk() begin %d\n", |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
197 readChunk ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
198 |
24452 | 199 fileoffset = tmf_filetooffset(tivo, readChunk); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
200 |
24503 | 201 if (fileoffset == -1 || !stream_seek(demux->stream, fileoffset)) { |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
202 mp_msg( MSGT_DEMUX, MSGL_ERR, "Read past EOF()\n" ); |
24464 | 203 return 0; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
204 } |
24506
1639f5402540
get rid of pointless size parameter for tmf_load_chunk
reimar
parents:
24505
diff
changeset
|
205 count = stream_read( demux->stream, buff, CHUNKSIZE ); |
24487 | 206 demux->filepos = stream_tell( demux->stream ); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
207 |
24487 | 208 mp_msg( MSGT_DEMUX, MSGL_DBG3, "tmf_load_chunk() count %x\n", |
209 count ); | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
210 |
24487 | 211 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
212 "tmf_load_chunk() bytes %x %x %x %x %x %x %x %x\n", | |
213 buff[ 0 ], buff[ 1 ], buff[ 2 ], buff[ 3 ], | |
214 buff[ 4 ], buff[ 5 ], buff[ 6 ], buff[ 7 ] ); | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
215 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
216 mp_msg( MSGT_DEMUX, MSGL_DBG3, "tmf_load_chunk() end\n" ); |
24487 | 217 |
24446 | 218 return count; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
219 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
220 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
221 // =========================================================================== |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
222 |
10263 | 223 // DTiVo MPEG 336, 480, 576, 768 |
224 // SA TiVo 864 | |
225 // DTiVo AC-3 1550 | |
226 // | |
24446 | 227 #define SERIES1_PTS_LENGTH 11 |
228 #define SERIES1_PTS_OFFSET 6 | |
229 #define SERIES2_PTS_LENGTH 16 | |
230 #define SERIES2_PTS_OFFSET 9 | |
231 #define AC3_PTS_LENGTH 16 | |
232 #define AC3_PTS_OFFSET 9 | |
10263 | 233 |
234 static int IsValidAudioPacket( int size, int *ptsOffset, int *ptsLen ) | |
235 { | |
236 // AC-3 | |
24446 | 237 if ( size == 1550 || size == 1552 ) |
10263 | 238 { |
239 *ptsOffset = AC3_PTS_OFFSET; | |
240 *ptsLen = AC3_PTS_LENGTH; | |
24446 | 241 return 1; |
10263 | 242 } |
243 | |
244 // MPEG | |
24471
516c6a2277b1
Greatly simplify IsValidAudioPacket, though this might break something
reimar
parents:
24470
diff
changeset
|
245 if ( (size & 15) == (SERIES1_PTS_LENGTH & 15) ) |
10263 | 246 { |
247 *ptsOffset = SERIES1_PTS_OFFSET; | |
248 *ptsLen = SERIES1_PTS_LENGTH; | |
24470 | 249 return 1; |
10263 | 250 } |
24471
516c6a2277b1
Greatly simplify IsValidAudioPacket, though this might break something
reimar
parents:
24470
diff
changeset
|
251 if ( (size & 15) == (SERIES2_PTS_LENGTH & 15) ) |
10263 | 252 { |
253 *ptsOffset = SERIES2_PTS_OFFSET; | |
254 *ptsLen = SERIES2_PTS_LENGTH; | |
24470 | 255 return 1; |
10263 | 256 } |
24487 | 257 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Tossing Audio Packet Size %d\n", |
10263 | 258 size ); |
24446 | 259 return 0; |
10263 | 260 } |
261 | |
262 | |
24463 | 263 static int64_t get_ty_pts( unsigned char *buf ) |
10263 | 264 { |
24461
921de822048c
Fix completely broken get_ty_pts (it's an ordinary MPEG timestamp)
reimar
parents:
24460
diff
changeset
|
265 int a = buf[0] & 0xe; |
921de822048c
Fix completely broken get_ty_pts (it's an ordinary MPEG timestamp)
reimar
parents:
24460
diff
changeset
|
266 int b = AV_RB16(buf + 1); |
921de822048c
Fix completely broken get_ty_pts (it's an ordinary MPEG timestamp)
reimar
parents:
24460
diff
changeset
|
267 int c = AV_RB16(buf + 3); |
10263 | 268 |
24461
921de822048c
Fix completely broken get_ty_pts (it's an ordinary MPEG timestamp)
reimar
parents:
24460
diff
changeset
|
269 if (!(1 & a & b & c)) // invalid MPEG timestamp |
24463 | 270 return MP_NOPTS_VALUE; |
24461
921de822048c
Fix completely broken get_ty_pts (it's an ordinary MPEG timestamp)
reimar
parents:
24460
diff
changeset
|
271 a >>= 1; b >>= 1; c >>= 1; |
24463 | 272 return (((uint64_t)a) << 30) | (b << 15) | c; |
10263 | 273 } |
274 | |
24487 | 275 static void demux_ty_AddToAudioBuffer( TiVoInfo *tivo, unsigned char *buffer, |
10263 | 276 int size ) |
277 { | |
24446 | 278 if ( tivo->lastAudioEnd + size < MAX_AUDIO_BUFFER ) |
10263 | 279 { |
24487 | 280 memcpy( &tivo->lastAudio[ tivo->lastAudioEnd ], |
10263 | 281 buffer, size ); |
282 tivo->lastAudioEnd += size; | |
283 } | |
284 else | |
285 mp_msg( MSGT_DEMUX, MSGL_ERR, | |
286 "ty:WARNING - Would have blown my audio buffer\n" ); | |
287 } | |
288 | |
24496
42693ad6dd30
Remove now useless parameters from demux_ty_CopyToDemuxPacket
reimar
parents:
24495
diff
changeset
|
289 static void demux_ty_CopyToDemuxPacket( demux_stream_t *ds, |
24497
713ad2d3878d
PTS should be passed as int64_t to demux_ty_CopyToDemuxPacket
reimar
parents:
24496
diff
changeset
|
290 unsigned char *buffer, int size, off_t pos, int64_t pts ) |
10263 | 291 { |
24482 | 292 demux_packet_t *dp = new_demux_packet( size ); |
10263 | 293 memcpy( dp->buffer, buffer, size ); |
24463 | 294 if (pts != MP_NOPTS_VALUE) |
295 dp->pts = pts / 90000.0; | |
10263 | 296 dp->pos = pos; |
297 dp->flags = 0; | |
298 ds_add_packet( ds, dp ); | |
299 } | |
300 | |
24484 | 301 static int demux_ty_FindESHeader( uint8_t nal, |
24478 | 302 unsigned char *buffer, int bufferSize ) |
10263 | 303 { |
24484 | 304 uint32_t search = 0x00000100 | nal; |
24483 | 305 uint32_t found = -1; |
306 uint8_t *p = buffer; | |
307 uint8_t *end = p + bufferSize; | |
308 while (p < end) { | |
309 found <<= 8; | |
310 found |= *p++; | |
311 if (found == search) | |
312 return p - buffer - 4; | |
10263 | 313 } |
24446 | 314 return -1; |
10263 | 315 } |
316 | |
24487 | 317 static void demux_ty_FindESPacket( uint8_t nal, |
10263 | 318 unsigned char *buffer, int bufferSize, int *esOffset1, int *esOffset2 ) |
319 { | |
24484 | 320 *esOffset1 = demux_ty_FindESHeader(nal, buffer, bufferSize); |
24480
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
321 if (*esOffset1 == -1) { |
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
322 *esOffset2 = -1; |
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
323 return; |
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
324 } |
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
325 buffer += *esOffset1 + 1; |
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
326 bufferSize -= *esOffset1 + 1; |
24484 | 327 *esOffset2 = demux_ty_FindESHeader(nal, buffer, bufferSize); |
24480
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
328 if (*esOffset2 != -1) |
a365d70938b3
Simplify demux_ty_FindESPacket by reusing demux_ty_FindESHeader
reimar
parents:
24479
diff
changeset
|
329 *esOffset2 += *esOffset1 + 1; |
10263 | 330 } |
331 | |
24484 | 332 #define VIDEO_NAL 0xe0 |
333 #define AUDIO_NAL 0xc0 | |
334 #define AC3_NAL 0xbd | |
10263 | 335 |
16175 | 336 static int demux_ty_fill_buffer( demuxer_t *demux, demux_stream_t *dsds ) |
10263 | 337 { |
338 int invalidType = 0; | |
339 int errorHeader = 0; | |
340 int recordsDecoded = 0; | |
341 | |
342 int readSize; | |
343 | |
344 int numberRecs; | |
345 unsigned char *recPtr; | |
346 int offset; | |
347 | |
348 int counter; | |
349 | |
350 int aid; | |
24487 | 351 |
24469
afbab72dbf2c
Do not misuse a_streams for private info, demuxer->priv is for that!
reimar
parents:
24468
diff
changeset
|
352 TiVoInfo *tivo = demux->priv; |
29898 | 353 unsigned char *chunk = tivo->chunk; |
10263 | 354 |
355 if ( demux->stream->type == STREAMTYPE_DVD ) | |
24487 | 356 return 0; |
10263 | 357 |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
358 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:ty processing\n" ); |
10263 | 359 |
360 if( demux->stream->eof ) return 0; | |
24487 | 361 |
10263 | 362 // ====================================================================== |
11000 | 363 // If we haven't figured out the size of the stream, let's do so |
10263 | 364 // ====================================================================== |
365 #ifdef STREAMTYPE_STREAM_TY | |
366 if ( demux->stream->type == STREAMTYPE_STREAM_TY ) | |
367 { | |
368 // The vstream code figures out the exact size of the stream | |
369 demux->movi_start = 0; | |
370 demux->movi_end = vstream_streamsize(); | |
371 tivo->size = vstream_streamsize(); | |
372 } | |
373 else | |
374 #endif | |
375 { | |
376 // If its a local file, try to find the Part Headers, so we can | |
377 // calculate the ACTUAL stream size | |
378 // If we can't find it, go off with the file size and hope the | |
379 // extract program did the "right thing" | |
380 if ( tivo->readHeader == 0 ) | |
381 { | |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
382 off_t filePos; |
10263 | 383 tivo->readHeader = 1; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
384 |
10263 | 385 filePos = demux->filepos; |
386 stream_seek( demux->stream, 0 ); | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
387 |
10263 | 388 readSize = stream_read( demux->stream, chunk, CHUNKSIZE ); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
389 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
390 if ( memcmp( chunk, TMF_SIG, sizeof( TMF_SIG ) ) == 0 ) |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
391 { |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
392 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Detected a tmf\n" ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
393 tivo->tmf = 1; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
394 ty_tmf_filetoparts( demux, tivo ); |
24506
1639f5402540
get rid of pointless size parameter for tmf_load_chunk
reimar
parents:
24505
diff
changeset
|
395 readSize = tmf_load_chunk( demux, tivo, chunk, 0 ); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
396 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
397 |
24467 | 398 if ( readSize == CHUNKSIZE && AV_RB32(chunk) == TIVO_PES_FILEID ) |
10263 | 399 { |
400 off_t numberParts; | |
401 | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
402 readSize = 0; |
24487 | 403 |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
404 if ( tivo->tmf != 1 ) |
10263 | 405 { |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
406 off_t offset; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
407 |
10263 | 408 numberParts = demux->stream->end_pos / TIVO_PART_LENGTH; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
409 offset = numberParts * TIVO_PART_LENGTH; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
410 |
17366 | 411 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:ty/ty+Number Parts %"PRId64"\n", |
412 (int64_t)numberParts ); | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
413 |
24446 | 414 if ( offset + CHUNKSIZE < demux->stream->end_pos ) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
415 { |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
416 stream_seek( demux->stream, offset ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
417 readSize = stream_read( demux->stream, chunk, CHUNKSIZE ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
418 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
419 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
420 else |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
421 { |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
422 numberParts = tivo->tmf_totalparts; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
423 offset = numberParts * TIVO_PART_LENGTH; |
24506
1639f5402540
get rid of pointless size parameter for tmf_load_chunk
reimar
parents:
24505
diff
changeset
|
424 readSize = tmf_load_chunk( demux, tivo, chunk, |
24487 | 425 numberParts * ( TIVO_PART_LENGTH - CHUNKSIZE ) / |
24446 | 426 CHUNKSIZE ); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
427 } |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
428 |
24467 | 429 if ( readSize == CHUNKSIZE && AV_RB32(chunk) == TIVO_PES_FILEID ) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
430 { |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
431 int size = AV_RB24(chunk + 12); |
10263 | 432 size -= 4; |
433 size *= CHUNKSIZE; | |
434 tivo->size = numberParts * TIVO_PART_LENGTH; | |
435 tivo->size += size; | |
24487 | 436 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
16750
0a31740dd5e6
Use PRI?64 defines as format strings for 64 bit variables.
reimar
parents:
16346
diff
changeset
|
437 "ty:Header Calc Stream Size %"PRId64"\n", tivo->size ); |
10263 | 438 } |
439 } | |
440 | |
24487 | 441 if ( demux->stream->start_pos > 0 ) |
442 filePos = demux->stream->start_pos; | |
10263 | 443 stream_seek( demux->stream, filePos ); |
24487 | 444 demux->filepos = stream_tell( demux->stream ); |
24446 | 445 tivo->whichChunk = filePos / CHUNKSIZE; |
10263 | 446 } |
447 demux->movi_start = 0; | |
448 demux->movi_end = tivo->size; | |
449 } | |
450 | |
451 // ====================================================================== | |
452 // Give a clue as to where we are in the stream | |
453 // ====================================================================== | |
454 mp_msg( MSGT_DEMUX, MSGL_DBG3, | |
17366 | 455 "ty:ty header size %"PRIx64"\n", (int64_t)tivo->size ); |
10263 | 456 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
17366 | 457 "ty:ty which Chunk %d\n", tivo->whichChunk ); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
458 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
17366 | 459 "ty:file end_pos %"PRIx64"\n", (int64_t)demux->stream->end_pos ); |
10263 | 460 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
17366 | 461 "\nty:wanted current offset %"PRIx64"\n", (int64_t)stream_tell( demux->stream ) ); |
10263 | 462 |
24464 | 463 if ( tivo->size > 0 && stream_tell( demux->stream ) > tivo->size ) |
10263 | 464 { |
465 demux->stream->eof = 1; | |
24464 | 466 return 0; |
10263 | 467 } |
468 | |
24507 | 469 do { |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
470 if ( tivo->tmf != 1 ) |
10263 | 471 { |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
472 // Make sure we are on a 128k boundary |
24446 | 473 if ( demux->filepos % CHUNKSIZE != 0 ) |
10263 | 474 { |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
475 int whichChunk = demux->filepos / CHUNKSIZE; |
24446 | 476 if ( demux->filepos % CHUNKSIZE > CHUNKSIZE / 2 ) |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
477 whichChunk++; |
24446 | 478 stream_seek( demux->stream, whichChunk * CHUNKSIZE ); |
10263 | 479 } |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
480 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
481 demux->filepos = stream_tell( demux->stream ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
482 tivo->whichChunk = demux->filepos / CHUNKSIZE; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
483 readSize = stream_read( demux->stream, chunk, CHUNKSIZE ); |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
484 if ( readSize != CHUNKSIZE ) |
24464 | 485 return 0; |
10263 | 486 } |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
487 else |
10263 | 488 { |
24506
1639f5402540
get rid of pointless size parameter for tmf_load_chunk
reimar
parents:
24505
diff
changeset
|
489 readSize = tmf_load_chunk( demux, tivo, chunk, tivo->whichChunk ); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
490 if ( readSize != CHUNKSIZE ) |
24446 | 491 return 0; |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
492 tivo->whichChunk++; |
10263 | 493 } |
24507 | 494 if (AV_RB32(chunk) == TIVO_PES_FILEID) |
10263 | 495 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Skipping PART Header\n" ); |
24507 | 496 } while (AV_RB32(chunk) == TIVO_PES_FILEID); |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
497 |
10263 | 498 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
24487 | 499 "\nty:actual current offset %"PRIx64"\n", stream_tell( demux->stream ) - |
500 CHUNKSIZE ); | |
10263 | 501 |
502 | |
12860 | 503 // Let's make a Video Demux Stream for MPlayer |
10263 | 504 aid = 0x0; |
505 if( !demux->v_streams[ aid ] ) new_sh_video( demux, aid ); | |
506 if( demux->video->id == -1 ) demux->video->id = aid; | |
507 if( demux->video->id == aid ) | |
508 { | |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
509 demux_stream_t *ds = demux->video; |
10263 | 510 if( !ds->sh ) ds->sh = demux->v_streams[ aid ]; |
511 } | |
512 | |
513 // ====================================================================== | |
514 // Finally, we get to actually parse the chunk | |
515 // ====================================================================== | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
516 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:ty parsing a chunk\n" ); |
10263 | 517 numberRecs = chunk[ 0 ]; |
518 recPtr = &chunk[ 4 ]; | |
24446 | 519 offset = numberRecs * 16 + 4; |
10263 | 520 for ( counter = 0 ; counter < numberRecs ; counter++ ) |
521 { | |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
522 int size = AV_RB24(recPtr) >> 4; |
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
523 int type = recPtr[ 3 ]; |
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
524 int nybbleType = recPtr[ 2 ] & 0x0f; |
10263 | 525 recordsDecoded++; |
526 | |
527 mp_msg( MSGT_DEMUX, MSGL_DBG3, | |
528 "ty:Record Type %x/%x %d\n", nybbleType, type, size ); | |
529 | |
530 // ================================================================ | |
531 // Video Parsing | |
532 // ================================================================ | |
533 if ( type == 0xe0 ) | |
534 { | |
24446 | 535 if ( size > 0 && size + offset <= CHUNKSIZE ) |
10263 | 536 { |
24487 | 537 int esOffset1 = demux_ty_FindESHeader( VIDEO_NAL, &chunk[ offset ], |
24478 | 538 size); |
10263 | 539 if ( esOffset1 != -1 ) |
24487 | 540 tivo->lastVideoPTS = get_ty_pts( |
10263 | 541 &chunk[ offset + esOffset1 + 9 ] ); |
542 | |
543 // Do NOT Pass the PES Header onto the MPEG2 Decode | |
544 if( nybbleType != 0x06 ) | |
24496
42693ad6dd30
Remove now useless parameters from demux_ty_CopyToDemuxPacket
reimar
parents:
24495
diff
changeset
|
545 demux_ty_CopyToDemuxPacket( demux->video, |
24487 | 546 &chunk[ offset ], size, demux->filepos + offset, |
547 tivo->lastVideoPTS ); | |
10263 | 548 offset += size; |
549 } | |
24487 | 550 else |
551 errorHeader++; | |
10263 | 552 } |
553 // ================================================================ | |
554 // Audio Parsing | |
555 // ================================================================ | |
24487 | 556 else if ( type == 0xc0 ) |
10263 | 557 { |
24446 | 558 if ( size > 0 && size + offset <= CHUNKSIZE ) |
10263 | 559 { |
560 if( demux->audio->id == -1 ) | |
561 { | |
562 if ( nybbleType == 0x02 ) | |
563 continue; // DTiVo inconclusive, wait for more | |
564 else if ( nybbleType == 0x09 ) | |
565 { | |
566 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Setting AC-3 Audio\n" ); | |
567 aid = 0x80; // AC-3 | |
568 } | |
569 else | |
570 { | |
571 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Setting MPEG Audio\n" ); | |
572 aid = 0x0; // MPEG Audio | |
573 } | |
574 | |
575 demux->audio->id = aid; | |
576 if( !demux->a_streams[ aid ] ) new_sh_audio( demux, aid ); | |
577 if( demux->audio->id == aid ) | |
578 { | |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
579 demux_stream_t *ds = demux->audio; |
15580 | 580 if( !ds->sh ) { |
581 sh_audio_t* sh_a; | |
582 ds->sh = demux->a_streams[ aid ]; | |
583 sh_a = (sh_audio_t*)ds->sh; | |
584 switch(aid & 0xE0){ // 1110 0000 b (high 3 bit: type low 5: id) | |
585 case 0x00: sh_a->format=0x50;break; // mpeg | |
586 case 0xA0: sh_a->format=0x10001;break; // dvd pcm | |
587 case 0x80: if((aid & 0xF8) == 0x88) sh_a->format=0x2001;//dts | |
588 else sh_a->format=0x2000;break; // ac3 | |
589 } | |
590 } | |
10263 | 591 } |
592 } | |
593 | |
594 aid = demux->audio->id; | |
595 | |
596 | |
597 // SA DTiVo Audio Data, no PES | |
598 // ================================================ | |
24476 | 599 if ( nybbleType == 0x02 || nybbleType == 0x04 ) |
10263 | 600 { |
24476 | 601 if ( nybbleType == 0x02 && tivo->tivoType == 2 ) |
10263 | 602 demux_ty_AddToAudioBuffer( tivo, &chunk[ offset ], size ); |
603 else | |
604 { | |
605 | |
606 mp_msg( MSGT_DEMUX, MSGL_DBG3, | |
607 "ty:Adding Audio Packet Size %d\n", size ); | |
24496
42693ad6dd30
Remove now useless parameters from demux_ty_CopyToDemuxPacket
reimar
parents:
24495
diff
changeset
|
608 demux_ty_CopyToDemuxPacket( demux->audio, |
24487 | 609 &chunk[ offset ], size, ( demux->filepos + offset ), |
610 tivo->lastAudioPTS ); | |
10263 | 611 } |
612 } | |
613 | |
24475 | 614 // 3 - MPEG Audio with PES Header, either SA or DTiVo |
615 // 9 - DTiVo AC3 Audio Data with PES Header | |
10263 | 616 // ================================================ |
24475 | 617 if ( nybbleType == 0x03 || nybbleType == 0x09 ) |
10263 | 618 { |
24477
8c9d86adb28e
Move variable declarations into the block where they are used
reimar
parents:
24476
diff
changeset
|
619 int esOffset1, esOffset2; |
24475 | 620 if ( nybbleType == 0x03 ) |
24487 | 621 esOffset1 = demux_ty_FindESHeader( AUDIO_NAL, &chunk[ offset ], |
24478 | 622 size); |
10263 | 623 |
624 // SA PES Header, No Audio Data | |
625 // ================================================ | |
24475 | 626 if ( nybbleType == 0x03 && esOffset1 == 0 && size == 16 ) |
10263 | 627 { |
628 tivo->tivoType = 1; | |
24487 | 629 tivo->lastAudioPTS = get_ty_pts( &chunk[ offset + |
10263 | 630 SERIES2_PTS_OFFSET ] ); |
631 } | |
632 else | |
633 // DTiVo Audio with PES Header | |
634 // ================================================ | |
635 { | |
636 tivo->tivoType = 2; | |
637 | |
638 demux_ty_AddToAudioBuffer( tivo, &chunk[ offset ], size ); | |
24484 | 639 demux_ty_FindESPacket( nybbleType == 9 ? AC3_NAL : AUDIO_NAL, |
10263 | 640 tivo->lastAudio, tivo->lastAudioEnd, &esOffset1, |
641 &esOffset2 ); | |
642 | |
24446 | 643 if ( esOffset1 != -1 && esOffset2 != -1 ) |
10263 | 644 { |
645 int packetSize = esOffset2 - esOffset1; | |
646 int headerSize; | |
647 int ptsOffset; | |
648 | |
24487 | 649 if ( IsValidAudioPacket( packetSize, &ptsOffset, |
10263 | 650 &headerSize ) ) |
651 { | |
652 mp_msg( MSGT_DEMUX, MSGL_DBG3, | |
24487 | 653 "ty:Adding DTiVo Audio Packet Size %d\n", |
10263 | 654 packetSize ); |
655 | |
24487 | 656 tivo->lastAudioPTS = get_ty_pts( |
10263 | 657 &tivo->lastAudio[ esOffset1 + ptsOffset ] ); |
658 | |
24475 | 659 if (nybbleType == 9) headerSize = 0; |
10263 | 660 demux_ty_CopyToDemuxPacket |
24487 | 661 ( |
662 demux->audio, | |
24486 | 663 &tivo->lastAudio[ esOffset1 + headerSize ], |
664 packetSize - headerSize, | |
665 demux->filepos + offset, | |
24487 | 666 tivo->lastAudioPTS |
10263 | 667 ); |
668 | |
669 } | |
670 | |
671 // Collapse the Audio Buffer | |
24485 | 672 tivo->lastAudioEnd -= esOffset2; |
24487 | 673 memmove( &tivo->lastAudio[ 0 ], |
674 &tivo->lastAudio[ esOffset2 ], | |
24485 | 675 tivo->lastAudioEnd ); |
10263 | 676 } |
677 } | |
678 } | |
679 | |
680 offset += size; | |
681 } | |
24487 | 682 else |
683 errorHeader++; | |
684 } | |
10263 | 685 // ================================================================ |
24474 | 686 // 1 = Closed Caption |
687 // 2 = Extended Data Services | |
10263 | 688 // ================================================================ |
24487 | 689 else if ( type == 0x01 || type == 0x02 ) |
690 { | |
24474 | 691 unsigned char lastXDS[ 16 ]; |
24487 | 692 int b = AV_RB24(recPtr) >> 4; |
693 b &= 0x7f7f; | |
10263 | 694 |
24474 | 695 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:%s %04x\n", type == 1 ? "CC" : "XDS", b); |
10263 | 696 |
24487 | 697 lastXDS[ 0x00 ] = 0x00; |
698 lastXDS[ 0x01 ] = 0x00; | |
699 lastXDS[ 0x02 ] = 0x01; | |
700 lastXDS[ 0x03 ] = 0xb2; | |
701 lastXDS[ 0x04 ] = 'T'; | |
702 lastXDS[ 0x05 ] = 'Y'; | |
703 lastXDS[ 0x06 ] = type; | |
704 lastXDS[ 0x07 ] = b >> 8; | |
705 lastXDS[ 0x08 ] = b; | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
706 if ( subcc_enabled ) |
24496
42693ad6dd30
Remove now useless parameters from demux_ty_CopyToDemuxPacket
reimar
parents:
24495
diff
changeset
|
707 demux_ty_CopyToDemuxPacket( demux->video, lastXDS, 0x09, |
24487 | 708 demux->filepos + offset, tivo->lastVideoPTS ); |
709 } | |
10263 | 710 // ================================================================ |
711 // Unknown | |
712 // ================================================================ | |
24487 | 713 else |
714 { | |
24446 | 715 if ( size > 0 && size + offset <= CHUNKSIZE ) |
10263 | 716 offset += size; |
24489
97eba82233f5
live recordings can contain 0-size type 0 chunks, ignore them instead
reimar
parents:
24488
diff
changeset
|
717 if (type != 3 && type != 5 && (type != 0 || size > 0)) { |
10263 | 718 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Invalid Type %x\n", type ); |
24487 | 719 invalidType++; |
24472 | 720 } |
24487 | 721 } |
10263 | 722 recPtr += 16; |
723 } | |
724 | |
20141
bd3afd5a2e48
Fix misdetection of http://samples.mplayerhq.hu/tta/tivo_misdetect.tta as TiVo file
reimar
parents:
19614
diff
changeset
|
725 if ( errorHeader > 0 || invalidType > 0 ) |
10263 | 726 { |
24487 | 727 mp_msg( MSGT_DEMUX, MSGL_DBG3, |
20141
bd3afd5a2e48
Fix misdetection of http://samples.mplayerhq.hu/tta/tivo_misdetect.tta as TiVo file
reimar
parents:
19614
diff
changeset
|
728 "ty:Error Check - Records %d, Parsed %d, Errors %d + %d\n", |
bd3afd5a2e48
Fix misdetection of http://samples.mplayerhq.hu/tta/tivo_misdetect.tta as TiVo file
reimar
parents:
19614
diff
changeset
|
729 numberRecs, recordsDecoded, errorHeader, invalidType ); |
10263 | 730 |
731 // Invalid MPEG ES Size Check | |
24446 | 732 if ( errorHeader > numberRecs / 2 ) |
733 return 0; | |
10263 | 734 |
735 // Invalid MPEG Stream Type Check | |
24446 | 736 if ( invalidType > numberRecs / 2 ) |
737 return 0; | |
10263 | 738 } |
739 | |
740 demux->filepos = stream_tell( demux->stream ); | |
741 | |
24446 | 742 return 1; |
10263 | 743 } |
744 | |
17636 | 745 static void demux_seek_ty( demuxer_t *demuxer, float rel_seek_secs, float audio_delay, int flags ) |
10263 | 746 { |
747 demux_stream_t *d_audio = demuxer->audio; | |
748 demux_stream_t *d_video = demuxer->video; | |
749 sh_audio_t *sh_audio = d_audio->sh; | |
750 sh_video_t *sh_video = d_video->sh; | |
751 off_t newpos; | |
752 off_t res; | |
24469
afbab72dbf2c
Do not misuse a_streams for private info, demuxer->priv is for that!
reimar
parents:
24468
diff
changeset
|
753 TiVoInfo *tivo = demuxer->priv; |
10263 | 754 |
755 mp_msg( MSGT_DEMUX, MSGL_DBG3, "ty:Seeking to %7.1f\n", rel_seek_secs ); | |
756 | |
757 tivo->lastAudioEnd = 0; | |
24463 | 758 tivo->lastAudioPTS = MP_NOPTS_VALUE; |
759 tivo->lastVideoPTS = MP_NOPTS_VALUE; | |
10263 | 760 // |
761 //================= seek in MPEG ========================== | |
762 demuxer->filepos = stream_tell( demuxer->stream ); | |
763 | |
25883
baf32110d3fc
Use defines to give names to the different seek flags.
reimar
parents:
25707
diff
changeset
|
764 newpos = ( flags & SEEK_ABSOLUTE ) ? demuxer->movi_start : demuxer->filepos; |
24487 | 765 |
25883
baf32110d3fc
Use defines to give names to the different seek flags.
reimar
parents:
25707
diff
changeset
|
766 if( flags & SEEK_FACTOR ) |
24487 | 767 // float seek 0..1 |
768 newpos += ( demuxer->movi_end - demuxer->movi_start ) * rel_seek_secs; | |
769 else | |
10263 | 770 { |
24487 | 771 // time seek (secs) |
10263 | 772 if( ! sh_video->i_bps ) // unspecified or VBR |
773 newpos += 2324 * 75 * rel_seek_secs; // 174.3 kbyte/sec | |
774 else | |
775 newpos += sh_video->i_bps * rel_seek_secs; | |
776 } | |
777 | |
778 if ( newpos < demuxer->movi_start ) | |
779 { | |
24487 | 780 if( demuxer->stream->type != STREAMTYPE_VCD ) demuxer->movi_start = 0; |
781 if( newpos < demuxer->movi_start ) newpos = demuxer->movi_start; | |
782 } | |
10263 | 783 |
784 res = newpos / CHUNKSIZE; | |
785 if ( rel_seek_secs >= 0 ) | |
786 newpos = ( res + 1 ) * CHUNKSIZE; | |
787 else | |
788 newpos = res * CHUNKSIZE; | |
789 | |
790 if ( newpos < 0 ) | |
791 newpos = 0; | |
15581
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
792 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
793 tivo->whichChunk = newpos / CHUNKSIZE; |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
794 |
2e621c99354d
a cleaned-up version of ty demuxer improvements found in tivo-mplayer fork.
joey
parents:
15580
diff
changeset
|
795 stream_seek( demuxer->stream, newpos ); |
10263 | 796 |
797 // re-sync video: | |
798 videobuf_code_len = 0; // reset ES stream buffer | |
799 | |
24487 | 800 ds_fill_buffer( d_video ); |
801 if( sh_audio ) | |
802 ds_fill_buffer( d_audio ); | |
10263 | 803 |
24487 | 804 while( 1 ) |
10263 | 805 { |
24487 | 806 int i; |
10263 | 807 if( sh_audio && !d_audio->eof && d_video->pts && d_audio->pts ) |
808 { | |
24487 | 809 float a_pts = d_audio->pts; |
10263 | 810 a_pts += ( ds_tell_pts( d_audio ) - sh_audio->a_in_buffer_len ) / |
811 (float)sh_audio->i_bps; | |
24487 | 812 if( d_video->pts > a_pts ) |
10263 | 813 { |
24487 | 814 skip_audio_frame( sh_audio ); // sync audio |
815 continue; | |
816 } | |
10263 | 817 } |
818 i = sync_video_packet( d_video ); | |
819 if( i == 0x1B3 || i == 0x1B8 ) break; // found it! | |
820 if( !i || !skip_video_packet( d_video ) ) break; // EOF? | |
821 } | |
24487 | 822 if ( subcc_enabled ) |
823 ty_ClearOSD( 0 ); | |
10263 | 824 } |
825 | |
24443 | 826 static int demux_ty_control( demuxer_t *demuxer,int cmd, void *arg ) |
10263 | 827 { |
828 demux_stream_t *d_video = demuxer->video; | |
829 sh_video_t *sh_video = d_video->sh; | |
830 | |
24487 | 831 switch(cmd) |
10263 | 832 { |
24487 | 833 case DEMUXER_CTRL_GET_TIME_LENGTH: |
834 if(!sh_video->i_bps) // unspecified or VBR | |
835 return DEMUXER_CTRL_DONTKNOW; | |
836 *(double *)arg= | |
24446 | 837 (double)demuxer->movi_end-demuxer->movi_start/sh_video->i_bps; |
24487 | 838 return DEMUXER_CTRL_GUESS; |
10263 | 839 |
24487 | 840 case DEMUXER_CTRL_GET_PERCENT_POS: |
841 return DEMUXER_CTRL_DONTKNOW; | |
842 default: | |
843 return DEMUXER_CTRL_NOTIMPL; | |
10263 | 844 } |
845 } | |
846 | |
847 | |
17174
83a8c738be89
make demuxer seek and close functions return void, patch by Dominik Mierzejewski
wanderer
parents:
17012
diff
changeset
|
848 static void demux_close_ty( demuxer_t *demux ) |
10263 | 849 { |
24469
afbab72dbf2c
Do not misuse a_streams for private info, demuxer->priv is for that!
reimar
parents:
24468
diff
changeset
|
850 TiVoInfo *tivo = demux->priv; |
10263 | 851 |
852 free( tivo ); | |
24487 | 853 sub_justify = 0; |
10263 | 854 } |
855 | |
856 | |
16175 | 857 static int ty_check_file(demuxer_t* demuxer) |
858 { | |
24469
afbab72dbf2c
Do not misuse a_streams for private info, demuxer->priv is for that!
reimar
parents:
24468
diff
changeset
|
859 TiVoInfo *tivo = calloc(1, sizeof(TiVoInfo)); |
afbab72dbf2c
Do not misuse a_streams for private info, demuxer->priv is for that!
reimar
parents:
24468
diff
changeset
|
860 demuxer->priv = tivo; |
16175 | 861 return ds_fill_buffer(demuxer->video) ? DEMUXER_TYPE_MPEG_TY : 0; |
862 } | |
863 | |
864 | |
865 static demuxer_t* demux_open_ty(demuxer_t* demuxer) | |
866 { | |
867 sh_audio_t *sh_audio=NULL; | |
868 sh_video_t *sh_video=NULL; | |
869 | |
870 sh_video=demuxer->video->sh;sh_video->ds=demuxer->video; | |
871 | |
872 if(demuxer->audio->id!=-2) { | |
873 if(!ds_fill_buffer(demuxer->audio)){ | |
874 mp_msg(MSGT_DEMUXER,MSGL_INFO,"MPEG: " MSGTR_MissingAudioStream); | |
875 demuxer->audio->sh=NULL; | |
876 } else { | |
877 sh_audio=demuxer->audio->sh;sh_audio->ds=demuxer->audio; | |
878 } | |
879 } | |
880 | |
881 return demuxer; | |
882 } | |
883 | |
884 | |
25707
d4fe6e23283e
Make all demuxer_desc_t const, thus moving them to .rodata
reimar
parents:
24507
diff
changeset
|
885 const demuxer_desc_t demuxer_desc_mpeg_ty = { |
16175 | 886 "TiVo demuxer", |
887 "tivo", | |
888 "TiVo", | |
889 "Christopher R. Wingert", | |
890 "Demux streams from TiVo", | |
891 DEMUXER_TYPE_MPEG_TY, | |
892 0, // unsafe autodetect | |
893 ty_check_file, | |
894 demux_ty_fill_buffer, | |
895 demux_open_ty, | |
896 demux_close_ty, | |
897 demux_seek_ty, | |
898 demux_ty_control | |
899 }; |