author | harlekin <harlekin> | 2002-04-22 22:28:33 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-04-22 22:28:33 (UTC) |
commit | 01ddcc2d67eb928eec6018e7e355820f2458b74f (patch) (unidiff) | |
tree | 25207e33fe281a07487e393f78c7686565811751 | |
parent | 1ce5e1128e3c062d45e6dcfbcda20f195b4d5b13 (diff) | |
download | opie-01ddcc2d67eb928eec6018e7e355820f2458b74f.zip opie-01ddcc2d67eb928eec6018e7e355820f2458b74f.tar.gz opie-01ddcc2d67eb928eec6018e7e355820f2458b74f.tar.bz2 |
fixed to segfault in connection to shoutcast
-rw-r--r-- | core/multimedia/opieplayer/libmad/libmadplugin.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp index 8b692ef..c744c6d 100644 --- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp +++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp | |||
@@ -182,524 +182,530 @@ bool LibMadPlugin::isFileSupported( const QString& path ) { | |||
182 | return FALSE; | 182 | return FALSE; |
183 | } | 183 | } |
184 | 184 | ||
185 | 185 | ||
186 | 186 | ||
187 | int LibMadPlugin::is_address_multicast(unsigned long address) { | 187 | int LibMadPlugin::is_address_multicast(unsigned long address) { |
188 | if ((address & 255) >= 224 && (address & 255) <= 239) | 188 | if ((address & 255) >= 224 && (address & 255) <= 239) |
189 | return (1); | 189 | return (1); |
190 | return (0); | 190 | return (0); |
191 | } | 191 | } |
192 | 192 | ||
193 | 193 | ||
194 | int LibMadPlugin::udp_open(char *address, int port) { | 194 | int LibMadPlugin::udp_open(char *address, int port) { |
195 | 195 | ||
196 | int enable = 1L; | 196 | int enable = 1L; |
197 | struct sockaddr_in stAddr; | 197 | struct sockaddr_in stAddr; |
198 | struct sockaddr_in stLclAddr; | 198 | struct sockaddr_in stLclAddr; |
199 | struct ip_mreq stMreq; | 199 | struct ip_mreq stMreq; |
200 | struct hostent *host; | 200 | struct hostent *host; |
201 | int sock; | 201 | int sock; |
202 | 202 | ||
203 | stAddr.sin_family = AF_INET; | 203 | stAddr.sin_family = AF_INET; |
204 | stAddr.sin_port = htons(port); | 204 | stAddr.sin_port = htons(port); |
205 | 205 | ||
206 | if ((host = gethostbyname(address)) == NULL) { | 206 | if ((host = gethostbyname(address)) == NULL) { |
207 | return (0); | 207 | return (0); |
208 | } | 208 | } |
209 | 209 | ||
210 | stAddr.sin_addr = *((struct in_addr *)host->h_addr_list[0]); | 210 | stAddr.sin_addr = *((struct in_addr *)host->h_addr_list[0]); |
211 | 211 | ||
212 | /* Create a UDP socket */ | 212 | /* Create a UDP socket */ |
213 | if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { | 213 | if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { |
214 | return (0); | 214 | return (0); |
215 | } | 215 | } |
216 | 216 | ||
217 | /* Allow multiple instance of the client to share the same address and port */ | 217 | /* Allow multiple instance of the client to share the same address and port */ |
218 | if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char *)&enable, sizeof(unsigned long int)) < 0) { | 218 | if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char *)&enable, sizeof(unsigned long int)) < 0) { |
219 | return (0); | 219 | return (0); |
220 | } | 220 | } |
221 | 221 | ||
222 | /* If the address is multicast, register to the multicast group */ | 222 | /* If the address is multicast, register to the multicast group */ |
223 | if (is_address_multicast(stAddr.sin_addr.s_addr)) { | 223 | if (is_address_multicast(stAddr.sin_addr.s_addr)) { |
224 | /* Bind the socket to port */ | 224 | /* Bind the socket to port */ |
225 | stLclAddr.sin_family = AF_INET; | 225 | stLclAddr.sin_family = AF_INET; |
226 | stLclAddr.sin_addr.s_addr = htonl(INADDR_ANY); | 226 | stLclAddr.sin_addr.s_addr = htonl(INADDR_ANY); |
227 | stLclAddr.sin_port = stAddr.sin_port; | 227 | stLclAddr.sin_port = stAddr.sin_port; |
228 | if (bind(sock, (struct sockaddr *)&stLclAddr, sizeof(stLclAddr)) < 0) { | 228 | if (bind(sock, (struct sockaddr *)&stLclAddr, sizeof(stLclAddr)) < 0) { |
229 | return (0); | 229 | return (0); |
230 | } | 230 | } |
231 | 231 | ||
232 | /* Register to a multicast address */ | 232 | /* Register to a multicast address */ |
233 | stMreq.imr_multiaddr.s_addr = stAddr.sin_addr.s_addr; | 233 | stMreq.imr_multiaddr.s_addr = stAddr.sin_addr.s_addr; |
234 | stMreq.imr_interface.s_addr = INADDR_ANY; | 234 | stMreq.imr_interface.s_addr = INADDR_ANY; |
235 | if (setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP, (char *)&stMreq, sizeof(stMreq)) < 0) { | 235 | if (setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP, (char *)&stMreq, sizeof(stMreq)) < 0) { |
236 | return (0); | 236 | return (0); |
237 | } | 237 | } |
238 | } else { | 238 | } else { |
239 | /* Bind the socket to port */ | 239 | /* Bind the socket to port */ |
240 | stLclAddr.sin_family = AF_INET; | 240 | stLclAddr.sin_family = AF_INET; |
241 | stLclAddr.sin_addr.s_addr = htonl(INADDR_ANY); | 241 | stLclAddr.sin_addr.s_addr = htonl(INADDR_ANY); |
242 | stLclAddr.sin_port = htons(0); | 242 | stLclAddr.sin_port = htons(0); |
243 | if (bind(sock, (struct sockaddr *)&stLclAddr, sizeof(stLclAddr)) < 0) { | 243 | if (bind(sock, (struct sockaddr *)&stLclAddr, sizeof(stLclAddr)) < 0) { |
244 | return (0); | 244 | return (0); |
245 | } | 245 | } |
246 | } | 246 | } |
247 | return (sock); | 247 | return (sock); |
248 | } | 248 | } |
249 | 249 | ||
250 | int LibMadPlugin::tcp_open(char *address, int port) { | 250 | int LibMadPlugin::tcp_open(char *address, int port) { |
251 | struct sockaddr_in stAddr; | 251 | struct sockaddr_in stAddr; |
252 | struct hostent *host; | 252 | struct hostent *host; |
253 | int sock; | 253 | int sock; |
254 | struct linger l; | 254 | struct linger l; |
255 | 255 | ||
256 | memset(&stAddr, 0, sizeof(stAddr)); | 256 | memset(&stAddr, 0, sizeof(stAddr)); |
257 | stAddr.sin_family = AF_INET; | 257 | stAddr.sin_family = AF_INET; |
258 | stAddr.sin_port = htons(port); | 258 | stAddr.sin_port = htons(port); |
259 | 259 | ||
260 | if ((host = gethostbyname(address)) == NULL) { | 260 | if ((host = gethostbyname(address)) == NULL) { |
261 | return (0); | 261 | return (0); |
262 | } | 262 | } |
263 | 263 | ||
264 | stAddr.sin_addr = *((struct in_addr *)host->h_addr_list[0]); | 264 | stAddr.sin_addr = *((struct in_addr *)host->h_addr_list[0]); |
265 | 265 | ||
266 | if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) { | 266 | if ((sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) { |
267 | return (0); | 267 | return (0); |
268 | } | 268 | } |
269 | 269 | ||
270 | l.l_onoff = 1; | 270 | l.l_onoff = 1; |
271 | l.l_linger = 5; | 271 | l.l_linger = 5; |
272 | if (setsockopt(sock, SOL_SOCKET, SO_LINGER, (char *)&l, sizeof(l)) < 0) { | 272 | if (setsockopt(sock, SOL_SOCKET, SO_LINGER, (char *)&l, sizeof(l)) < 0) { |
273 | return (0); | 273 | return (0); |
274 | } | 274 | } |
275 | 275 | ||
276 | if (connect(sock, (struct sockaddr *)&stAddr, sizeof(stAddr)) < 0) { | 276 | if (connect(sock, (struct sockaddr *)&stAddr, sizeof(stAddr)) < 0) { |
277 | return (0); | 277 | return (0); |
278 | } | 278 | } |
279 | 279 | ||
280 | return (sock); | 280 | return (sock); |
281 | } | 281 | } |
282 | 282 | ||
283 | 283 | ||
284 | /** | 284 | /** |
285 | * Read a http line header. | 285 | * Read a http line header. |
286 | * This function read character by character. | 286 | * This function read character by character. |
287 | * @param tcp_sock the socket use to read the stream | 287 | * @param tcp_sock the socket use to read the stream |
288 | * @param buf a buffer to receive the data | 288 | * @param buf a buffer to receive the data |
289 | * @param size size of the buffer | 289 | * @param size size of the buffer |
290 | * @return the size of the stream read or -1 if an error occured | 290 | * @return the size of the stream read or -1 if an error occured |
291 | */ | 291 | */ |
292 | int LibMadPlugin::http_read_line(int tcp_sock, char *buf, int size) { | 292 | int LibMadPlugin::http_read_line(int tcp_sock, char *buf, int size) { |
293 | int offset = 0; | 293 | int offset = 0; |
294 | 294 | ||
295 | do { | 295 | do { |
296 | if (std::read(tcp_sock, buf + offset, 1) < 0) | 296 | if (std::read(tcp_sock, buf + offset, 1) < 0) |
297 | return -1; | 297 | return -1; |
298 | if (buf[offset] != '\r') /* Strip \r from answer */ | 298 | if (buf[offset] != '\r') /* Strip \r from answer */ |
299 | offset++; | 299 | offset++; |
300 | } while (offset < size - 1 && buf[offset - 1] != '\n'); | 300 | } while (offset < size - 1 && buf[offset - 1] != '\n'); |
301 | 301 | ||
302 | buf[offset] = 0; | 302 | buf[offset] = 0; |
303 | return offset; | 303 | return offset; |
304 | } | 304 | } |
305 | 305 | ||
306 | int LibMadPlugin::http_open(const QString& path ) { | 306 | int LibMadPlugin::http_open(const QString& path ) { |
307 | char *host; | 307 | char *host; |
308 | int port; | 308 | int port; |
309 | char *request; | 309 | char *request; |
310 | int tcp_sock; | 310 | int tcp_sock; |
311 | char http_request[PATH_MAX]; | 311 | char http_request[PATH_MAX]; |
312 | char filename[PATH_MAX]; | 312 | char filename[PATH_MAX]; |
313 | //char c; | 313 | //char c; |
314 | char *arg =strdup(path.latin1()); | 314 | char *arg =strdup(path.latin1()); |
315 | 315 | ||
316 | /* Check for URL syntax */ | 316 | /* Check for URL syntax */ |
317 | if (strncmp(arg, "http://", strlen("http://"))) { | 317 | if (strncmp(arg, "http://", strlen("http://"))) { |
318 | return (0); | 318 | return (0); |
319 | } | 319 | } |
320 | 320 | ||
321 | /* Parse URL */ | 321 | /* Parse URL */ |
322 | port = 80; | 322 | port = 80; |
323 | host = arg + strlen("http://"); | 323 | host = arg + strlen("http://"); |
324 | if ((request = strchr(host, '/')) == NULL) { | 324 | if ((request = strchr(host, '/')) == NULL) { |
325 | return (0); | 325 | return (0); |
326 | } | 326 | } |
327 | 327 | ||
328 | *request++ = 0; | 328 | *request++ = 0; |
329 | 329 | ||
330 | if (strchr(host, ':') != NULL) { /* port is specified */ | 330 | if (strchr(host, ':') != NULL) { /* port is specified */ |
331 | port = atoi(strchr(host, ':') + 1); | 331 | port = atoi(strchr(host, ':') + 1); |
332 | *strchr(host, ':') = 0; | 332 | *strchr(host, ':') = 0; |
333 | } | 333 | } |
334 | 334 | ||
335 | /* Open a TCP socket */ | 335 | /* Open a TCP socket */ |
336 | if (!(tcp_sock = tcp_open(host, port))) { | 336 | if (!(tcp_sock = tcp_open(host, port))) { |
337 | perror("http_open"); | 337 | perror("http_open"); |
338 | return (0); | 338 | return (0); |
339 | } | 339 | } |
340 | 340 | ||
341 | snprintf(filename, sizeof(filename) - strlen(host) - 75, "%s", request); | 341 | snprintf(filename, sizeof(filename) - strlen(host) - 75, "%s", request); |
342 | 342 | ||
343 | /* Send HTTP GET request */ | 343 | /* Send HTTP GET request */ |
344 | /* Please don't use a Agent know by shoutcast (Lynx, Mozilla) seems to be reconized and print | 344 | /* Please don't use a Agent know by shoutcast (Lynx, Mozilla) seems to be reconized and print |
345 | * a html page and not the stream */ | 345 | * a html page and not the stream */ |
346 | snprintf(http_request, sizeof(http_request), "GET /%s HTTP/1.0\r\n" | 346 | snprintf(http_request, sizeof(http_request), "GET /%s HTTP/1.0\r\n" |
347 | /* "User-Agent: Mozilla/2.0 (Win95; I)\r\n" */ | 347 | /* "User-Agent: Mozilla/2.0 (Win95; I)\r\n" */ |
348 | "Pragma: no-cache\r\n" "Host: %s\r\n" "Accept: */*\r\n" "\r\n", filename, host); | 348 | "Pragma: no-cache\r\n" "Host: %s\r\n" "Accept: */*\r\n" "\r\n", filename, host); |
349 | 349 | ||
350 | send(tcp_sock, http_request, strlen(http_request), 0); | 350 | send(tcp_sock, http_request, strlen(http_request), 0); |
351 | 351 | ||
352 | /* Parse server reply */ | 352 | /* Parse server reply */ |
353 | #if 0 | 353 | #if 0 |
354 | do | 354 | do |
355 | read(tcp_sock, &c, sizeof(char)); | 355 | read(tcp_sock, &c, sizeof(char)); |
356 | while (c != ' '); | 356 | while (c != ' '); |
357 | read(tcp_sock, http_request, 4 * sizeof(char)); | 357 | read(tcp_sock, http_request, 4 * sizeof(char)); |
358 | http_request[4] = 0; | 358 | http_request[4] = 0; |
359 | if (strcmp(http_request, "200 ")) { | 359 | if (strcmp(http_request, "200 ")) { |
360 | fprintf(stderr, "http_open: "); | 360 | fprintf(stderr, "http_open: "); |
361 | do { | 361 | do { |
362 | read(tcp_sock, &c, sizeof(char)); | 362 | read(tcp_sock, &c, sizeof(char)); |
363 | fprintf(stderr, "%c", c); | 363 | fprintf(stderr, "%c", c); |
364 | } while (c != '\r'); | 364 | } while (c != '\r'); |
365 | fprintf(stderr, "\n"); | 365 | fprintf(stderr, "\n"); |
366 | return (0); | 366 | return (0); |
367 | } | 367 | } |
368 | #endif | 368 | #endif |
369 | 369 | ||
370 | QString name; | 370 | QString name; |
371 | QString genre; | 371 | QString genre; |
372 | QString bitrate; | 372 | QString bitrate; |
373 | QString url; | 373 | QString url; |
374 | QString message = tr("Info: "); | 374 | QString message = tr("Info: "); |
375 | do { | 375 | do { |
376 | 376 | ||
377 | int len; | 377 | int len; |
378 | 378 | ||
379 | len = http_read_line(tcp_sock, http_request, sizeof(http_request)); | 379 | len = http_read_line(tcp_sock, http_request, sizeof(http_request)); |
380 | 380 | ||
381 | if (len == -1) { | 381 | if (len == -1) { |
382 | qDebug( "http_open: "+ QString(strerror(errno)) +"\n"); | 382 | qDebug( "http_open: "+ QString(strerror(errno)) +"\n"); |
383 | return 0; | 383 | return 0; |
384 | } | 384 | } |
385 | 385 | ||
386 | if (QString(http_request).left(9) == "Location:") { | 386 | if (QString(http_request).left(9) == "Location:") { |
387 | /* redirect */ | 387 | /* redirect */ |
388 | std::close(tcp_sock); | 388 | std::close(tcp_sock); |
389 | http_request[strlen(http_request) - 1] = '\0'; | 389 | http_request[strlen(http_request) - 1] = '\0'; |
390 | return http_open(&http_request[10]); | 390 | return http_open(&http_request[10]); |
391 | } | 391 | } |
392 | 392 | ||
393 | if (QString(http_request).left(4) == "ICY ") { | 393 | if (QString(http_request).left(4) == "ICY ") { |
394 | /* This is shoutcast/icecast streaming */ | 394 | /* This is shoutcast/icecast streaming */ |
395 | if (strncmp(http_request + 4, "200 ", 4)) { | 395 | if (strncmp(http_request + 4, "200 ", 4)) { |
396 | qDebug("http_open: " + QString(http_request) + "\n"); | 396 | qDebug("http_open: " + QString(http_request) + "\n"); |
397 | return 0; | 397 | return 0; |
398 | } | 398 | } |
399 | } else if (QString(http_request).left(4) == "icy-") { | 399 | } else if (QString(http_request).left(4) == "icy-") { |
400 | /* we can have: icy-noticeX, icy-name, icy-genre, icy-url, icy-pub, icy-metaint, icy-br */ | 400 | /* we can have: icy-noticeX, icy-name, icy-genre, icy-url, icy-pub, icy-metaint, icy-br */ |
401 | if ( QString( http_request ).left( 8 ) == "icy-name" ) { | 401 | if ( QString( http_request ).left( 8 ) == "icy-name" ) { |
402 | name = tr("Name: ") + QString(http_request).mid(9, (QString(http_request).length())- 9 ); | 402 | name = tr("Name: ") + QString(http_request).mid(9, (QString(http_request).length())- 9 ); |
403 | } else if ( QString( http_request ).left( 9 ) == "icy-genre" ) { | 403 | } else if ( QString( http_request ).left( 9 ) == "icy-genre" ) { |
404 | genre = tr("Genre: ") + QString(http_request).mid(10, (QString(http_request).length())-10 ); | 404 | genre = tr("Genre: ") + QString(http_request).mid(10, (QString(http_request).length())-10 ); |
405 | } else if ( QString( http_request ).left( 6 ) == "icy-br" ) { | 405 | } else if ( QString( http_request ).left( 6 ) == "icy-br" ) { |
406 | bitrate = tr("Bitrate: ") + QString(http_request).mid(7, (QString(http_request).length())- 7 ); | 406 | bitrate = tr("Bitrate: ") + QString(http_request).mid(7, (QString(http_request).length())- 7 ); |
407 | } else if ( QString( http_request ).left( 7 ) == "icy-url" ) { | 407 | } else if ( QString( http_request ).left( 7 ) == "icy-url" ) { |
408 | url = tr("URL: ") + QString(http_request).mid(8, (QString(http_request).length())- 8 ); | 408 | url = tr("URL: ") + QString(http_request).mid(8, (QString(http_request).length())- 8 ); |
409 | } else if ( QString( http_request ).left( 10 ) == "icy-notice" ) { | 409 | } else if ( QString( http_request ).left( 10 ) == "icy-notice" ) { |
410 | message += QString(http_request).mid(11, QString(http_request).length()-11 ) ; | 410 | message += QString(http_request).mid(11, QString(http_request).length()-11 ) ; |
411 | } | 411 | } |
412 | } | 412 | } |
413 | } while (strcmp(http_request, "\n") != 0); | 413 | } while (strcmp(http_request, "\n") != 0); |
414 | 414 | ||
415 | info = QString(name + genre + url + bitrate + message).replace( QRegExp("\n"), " : " ); | 415 | info = QString(name + genre + url + bitrate + message).replace( QRegExp("\n"), " : " ); |
416 | 416 | ||
417 | qDebug("Stream info: " + info); | 417 | qDebug("Stream info: " + info); |
418 | 418 | ||
419 | return (tcp_sock); | 419 | return (tcp_sock); |
420 | } | 420 | } |
421 | 421 | ||
422 | 422 | ||
423 | 423 | ||
424 | bool LibMadPlugin::open( const QString& path ) { | 424 | bool LibMadPlugin::open( const QString& path ) { |
425 | debugMsg( "LibMadPlugin::open" ); | 425 | debugMsg( "LibMadPlugin::open" ); |
426 | Config cfg("MediaPlayer"); | 426 | Config cfg("MediaPlayer"); |
427 | cfg.setGroup("Options"); | 427 | cfg.setGroup("Options"); |
428 | bufferSize = cfg.readNumEntry("MPeg_BufferSize",MPEG_BUFFER_SIZE); | 428 | bufferSize = cfg.readNumEntry("MPeg_BufferSize",MPEG_BUFFER_SIZE); |
429 | qDebug("buffer size is %d", bufferSize); | 429 | qDebug("buffer size is %d", bufferSize); |
430 | d->bad_last_frame = 0; | 430 | d->bad_last_frame = 0; |
431 | d->flush = TRUE; | 431 | d->flush = TRUE; |
432 | info = QString( "" ); | 432 | info = QString( "" ); |
433 | 433 | ||
434 | //qDebug( "Opening %s", path.latin1() ); | 434 | //qDebug( "Opening %s", path.latin1() ); |
435 | 435 | ||
436 | 436 | ||
437 | if (path.left( 4 ) == "http" ) { | 437 | if (path.left( 4 ) == "http" ) { |
438 | qDebug("Test2"); | ||
438 | // in case of any error we get 0 here | 439 | // in case of any error we get 0 here |
439 | if ( !(http_open(path)==0) ) { | 440 | if ( !(http_open(path) == 0) ) { |
441 | qDebug("Test3"); | ||
440 | d->input.fd = http_open(path); | 442 | d->input.fd = http_open(path); |
443 | } else { | ||
444 | qDebug("Test5"); | ||
445 | return FALSE; | ||
441 | } | 446 | } |
442 | } else { | 447 | } else { |
448 | qDebug("Test4"); | ||
443 | d->input.path = path.latin1(); | 449 | d->input.path = path.latin1(); |
444 | d->input.fd = ::open( d->input.path, O_RDONLY ); | 450 | d->input.fd = ::open( d->input.path, O_RDONLY ); |
445 | // thats a better place, since it should only seek for ID3 tags on mp3 files, not streams | 451 | // thats a better place, since it should only seek for ID3 tags on mp3 files, not streams |
446 | printID3Tags(); | 452 | printID3Tags(); |
447 | } | 453 | } |
448 | if (d->input.fd == -1) { | 454 | if (d->input.fd == -1) { |
449 | // qDebug("error opening %s", d->input.path ); | 455 | qDebug("error opening %s", d->input.path ); |
450 | return FALSE; | 456 | return FALSE; |
451 | } | 457 | } |
452 | 458 | ||
453 | // printID3Tags(); | 459 | // printID3Tags(); |
454 | 460 | ||
455 | #if defined(HAVE_MMAP) | 461 | #if defined(HAVE_MMAP) |
456 | struct stat stat; | 462 | struct stat stat; |
457 | if (fstat(d->input.fd, &stat) == -1) { | 463 | if (fstat(d->input.fd, &stat) == -1) { |
458 | //qDebug("error calling fstat"); return FALSE; | 464 | //qDebug("error calling fstat"); return FALSE; |
459 | } | 465 | } |
460 | if (S_ISREG(stat.st_mode) && stat.st_size > 0) { | 466 | if (S_ISREG(stat.st_mode) && stat.st_size > 0) { |
461 | d->input.length = stat.st_size; | 467 | d->input.length = stat.st_size; |
462 | d->input.fdm = map_file(d->input.fd, &d->input.length); | 468 | d->input.fdm = map_file(d->input.fd, &d->input.length); |
463 | if (d->input.fdm == 0) { | 469 | if (d->input.fdm == 0) { |
464 | qDebug("error mmapping file"); return FALSE; | 470 | qDebug("error mmapping file"); return FALSE; |
465 | } | 471 | } |
466 | d->input.data = (unsigned char *)d->input.fdm; | 472 | d->input.data = (unsigned char *)d->input.fdm; |
467 | } | 473 | } |
468 | #endif | 474 | #endif |
469 | 475 | ||
470 | if (d->input.data == 0) { | 476 | if (d->input.data == 0) { |
471 | d->input.data = (unsigned char *)malloc( bufferSize /*MPEG_BUFFER_SIZE*/); | 477 | d->input.data = (unsigned char *)malloc( bufferSize /*MPEG_BUFFER_SIZE*/); |
472 | if (d->input.data == 0) { | 478 | if (d->input.data == 0) { |
473 | qDebug("error allocating input buffer"); | 479 | qDebug("error allocating input buffer"); |
474 | return FALSE; | 480 | return FALSE; |
475 | } | 481 | } |
476 | d->input.length = 0; | 482 | d->input.length = 0; |
477 | } | 483 | } |
478 | 484 | ||
479 | d->input.eof = 0; | 485 | d->input.eof = 0; |
480 | 486 | ||
481 | mad_stream_init(&d->stream); | 487 | mad_stream_init(&d->stream); |
482 | mad_frame_init(&d->frame); | 488 | mad_frame_init(&d->frame); |
483 | mad_synth_init(&d->synth); | 489 | mad_synth_init(&d->synth); |
484 | 490 | ||
485 | return TRUE; | 491 | return TRUE; |
486 | } | 492 | } |
487 | 493 | ||
488 | 494 | ||
489 | bool LibMadPlugin::close() { | 495 | bool LibMadPlugin::close() { |
490 | debugMsg( "LibMadPlugin::close" ); | 496 | debugMsg( "LibMadPlugin::close" ); |
491 | 497 | ||
492 | int result = TRUE; | 498 | int result = TRUE; |
493 | 499 | ||
494 | mad_synth_finish(&d->synth); | 500 | mad_synth_finish(&d->synth); |
495 | mad_frame_finish(&d->frame); | 501 | mad_frame_finish(&d->frame); |
496 | mad_stream_finish(&d->stream); | 502 | mad_stream_finish(&d->stream); |
497 | 503 | ||
498 | #if defined(HAVE_MMAP) | 504 | #if defined(HAVE_MMAP) |
499 | if (d->input.fdm) { | 505 | if (d->input.fdm) { |
500 | if (unmap_file(d->input.fdm, d->input.length) == -1) { | 506 | if (unmap_file(d->input.fdm, d->input.length) == -1) { |
501 | qDebug("error munmapping file"); | 507 | qDebug("error munmapping file"); |
502 | result = FALSE; | 508 | result = FALSE; |
503 | } | 509 | } |
504 | d->input.fdm = 0; | 510 | d->input.fdm = 0; |
505 | d->input.data = 0; | 511 | d->input.data = 0; |
506 | } | 512 | } |
507 | #endif | 513 | #endif |
508 | 514 | ||
509 | if (d->input.data) { | 515 | if (d->input.data) { |
510 | free(d->input.data); | 516 | free(d->input.data); |
511 | d->input.data = 0; | 517 | d->input.data = 0; |
512 | } | 518 | } |
513 | 519 | ||
514 | if (::close(d->input.fd) == -1) { | 520 | if (::close(d->input.fd) == -1) { |
515 | qDebug("error closing file %s", d->input.path); | 521 | qDebug("error closing file %s", d->input.path); |
516 | result = FALSE; | 522 | result = FALSE; |
517 | } | 523 | } |
518 | 524 | ||
519 | d->input.fd = 0; | 525 | d->input.fd = 0; |
520 | 526 | ||
521 | return result; | 527 | return result; |
522 | } | 528 | } |
523 | 529 | ||
524 | 530 | ||
525 | bool LibMadPlugin::isOpen() { | 531 | bool LibMadPlugin::isOpen() { |
526 | debugMsg( "LibMadPlugin::isOpen" ); | 532 | debugMsg( "LibMadPlugin::isOpen" ); |
527 | return ( d->input.fd != 0 ); | 533 | return ( d->input.fd != 0 ); |
528 | } | 534 | } |
529 | 535 | ||
530 | 536 | ||
531 | int LibMadPlugin::audioStreams() { | 537 | int LibMadPlugin::audioStreams() { |
532 | debugMsg( "LibMadPlugin::audioStreams" ); | 538 | debugMsg( "LibMadPlugin::audioStreams" ); |
533 | return 1; | 539 | return 1; |
534 | } | 540 | } |
535 | 541 | ||
536 | 542 | ||
537 | int LibMadPlugin::audioChannels( int ) { | 543 | int LibMadPlugin::audioChannels( int ) { |
538 | debugMsg( "LibMadPlugin::audioChannels" ); | 544 | debugMsg( "LibMadPlugin::audioChannels" ); |
539 | /* | 545 | /* |
540 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); | 546 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); |
541 | qDebug( "LibMadPlugin::audioChannels: %i", d->frame.header.mode > 0 ? 2 : 1 ); | 547 | qDebug( "LibMadPlugin::audioChannels: %i", d->frame.header.mode > 0 ? 2 : 1 ); |
542 | return d->frame.header.mode > 0 ? 2 : 1; | 548 | return d->frame.header.mode > 0 ? 2 : 1; |
543 | */ | 549 | */ |
544 | return 2; | 550 | return 2; |
545 | } | 551 | } |
546 | 552 | ||
547 | 553 | ||
548 | int LibMadPlugin::audioFrequency( int ) { | 554 | int LibMadPlugin::audioFrequency( int ) { |
549 | debugMsg( "LibMadPlugin::audioFrequency" ); | 555 | debugMsg( "LibMadPlugin::audioFrequency" ); |
550 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); | 556 | long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); |
551 | qDebug( "LibMadPlugin::audioFrequency: %i", d->frame.header.samplerate ); | 557 | qDebug( "LibMadPlugin::audioFrequency: %i", d->frame.header.samplerate ); |
552 | return d->frame.header.samplerate; | 558 | return d->frame.header.samplerate; |
553 | } | 559 | } |
554 | 560 | ||
555 | 561 | ||
556 | int LibMadPlugin::audioSamples( int ) { | 562 | int LibMadPlugin::audioSamples( int ) { |
557 | debugMsg( "LibMadPlugin::audioSamples" ); | 563 | debugMsg( "LibMadPlugin::audioSamples" ); |
558 | 564 | ||
559 | // long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); | 565 | // long t; short t1[5]; audioReadSamples( t1, 2, 1, t, 0 ); |
560 | // mad_header_decode( (struct mad_header *)&d->frame.header, &d->stream ); | 566 | // mad_header_decode( (struct mad_header *)&d->frame.header, &d->stream ); |
561 | // qDebug( "LibMadPlugin::audioSamples: %i*%i", d->frame.header.duration.seconds, d->frame.header.samplerate ); | 567 | // qDebug( "LibMadPlugin::audioSamples: %i*%i", d->frame.header.duration.seconds, d->frame.header.samplerate ); |
562 | // return d->frame.header.duration.seconds * d->frame.header.samplerate; | 568 | // return d->frame.header.duration.seconds * d->frame.header.samplerate; |
563 | 569 | ||
564 | return 10000000; | 570 | return 10000000; |
565 | } | 571 | } |
566 | 572 | ||
567 | 573 | ||
568 | bool LibMadPlugin::audioSetSample( long, int ) { | 574 | bool LibMadPlugin::audioSetSample( long, int ) { |
569 | debugMsg( "LibMadPlugin::audioSetSample" ); | 575 | debugMsg( "LibMadPlugin::audioSetSample" ); |
570 | return FALSE; | 576 | return FALSE; |
571 | } | 577 | } |
572 | 578 | ||
573 | 579 | ||
574 | long LibMadPlugin::audioGetSample( int ) { | 580 | long LibMadPlugin::audioGetSample( int ) { |
575 | debugMsg( "LibMadPlugin::audioGetSample" ); | 581 | debugMsg( "LibMadPlugin::audioGetSample" ); |
576 | return 0; | 582 | return 0; |
577 | } | 583 | } |
578 | 584 | ||
579 | /* | 585 | /* |
580 | bool LibMadPlugin::audioReadSamples( short *, int, long, int ) { | 586 | bool LibMadPlugin::audioReadSamples( short *, int, long, int ) { |
581 | debugMsg( "LibMadPlugin::audioReadSamples" ); | 587 | debugMsg( "LibMadPlugin::audioReadSamples" ); |
582 | return FALSE; | 588 | return FALSE; |
583 | } | 589 | } |
584 | 590 | ||
585 | 591 | ||
586 | bool LibMadPlugin::audioReReadSamples( short *, int, long, int ) { | 592 | bool LibMadPlugin::audioReReadSamples( short *, int, long, int ) { |
587 | debugMsg( "LibMadPlugin::audioReReadSamples" ); | 593 | debugMsg( "LibMadPlugin::audioReReadSamples" ); |
588 | return FALSE; | 594 | return FALSE; |
589 | } | 595 | } |
590 | */ | 596 | */ |
591 | 597 | ||
592 | bool LibMadPlugin::read() { | 598 | bool LibMadPlugin::read() { |
593 | debugMsg( "LibMadPlugin::read" ); | 599 | debugMsg( "LibMadPlugin::read" ); |
594 | int len; | 600 | int len; |
595 | 601 | ||
596 | if (d->input.eof) | 602 | if (d->input.eof) |
597 | return FALSE; | 603 | return FALSE; |
598 | 604 | ||
599 | #if defined(HAVE_MMAP) | 605 | #if defined(HAVE_MMAP) |
600 | if (d->input.fdm) { | 606 | if (d->input.fdm) { |
601 | unsigned long skip = 0; | 607 | unsigned long skip = 0; |
602 | 608 | ||
603 | if (d->stream.next_frame) { | 609 | if (d->stream.next_frame) { |
604 | struct stat stat; | 610 | struct stat stat; |
605 | 611 | ||
606 | if (fstat(d->input.fd, &stat) == -1) | 612 | if (fstat(d->input.fd, &stat) == -1) |
607 | return FALSE; | 613 | return FALSE; |
608 | 614 | ||
609 | if (stat.st_size + MAD_BUFFER_GUARD <= (signed)d->input.length) | 615 | if (stat.st_size + MAD_BUFFER_GUARD <= (signed)d->input.length) |
610 | return FALSE; | 616 | return FALSE; |
611 | 617 | ||
612 | // file size changed; update memory map | 618 | // file size changed; update memory map |
613 | skip = d->stream.next_frame - d->input.data; | 619 | skip = d->stream.next_frame - d->input.data; |
614 | 620 | ||
615 | if (unmap_file(d->input.fdm, d->input.length) == -1) { | 621 | if (unmap_file(d->input.fdm, d->input.length) == -1) { |
616 | d->input.fdm = 0; | 622 | d->input.fdm = 0; |
617 | d->input.data = 0; | 623 | d->input.data = 0; |
618 | return FALSE; | 624 | return FALSE; |
619 | } | 625 | } |
620 | 626 | ||
621 | d->input.length = stat.st_size; | 627 | d->input.length = stat.st_size; |
622 | 628 | ||
623 | d->input.fdm = map_file(d->input.fd, &d->input.length); | 629 | d->input.fdm = map_file(d->input.fd, &d->input.length); |
624 | if (d->input.fdm == 0) { | 630 | if (d->input.fdm == 0) { |
625 | d->input.data = 0; | 631 | d->input.data = 0; |
626 | return FALSE; | 632 | return FALSE; |
627 | } | 633 | } |
628 | 634 | ||
629 | d->input.data = (unsigned char *)d->input.fdm; | 635 | d->input.data = (unsigned char *)d->input.fdm; |
630 | } | 636 | } |
631 | 637 | ||
632 | mad_stream_buffer(&d->stream, d->input.data + skip, d->input.length - skip); | 638 | mad_stream_buffer(&d->stream, d->input.data + skip, d->input.length - skip); |
633 | 639 | ||
634 | } else | 640 | } else |
635 | #endif | 641 | #endif |
636 | { | 642 | { |
637 | if (d->stream.next_frame) { | 643 | if (d->stream.next_frame) { |
638 | memmove(d->input.data, d->stream.next_frame, | 644 | memmove(d->input.data, d->stream.next_frame, |
639 | d->input.length = &d->input.data[d->input.length] - d->stream.next_frame); | 645 | d->input.length = &d->input.data[d->input.length] - d->stream.next_frame); |
640 | } | 646 | } |
641 | 647 | ||
642 | do { | 648 | do { |
643 | len = ::read(d->input.fd, d->input.data + d->input.length, bufferSize /* MPEG_BUFFER_SIZE*/ - d->input.length); | 649 | len = ::read(d->input.fd, d->input.data + d->input.length, bufferSize /* MPEG_BUFFER_SIZE*/ - d->input.length); |
644 | } | 650 | } |
645 | while (len == -1 && errno == EINTR); | 651 | while (len == -1 && errno == EINTR); |
646 | 652 | ||
647 | if (len == -1) { | 653 | if (len == -1) { |
648 | qDebug("error reading audio"); | 654 | qDebug("error reading audio"); |
649 | return FALSE; | 655 | return FALSE; |
650 | } | 656 | } |
651 | else if (len == 0) { | 657 | else if (len == 0) { |
652 | d->input.eof = 1; | 658 | d->input.eof = 1; |
653 | 659 | ||
654 | assert(bufferSize /*MPEG_BUFFER_SIZE*/ - d->input.length >= MAD_BUFFER_GUARD); | 660 | assert(bufferSize /*MPEG_BUFFER_SIZE*/ - d->input.length >= MAD_BUFFER_GUARD); |
655 | 661 | ||
656 | while (len < MAD_BUFFER_GUARD) | 662 | while (len < MAD_BUFFER_GUARD) |
657 | d->input.data[d->input.length + len++] = 0; | 663 | d->input.data[d->input.length + len++] = 0; |
658 | } | 664 | } |
659 | 665 | ||
660 | mad_stream_buffer(&d->stream, d->input.data, d->input.length += len); | 666 | mad_stream_buffer(&d->stream, d->input.data, d->input.length += len); |
661 | } | 667 | } |
662 | 668 | ||
663 | return TRUE; | 669 | return TRUE; |
664 | } | 670 | } |
665 | 671 | ||
666 | 672 | ||
667 | static mad_fixed_t left_err, right_err; | 673 | static mad_fixed_t left_err, right_err; |
668 | static const int bits = 16; | 674 | static const int bits = 16; |
669 | static const int shift = MAD_F_FRACBITS + 1 - bits; | 675 | static const int shift = MAD_F_FRACBITS + 1 - bits; |
670 | 676 | ||
671 | 677 | ||
672 | inline long audio_linear_dither( mad_fixed_t sample, mad_fixed_t& error ) { | 678 | inline long audio_linear_dither( mad_fixed_t sample, mad_fixed_t& error ) { |
673 | sample += error; | 679 | sample += error; |
674 | mad_fixed_t quantized = (sample >= MAD_F_ONE) ? MAD_F_ONE - 1 : ( (sample < -MAD_F_ONE) ? -MAD_F_ONE : sample ); | 680 | mad_fixed_t quantized = (sample >= MAD_F_ONE) ? MAD_F_ONE - 1 : ( (sample < -MAD_F_ONE) ? -MAD_F_ONE : sample ); |
675 | quantized &= ~((1L << shift) - 1); | 681 | quantized &= ~((1L << shift) - 1); |
676 | error = sample - quantized; | 682 | error = sample - quantized; |
677 | return quantized >> shift; | 683 | return quantized >> shift; |
678 | } | 684 | } |
679 | 685 | ||
680 | 686 | ||
681 | inline void audio_pcm( short *data, unsigned int nsamples, mad_fixed_t *left, mad_fixed_t *right ) { | 687 | inline void audio_pcm( short *data, unsigned int nsamples, mad_fixed_t *left, mad_fixed_t *right ) { |
682 | if ( right ) { | 688 | if ( right ) { |
683 | while (nsamples--) { | 689 | while (nsamples--) { |
684 | data[0] = audio_linear_dither( *left++, left_err ); | 690 | data[0] = audio_linear_dither( *left++, left_err ); |
685 | data[1] = audio_linear_dither( *right++, right_err ); | 691 | data[1] = audio_linear_dither( *right++, right_err ); |
686 | data += 2; | 692 | data += 2; |
687 | } | 693 | } |
688 | } else { | 694 | } else { |
689 | while (nsamples--) { | 695 | while (nsamples--) { |
690 | data[0] = data[1] = audio_linear_dither( *left++, left_err ); | 696 | data[0] = data[1] = audio_linear_dither( *left++, left_err ); |
691 | data += 2; | 697 | data += 2; |
692 | } | 698 | } |
693 | } | 699 | } |
694 | } | 700 | } |
695 | 701 | ||
696 | 702 | ||
697 | bool LibMadPlugin::decode( short *output, long samples, long& samplesMade ) { | 703 | bool LibMadPlugin::decode( short *output, long samples, long& samplesMade ) { |
698 | debugMsg( "LibMadPlugin::decode" ); | 704 | debugMsg( "LibMadPlugin::decode" ); |
699 | 705 | ||
700 | static int buffered = 0; | 706 | static int buffered = 0; |
701 | static mad_fixed_t buffer[2][65536 * 2]; | 707 | static mad_fixed_t buffer[2][65536 * 2]; |
702 | int offset = buffered; | 708 | int offset = buffered; |
703 | samplesMade = 0; | 709 | samplesMade = 0; |
704 | 710 | ||
705 | static int maxBuffered = 8000; // 65536; | 711 | static int maxBuffered = 8000; // 65536; |