1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
// #include <avdec.h>
#include <avdec_private.h>
#include <locale.h>
#include <utils.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#ifndef _WIN32
#include <termios.h> /* Ask passwords */
#endif
// #define TRACK 6
/* Callback based reading: We do a simple stdio mapping here */
#ifdef _WIN32
#define BGAV_FSEEK(a,b,c) fseeko64(a,b,c)
#define BGAV_FTELL(a) ftello64(a)
#else
#ifdef HAVE_FSEEKO
#define BGAV_FSEEK fseeko
#else
#define BGAV_FSEEK fseek
#endif
#ifdef HAVE_FTELLO
#define BGAV_FTELL ftello
#else
#define BGAV_FSEEK ftell
#endif
#endif
static void index_callback(void * data, float perc)
{
fprintf(stdout, "Building index %.2f %% completed\r",
perc * 100.0);
fflush(stdout);
}
static int read_callback(void * priv, uint8_t * data, int len)
{
FILE * f = (FILE*)priv;
return fread(data, 1, len, f);
}
static int64_t seek_callback(void * priv, int64_t pos, int whence)
{
FILE * f = (FILE*)priv;
BGAV_FSEEK(f, pos, whence);
return BGAV_FTELL(f);
}
/* Taken from the Unix programmer FAQ: http://www.faqs.org/faqs/unix-faq/programmer/faq/ */
#ifndef _WIN32
static struct termios stored_settings;
static void echo_off(void)
{
struct termios new_settings;
tcgetattr(0,&stored_settings);
new_settings = stored_settings;
new_settings.c_lflag &= (~ECHO);
tcsetattr(0,TCSANOW,&new_settings);
return;
}
static void echo_on(void)
{
tcsetattr(0,TCSANOW,&stored_settings);
return;
}
/* Ok this is not so clean. But the library allows arbitrary string lengths */
char buf[1024];
static int user_pass_func(void * data, const char * resource, char ** user, char ** pass)
{
char * pos;
fprintf(stderr, "Enter authentication for \"%s\"\n", resource);
fprintf(stderr, "Username: ");
fgets(buf, 1024, stdin);
pos = strchr(buf, '\n');
if(pos)
*pos = '\0';
if(buf[0] == '\0')
return 0;
*user = gavl_strndup(buf, NULL);
fprintf(stderr, "Password: ");
echo_off();
fgets(buf, 1024, stdin);
echo_on();
fprintf(stderr, "\n");
pos = strchr(buf, '\n');
if(pos)
*pos = '\0';
if(buf[0] == '\0')
return 0;
*pass = gavl_strndup(buf, NULL);
return 1;
}
#endif
/* Configuration data */
static int connect_timeout = 5000;
static int read_timeout = 5000;
static int network_bandwidth = 524300; /* 524.3 Kbps (Cable/DSL) */
static int seek_subtitles = 2;
static int frames_to_read = 10;
static int do_audio = 1;
static int do_video = 1;
static int sample_accurate = 0;
static int vdpau = 0;
static int64_t audio_seek = -1;
static int64_t video_seek = -1;
static gavl_time_t global_seek = -1;
static int dump_ci = 0;
static void print_usage()
{
fprintf(stderr, "Usage: bgavdump [options] location\n");
fprintf(stderr, " bgavdump -L\n");
fprintf(stderr, "\n");
fprintf(stderr, "-s Switch to sample accurate mode\n");
fprintf(stderr, "-aseek <sample> Seek to audio sample\n");
fprintf(stderr, "-vseek <time> Seek to video time\n");
fprintf(stderr, "-seek <seconds> Do a global seek to a time\n");
fprintf(stderr, "-na Disable audio\n");
fprintf(stderr, "-nv Disable video\n");
fprintf(stderr, "-nf <number> Number of A/V frames to read\n");
fprintf(stderr, "-v <level> Verbosity level (0..4)\n");
fprintf(stderr, "-ci Dump compression info\n");
fprintf(stderr, "-vdpau Try to use vdpau\n");
fprintf(stderr, "-dh Dump headers of the file\n");
fprintf(stderr, "-di Dump indices of the file\n");
fprintf(stderr, "-dp Dump packets\n");
fprintf(stderr, "-L List all demultiplexers and codecs\n");
}
static void list_all()
{
bgav_inputs_dump();
bgav_redirectors_dump();
bgav_formats_dump();
bgav_codecs_dump();
bgav_subreaders_dump();
}
int main(int argc, char ** argv)
{
FILE * cb_file = NULL;
int i, j;
int num_audio_streams;
int num_video_streams;
int num_text_streams;
int num_overlay_streams;
// int num_urls;
int num_tracks;
int track;
int arg_index;
char * sub_text = NULL;
int sub_text_alloc = 0;
gavl_time_t sub_time;
gavl_time_t sub_duration;
bgav_t * file;
const gavl_dictionary_t * edl;
bgav_options_t * opt;
gavl_overlay_t * ovl;
gavl_audio_frame_t * af;
gavl_video_frame_t * vf;
const gavl_audio_format_t * audio_format;
const gavl_video_format_t * video_format;
gavl_compression_info_t ci;
gavl_audio_source_t * asrc;
gavl_video_source_t * vsrc;
setlocale(LC_MESSAGES, "");
setlocale(LC_CTYPE, "");
if(argc == 1)
{
print_usage();
return 0;
}
file = bgav_create();
opt = bgav_get_options(file);
/* Never delete cache entries */
bgav_options_set_cache_size(opt, INT_MAX);
arg_index = 1;
while(arg_index < argc - 1)
{
if(!strcmp(argv[arg_index], "-L"))
{
list_all();
return 0;
}
if(!strcmp(argv[arg_index], "-s"))
{
sample_accurate = 1;
bgav_options_set_index_callback(opt, index_callback, NULL);
arg_index++;
}
else if(!strcmp(argv[arg_index], "-vdpau"))
{
vdpau = 1;
arg_index++;
}
else if(!strcmp(argv[arg_index], "-na"))
{
do_audio = 0;
arg_index++;
}
else if(!strcmp(argv[arg_index], "-nv"))
{
do_video = 0;
arg_index++;
}
else if(!strcmp(argv[arg_index], "-nf"))
{
frames_to_read = strtoll(argv[arg_index+1], NULL, 10);
arg_index+=2;
}
else if(!strcmp(argv[arg_index], "-aseek"))
{
audio_seek = strtoll(argv[arg_index+1], NULL, 10);
arg_index+=2;
}
else if(!strcmp(argv[arg_index], "-vseek"))
{
video_seek = strtoll(argv[arg_index+1], NULL, 10);
arg_index+=2;
}
else if(!strcmp(argv[arg_index], "-seek"))
{
global_seek = strtoll(argv[arg_index+1], NULL, 10);
arg_index+=2;
}
else if(!strcmp(argv[arg_index], "-ci"))
{
dump_ci = 1;
arg_index++;
}
else if(!strcmp(argv[arg_index], "-dh"))
{
bgav_options_set_dump_headers(opt, 1);
arg_index++;
}
else if(!strcmp(argv[arg_index], "-dp"))
{
bgav_options_set_dump_packets(opt, 1);
arg_index++;
}
else if(!strcmp(argv[arg_index], "-di"))
{
bgav_options_set_dump_indices(opt, 1);
arg_index++;
}
else if(!strcmp(argv[arg_index], "-v"))
{
gavl_set_log_verbose(strtol(argv[arg_index+1], NULL, 10));
arg_index+=2;
}
else
arg_index++;
}
/* Configure */
bgav_options_set_connect_timeout(opt, connect_timeout);
bgav_options_set_read_timeout(opt, read_timeout);
bgav_options_set_network_bandwidth(opt, network_bandwidth);
bgav_options_set_seek_subtitles(opt, seek_subtitles);
bgav_options_set_http_shoutcast_metadata(opt, 1);
bgav_options_set_seek_subtitles(opt, 1);
if(sample_accurate)
bgav_options_set_sample_accurate(opt, 1);
bgav_options_set_vdpau(opt, vdpau);
#ifndef _WIN32
bgav_options_set_user_pass_callback(opt, user_pass_func, NULL);
#endif
if(!strncmp(argv[argc-1], "vcd://", 6))
{
if(!bgav_open_vcd(file, argv[argc-1] + 6))
{
fprintf(stderr, "Could not open VCD Device %s\n",
argv[argc-1] + 6);
return -1;
}
}
else if(!strncmp(argv[argc-1], "dvd://", 6))
{
if(!bgav_open_dvd(file, argv[argc-1] + 6))
{
fprintf(stderr, "Could not open DVD Device %s\n",
argv[argc-1] + 6);
return -1;
}
}
else if(!strncmp(argv[argc-1], "dvb://", 6))
{
if(!bgav_open_dvb(file, argv[argc-1] + 6))
{
fprintf(stderr, "Could not open DVB Device %s\n",
argv[argc-1] + 6);
return -1;
}
}
else if(!strncmp(argv[argc-1], "cb://", 5))
{
cb_file = fopen(argv[argc-1] + 5, "r");
if(!cb_file)
{
fprintf(stderr, "Could not open file %s via callbacks\n",
argv[argc-1] + 5);
return -1;
}
if(!bgav_open_callbacks(file,
read_callback,
seek_callback,
cb_file,
argv[argc-1] + 5, NULL, 0))
{
fprintf(stderr, "Could not open file %s via callbacks\n",
argv[argc-1] + 5);
return -1;
}
}
else if(!bgav_open(file, argv[argc-1]))
{
fprintf(stderr, "Could not open file %s\n",
argv[argc-1]);
bgav_close(file);
return -1;
}
#if 0
if(bgav_is_redirector(file))
{
fprintf(stderr, "Found redirector:\n");
num_urls = bgav_redirector_get_num_urls(file);
for(i = 0; i < num_urls; i++)
{
fprintf(stderr, "Name %d: %s\n", i+1, bgav_redirector_get_name(file, i));
fprintf(stderr, "URL %d: %s\n", i+1, bgav_redirector_get_url(file, i));
}
bgav_close(file);
return 0;
}
#endif
edl = bgav_get_edl(file);
if(edl)
{
fprintf(stderr, "Found EDL\n");
gavl_dictionary_dump(edl, 2);
}
num_tracks = bgav_num_tracks(file);
#ifdef TRACK
track = TRACK;
#else
for(track = 0; track < num_tracks; track++)
{
#endif
bgav_select_track(file, track);
if(sample_accurate && !bgav_can_seek_sample(file))
{
fprintf(stderr, "Sample accurate access not possible for track %d\n", track+1);
return -1;
}
fprintf(stderr, "===================================\n");
fprintf(stderr, "============ Track %3d ============\n", track+1);
fprintf(stderr, "===================================\n");
num_audio_streams = bgav_num_audio_streams(file, track);
num_video_streams = bgav_num_video_streams(file, track);
num_text_streams = bgav_num_text_streams(file, track);
num_overlay_streams = bgav_num_overlay_streams(file, track);
if(do_audio)
{
for(i = 0; i < num_audio_streams; i++)
{
if(dump_ci)
{
if(bgav_get_audio_compression_info(file, i, &ci))
{
fprintf(stderr, "Audio stream %d ", i+1);
gavl_compression_info_dump(&ci);
gavl_compression_info_free(&ci);
audio_format = bgav_get_audio_format(file, i);
fprintf(stderr, "Format (exported when reading compressed)\n");
gavl_audio_format_dump(audio_format);
}
else
fprintf(stderr, "Audio stream %d cannot output compressed packets\n",
i+1);
}
bgav_set_audio_stream(file, i, BGAV_STREAM_DECODE);
}
}
if(do_video)
{
for(i = 0; i < num_video_streams; i++)
{
if(dump_ci)
{
if(bgav_get_video_compression_info(file, i, &ci))
{
fprintf(stderr, "Video stream %d ", i+1);
gavl_compression_info_dump(&ci);
gavl_compression_info_free(&ci);
video_format = bgav_get_video_format(file, i);
fprintf(stderr, "Format (exported when reading compressed)\n");
gavl_video_format_dump(video_format);
}
else
fprintf(stderr, "Video stream %d cannot output compressed packets\n",
i+1);
}
bgav_set_video_stream(file, i, BGAV_STREAM_DECODE);
}
}
for(i = 0; i < num_text_streams; i++)
{
bgav_set_text_stream(file, i, BGAV_STREAM_DECODE);
}
for(i = 0; i < num_overlay_streams; i++)
{
bgav_set_overlay_stream(file, i, BGAV_STREAM_DECODE);
if(dump_ci)
{
if(bgav_get_overlay_compression_info(file, i, &ci))
{
fprintf(stderr, "Subtitle stream %d ", i+1);
gavl_compression_info_dump(&ci);
gavl_compression_info_free(&ci);
video_format = bgav_get_overlay_format(file, i);
fprintf(stderr, "Format (exported when reading compressed)\n");
gavl_video_format_dump(video_format);
}
else
fprintf(stderr, "Subtitle stream %d cannot output compressed packets\n",
i+1);
}
}
fprintf(stderr, "Starting decoders...\n");
if(!bgav_start(file))
{
fprintf(stderr, "Starting decoders failed\n");
#ifndef TRACK
continue;
#else
return -1;
#endif
}
else
fprintf(stderr, "Starting decoders done\n");
if(global_seek >= 0)
{
if(bgav_can_seek(file))
{
fprintf(stderr, "Doing global seek to %"PRId64"...\n", global_seek);
bgav_seek(file, &global_seek);
fprintf(stderr, "Time after seek: %"PRId64"\n", global_seek);
}
else
{
fprintf(stderr, "Global seek requested for non-seekable file\n");
return -1;
}
}
fprintf(stderr, "Dumping file contents...\n");
bgav_dump(file);
fprintf(stderr, "End of file contents\n");
/* Try to get some frames from each stream */
if(do_audio)
{
for(i = 0; i < num_audio_streams; i++)
{
asrc = bgav_get_audio_source(file, i);
gavl_audio_source_set_dst(asrc, 0, NULL);
// audio_format = bgav_get_audio_format(file, i);
// af = gavl_audio_frame_create(audio_format);
if(sample_accurate && (audio_seek >= 0))
bgav_seek_audio(file, i, audio_seek);
for(j = 0; j < frames_to_read; j++)
{
fprintf(stderr, "Reading frame from audio stream %d...", i+1);
af = NULL;
if(gavl_audio_source_read_frame(asrc, &af) == GAVL_SOURCE_OK)
fprintf(stderr, "Done, PTS: %"PRId64", Samples: %d\n",
af->timestamp, af->valid_samples);
else
fprintf(stderr, "Failed\n");
}
}
}
if(do_video)
{
for(i = 0; i < num_video_streams; i++)
{
video_format = bgav_get_video_format(file, i);
#if 1
vsrc = bgav_get_video_source(file, i);
gavl_video_source_set_dst(vsrc, 0, NULL);
if(sample_accurate)
{
if(video_seek >= 0)
bgav_seek_video(file, i, video_seek);
}
for(j = 0; j < frames_to_read; j++)
{
fprintf(stderr, "Reading frame from video stream %d...", i+1);
vf = NULL;
if(gavl_video_source_read_frame(vsrc, &vf) == GAVL_SOURCE_OK)
{
fprintf(stderr, "Done, timestamp: %"PRId64, vf->timestamp);
if(vf->duration > 0)
fprintf(stderr, ", Duration: %"PRId64, vf->duration);
else
fprintf(stderr, ", Duration: Unknown");
if(gavl_interlace_mode_is_mixed(video_format->interlace_mode))
{
fprintf(stderr, ", IL: ");
switch(vf->interlace_mode)
{
case GAVL_INTERLACE_TOP_FIRST:
fprintf(stderr, "T");
break;
case GAVL_INTERLACE_BOTTOM_FIRST:
fprintf(stderr, "B");
break;
case GAVL_INTERLACE_NONE:
fprintf(stderr, "P");
break;
default:
fprintf(stderr, "?");
break;
}
}
if(vf->timecode != GAVL_TIMECODE_UNDEFINED)
{
fprintf(stderr, ", Timecode: ");
gavl_timecode_dump(&video_format->timecode_format,
vf->timecode);
}
fprintf(stderr, "\n");
// fprintf(stderr, "First 16 bytes of first plane follow\n");
// bgav_hexdump(vf->planes[0] + vf->strides[0] * 20, 16, 16);
}
else
{
fprintf(stderr, "Failed\n");
break;
}
}
#endif
}
}
for(i = 0; i < num_text_streams; i++)
{
int timescale = bgav_get_text_timescale(file, i);
fprintf(stderr, "Reading text subtitle from stream %d...", i+1);
if(bgav_read_subtitle_text(file, &sub_text, &sub_text_alloc,
&sub_time, &sub_duration, i + num_overlay_streams))
{
fprintf(stderr, "Done\nstart: %f, duration: %f\n%s\n",
gavl_time_to_seconds(gavl_time_unscale(timescale,
sub_time)),
gavl_time_to_seconds(gavl_time_unscale(timescale, sub_duration)),
sub_text);
}
else
fprintf(stderr, "Failed\n");
}
for(i = 0; i < num_overlay_streams; i++)
{
video_format = bgav_get_overlay_format(file, i);
fprintf(stderr, "Reading overlay subtitle from stream %d...", i+1);
ovl = gavl_video_frame_create(video_format);
if(bgav_read_subtitle_overlay(file, ovl, i))
{
fprintf(stderr, "Done\nsrc_rect: ");
gavl_rectangle_i_dump(&ovl->src_rect);
fprintf(stderr, "\ndst_coords: %d,%d\n", ovl->dst_x, ovl->dst_y);
fprintf(stderr, "Time: %" PRId64 " -> %" PRId64 "\n",
ovl->timestamp,
ovl->timestamp+ovl->duration);
}
else
fprintf(stderr, "Failed\n");
gavl_video_frame_destroy(ovl);
}
#ifndef TRACK
}
#endif
if(sub_text)
free(sub_text);
bgav_close(file);
if(cb_file)
fclose(cb_file);
return -1;
}
|