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 678 679 680 681 682 683
|
/*
* filter_fieldanalysis.c
*
* (c) by Matthias Hopf - August 2004
*
* This file is part of transcode, a video stream processing tool
*
* transcode 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, or (at your option)
* any later version.
*
* transcode 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 GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
/*
* This filter determines the type of video
* (interlaced / progressive / field shifed / telecined)
* by analysing the luminance field of the input frames.
*/
#define MOD_NAME "filter_fieldanalysis.so"
#define MOD_VERSION "v1.0 pl1 (2004-08-13)"
#define MOD_CAP "Field analysis for detecting interlace and telecine"
#define MOD_AUTHOR "Matthias Hopf"
#include "transcode.h"
#include "filter.h"
#include "libtc/libtc.h"
#include "libtc/optstr.h"
#include "libtcvideo/tcvideo.h"
#include <assert.h>
/*
* State
*/
typedef struct {
double interlaceDiff;
double unknownDiff;
double progressiveDiff;
double progressiveChange;
double changedIfMore;
int forceTelecineDetect;
int verbose;
int outDiff;
float fps;
int codec;
int width;
int height;
int size;
/* lumance fields, current (In) and previous,
* top original T (bottom interpolated) and bottom original B */
uint8_t *lumIn, *lumPrev, *lumInT, *lumInB, *lumPrevT, *lumPrevB;
int telecineState;
int numFrames;
int unknownFrames;
int topFirstFrames;
int bottomFirstFrames;
int interlacedFrames;
int progressiveFrames;
int fieldShiftFrames;
int telecineFrames;
TCVHandle tcvhandle;
} myfilter_t;
static myfilter_t *myf_global = NULL;
/* Internal state flag values */
enum { IS_UNKNOWN = -1, IS_FALSE = 0, IS_TRUE = 1 };
/*
* Helper functions
*/
/* bob a single field */
static void bob_field (uint8_t *in, uint8_t *out, int width, int height) {
int i, j, w2 = 2*width;
for (i = 0; i < height; i++) {
/* First bob (average lines) */
for (j = 0; j < width; j++)
out[j] = (((short)in[j]) + ((short)in[j+w2])) >>1;
/* Then copy original line */
ac_memcpy (out+width, in+w2, width);
in += w2;
out += w2;
}
}
/* compare images: calc squared 2-norm of difference image
* maximum difference is 255^2 = 65025 */
static double pic_compare (uint8_t *p1, uint8_t *p2, int width, int height,
int modulo) {
long long res = 0;
int i, j;
for (i = height; i; i--) {
for (j = width; j; j--) {
int d = ((int)*p1++) - ((int)*p2++);
res += d*d;
}
p1 += modulo;
p2 += modulo;
}
return ((double) res) / (width*height);
}
/* create scaled difference image (for outdiff) */
static void pic_diff (uint8_t *p1, uint8_t *p2, uint8_t *dest, int size, int scale) {
int i;
for (i = size ; i; i--) {
int d = scale * (((int)*p1++) - ((int)*p2++));
d = d > 0 ? d : -d;
*dest++ = d > 255 ? 255 : d;
}
}
/*
* main function: check interlace state
*/
static void check_interlace (myfilter_t *myf, int id) {
double pixDiff, pixShiftChangedT, pixShiftChangedB;
double pixLastT, pixLastB, pixLast;
int isChangedT = IS_FALSE, isChangedB = IS_FALSE;
int isProg = IS_UNKNOWN;
int isShift = IS_UNKNOWN, isTop = IS_UNKNOWN;
int *counter = &myf->unknownFrames;
/* Determine frame parmeters */
pixDiff = pic_compare (myf->lumInT, myf->lumInB,
myf->width, myf->height-2, 0);
pixShiftChangedT = pic_compare (myf->lumInT, myf->lumPrevB,
myf->width, myf->height-2, 0);
pixShiftChangedB = pic_compare (myf->lumInB, myf->lumPrevT,
myf->width, myf->height-2, 0);
pixLastT = pic_compare (myf->lumIn, myf->lumPrev,
myf->width, myf->height/2, myf->width);
pixLastB = pic_compare (myf->lumIn + myf->width,
myf->lumPrev + myf->width,
myf->width, myf->height/2, myf->width);
pixLast = (pixLastT + pixLastB) / 2;
/* Check for changed fields */
if (pixLastT > myf->changedIfMore)
isChangedT = IS_TRUE;
if (pixLastB > myf->changedIfMore)
isChangedB = IS_TRUE;
/* Major field detection */
if (pixShiftChangedT * myf->interlaceDiff < pixShiftChangedB)
isTop = IS_TRUE;
if (pixShiftChangedB * myf->interlaceDiff < pixShiftChangedT)
isTop = IS_FALSE;
/* Check for progessive frame */
if (pixDiff * myf->unknownDiff > pixShiftChangedT ||
pixDiff * myf->unknownDiff > pixShiftChangedB)
isProg = IS_FALSE;
if (pixDiff * myf->progressiveDiff < pixShiftChangedT &&
pixDiff * myf->progressiveDiff < pixShiftChangedB &&
pixDiff < pixLast * myf->progressiveChange)
isProg = IS_TRUE;
/* Check for shifted progressive frame */
/* not completely equivalent to check.prog.frame. (pixLast) */
/* TODO: this triggers too often for regular interlaced material */
if (pixShiftChangedT * myf->progressiveDiff < pixDiff &&
pixShiftChangedT * myf->progressiveDiff < pixShiftChangedB &&
pixShiftChangedT < myf->progressiveChange * pixLast)
isShift = IS_TRUE;
if (pixShiftChangedB * myf->progressiveDiff < pixDiff &&
pixShiftChangedB * myf->progressiveDiff < pixShiftChangedT &&
pixShiftChangedT < myf->progressiveChange * pixLast)
isShift = IS_TRUE;
/* Detect telecine */
/* telecined material will create a sequence like this (TopfieldFirst):
* 0t1b (0)1t1b (1)2t2b (2)3t3b (3)3t4b (4)4t5b (0)5t5b ...
* and vice versa for BottomfieldFirst.
* We start looking for an progressive frame (1t1b) with one field
* equal to the last frame and continue checking the frames for
* adhering to the pattern.
* We only count frames as valid telecine frames, if the pattern has been
* detected twice in a row (telecineState > 10).
* Undecidable frames (isProg == UNKNOWN && isTop == UNKNOWN) and
* frames without changes (isChangedT != TRUE && isChangedB != TRUE)
* are only accepted, if telecineState > 10.
* Only happens for NTSC (29.97fps).
* If a test fails, it reduces the current telecineState by 20.
* Max. telecineState is 100.
*/
/* TODO: currently no field insertion/deletion is detected,
* requires resync right now */
if ((myf->fps > 29.9 && myf->fps < 30.1) || myf->forceTelecineDetect) {
if ((isChangedT == IS_TRUE || isChangedB == IS_TRUE) &&
(isProg != IS_UNKNOWN || isTop != IS_UNKNOWN ||
myf->telecineState > 10)){
switch (myf->telecineState % 5) {
case 0:
/* if (isProg == IS_FALSE)
myf->telecineState -= 20; */ /* prog. detmination may fail */
switch (isTop) {
case IS_TRUE:
if (isChangedB == IS_TRUE)
myf->telecineState -= 20;
break;
case IS_FALSE:
if (isChangedT == IS_TRUE)
myf->telecineState -= 20;
break;
}
break;
case 1:
case 2:
if (isProg == IS_FALSE)
myf->telecineState -= 20;
break;
case 3:
if (isProg == IS_TRUE)
myf->telecineState -= 20;
switch (isTop) {
case IS_TRUE:
if (isChangedT == IS_TRUE)
myf->telecineState -= 20;
break;
case IS_FALSE:
if (isChangedB == IS_TRUE)
myf->telecineState -= 20;
break;
}
break;
case 4:
if (isProg == IS_TRUE)
myf->telecineState -= 20;
break;
}
if (myf->telecineState < 0)
myf->telecineState = 0;
if (myf->telecineState == 0) {
/* Frame has another chance to be case 0 */
/* if (isProg == IS_FALSE)
myf->telecineState = -1; */ /* prog. detmination may fail */
switch (isTop) {
case IS_TRUE:
if (isChangedB == IS_TRUE)
myf->telecineState = -1;
break;
case IS_FALSE:
if (isChangedT == IS_TRUE)
myf->telecineState = -1;
break;
}
}
myf->telecineState++;
}
else if (myf->telecineState > 10)
myf->telecineState++;
else
myf->telecineState = 0;
if (myf->telecineState > 100)
myf->telecineState -= 10;
}
/* Detect inconstistencies */
if (isProg == IS_FALSE && isTop == IS_UNKNOWN)
isProg = IS_UNKNOWN;
if (isProg != IS_FALSE && isTop != IS_UNKNOWN) {
isTop = IS_UNKNOWN;
isProg = IS_UNKNOWN;
}
if (isChangedT == IS_FALSE || isChangedB == IS_FALSE) {
isProg = IS_UNKNOWN;
isTop = IS_UNKNOWN;
isShift = IS_UNKNOWN;
}
/* verbose output */
if (myf->verbose) {
char verboseBuffer[64];
char *outType = 0, *outField = " ";
memset (verboseBuffer, ' ', 63);
if (pixDiff * myf->unknownDiff < pixShiftChangedT)
memcpy (&verboseBuffer[0], "pt", 2);
if (pixDiff * myf->progressiveDiff < pixShiftChangedT)
memcpy (&verboseBuffer[0], "Pt", 2);
if (pixDiff * myf->unknownDiff < pixShiftChangedB)
memcpy (&verboseBuffer[2], "pb", 2);
if (pixDiff * myf->progressiveDiff < pixShiftChangedB)
memcpy (&verboseBuffer[2], "Pb", 2);
if (pixDiff < myf->progressiveChange*pixLast)
verboseBuffer[5] = 'c';
if (pixShiftChangedT * myf->interlaceDiff < pixShiftChangedB)
verboseBuffer[7] = 't';
if (pixShiftChangedB * myf->interlaceDiff < pixShiftChangedT)
verboseBuffer[7] = 'b';
if (isChangedT == IS_FALSE)
memcpy (&verboseBuffer[9], "st", 2);
if (isChangedB == IS_FALSE)
memcpy (&verboseBuffer[11], "sb", 2);
verboseBuffer[13] = 0;
if (myf->verbose > 1) {
tc_log_info (MOD_NAME, "frame %d: pixDiff %.3f "
"pixShiftChanged %.3fT/%.3fB pixLast %.3fT/%.3fB telecineState %d",
id, pixDiff, pixShiftChangedT, pixShiftChangedB, pixLastT, pixLastB,
myf->telecineState);
}
switch (isProg) {
case IS_UNKNOWN: outType = "unknown "; break;
case IS_FALSE: outType = "interlaced "; break;
case IS_TRUE: outType = "progressive"; break;
}
if (isChangedT == IS_FALSE && isChangedB == IS_FALSE)
outType = "low change ";
if (isShift == IS_TRUE)
outType = "shifted p ";
if (myf->telecineState > 10)
outType = "telecined ";
switch (isTop) {
case IS_FALSE: outField = "B"; break;
case IS_TRUE: outField = "T"; break;
}
tc_log_info (MOD_NAME, "frame %d: %s %s [%s]",
id, outType, outField, verboseBuffer);
}
/* Count types */
switch (isProg) {
case IS_UNKNOWN: counter = &myf->unknownFrames; break;
case IS_FALSE: counter = &myf->interlacedFrames; break;
case IS_TRUE: counter = &myf->progressiveFrames; break;
}
if (isChangedT == IS_FALSE && isChangedB == IS_FALSE)
counter = &myf->unknownFrames;
if (isShift == IS_TRUE)
counter = &myf->fieldShiftFrames;
if (myf->telecineState > 10)
counter = &myf->telecineFrames;
switch (isTop) {
case IS_FALSE: myf->bottomFirstFrames++; break;
case IS_TRUE: myf->topFirstFrames++; break;
}
assert (counter);
(*counter)++;
myf->numFrames++;
}
/*
* transcode API
*/
int tc_filter(frame_list_t *ptr_, char *options)
{
vframe_list_t *ptr = (vframe_list_t *)ptr_;
vob_t *vob = NULL;
myfilter_t *myf = myf_global;
/*
* filter init
*/
if (ptr->tag & TC_FILTER_INIT) {
if (! (vob = tc_get_vob ()))
return -1;
if (! (myf = myf_global = tc_zalloc (sizeof (myfilter_t)))) {
return -1;
}
if (! (myf->tcvhandle = tcv_init())) {
tc_log_error(MOD_NAME, "tcv_init() failed");
free(myf);
myf = myf_global = NULL;
return -1;
}
if (verbose) /* global verbose */
tc_log_info(MOD_NAME, "%s %s", MOD_VERSION, MOD_CAP);
/* default values */
myf->interlaceDiff = 1.1;
myf->unknownDiff = 1.5;
myf->progressiveDiff = 8;
myf->progressiveChange = 0.2;
myf->changedIfMore = 10;
myf->forceTelecineDetect = 0;
myf->verbose = 0;
myf->outDiff = 0;
/* video parameters */
switch (vob->im_v_codec) {
case CODEC_YUY2:
case CODEC_YUV:
case CODEC_YUV422:
case CODEC_RGB:
break;
default:
tc_log_error (MOD_NAME, "Unsupported codec - need one of RGB YUV YUY2 YUV422");
return -1;
}
myf->codec = vob->im_v_codec;
myf->width = vob->im_v_width;
myf->height = vob->im_v_height;
myf->fps = vob->fps;
myf->size = myf->width * myf->height;
if (options) {
optstr_get (options, "interlacediff", "%lf",
&myf->interlaceDiff);
optstr_get (options, "unknowndiff", "%lf",
&myf->unknownDiff);
optstr_get (options, "progressivediff", "%lf",
&myf->progressiveDiff);
optstr_get (options, "progressivechange", "%lf",
&myf->progressiveChange);
optstr_get (options, "changedifmore", "%lf",
&myf->changedIfMore);
optstr_get (options, "forcetelecinedetect",
"%d", &myf->forceTelecineDetect);
optstr_get (options, "verbose", "%d", &myf->verbose);
optstr_get (options, "outdiff", "%d", &myf->outDiff);
if (optstr_lookup (options, "help") != NULL) {
tc_log_info (MOD_NAME, "(%s) help\n"
"* Overview:\n"
" 'fieldanalysis' scans video for interlacing artifacts and\n"
" detects progressive / interlaced / telecined video.\n"
" It also determines the major field for interlaced video.\n"
"* Verbose Output: [PtPb c t stsb]\n"
" Pt, Pb: progressivediff succeeded, per field.\n"
" pt, pb: unknowndiff succeeded, progressivediff failed.\n"
" c: progressivechange succeeded.\n"
" t: topFieldFirst / b: bottomFieldFirst detected.\n"
" st, sb: changedifmore failed (fields are similar to last frame).\n"
, MOD_CAP);
}
}
/* frame memory */
if (! (myf->lumIn = calloc (1, myf->size)) ||
! (myf->lumPrev = calloc (1, myf->size)) ||
! (myf->lumInT = calloc (1, myf->size)) ||
! (myf->lumInB = calloc (1, myf->size)) ||
! (myf->lumPrevT = calloc (1, myf->size)) ||
! (myf->lumPrevB = calloc (1, myf->size))) {
tc_log_error(MOD_NAME, "calloc() failed");
return -1;
}
if (verbose) { /* global verbose */
tc_log_info(MOD_NAME, "interlacediff %.2f, unknowndiff %.2f, progressivediff %.2f",
myf->interlaceDiff, myf->unknownDiff, myf->progressiveDiff);
tc_log_info(MOD_NAME, "progressivechange %.2f, changedifmore %.2f",
myf->progressiveChange, myf->changedIfMore);
tc_log_info(MOD_NAME, "forcetelecinedetect %s, verbose %d, outdiff %d",
myf->forceTelecineDetect ? "True":"False", myf->verbose,
myf->outDiff);
}
return 0;
}
/*
* filter close
*/
if (ptr->tag & TC_FILTER_CLOSE) {
int total = myf->numFrames - myf->unknownFrames;
int totalfields = myf->topFirstFrames + myf->bottomFirstFrames;
/* Cleanup */
free (myf->lumIn);
free (myf->lumPrev);
free (myf->lumInT);
free (myf->lumInB);
free (myf->lumPrevT);
free (myf->lumPrevB);
myf->lumIn = myf->lumPrev = myf->lumInT = myf->lumInB =
myf->lumPrevT = myf->lumPrevB = NULL;
/* Output results */
if (totalfields < 1)
totalfields = 1;
tc_log_info(MOD_NAME, "RESULTS: Frames: %d (100%%) Unknown: %d (%.3g%%)",
myf->numFrames, myf->unknownFrames,
100.0 * myf->unknownFrames / (double)myf->numFrames);
tc_log_info(MOD_NAME, "RESULTS: Progressive: %d (%.3g%%) Interlaced: %d (%.3g%%)",
myf->progressiveFrames, 100.0 * myf->progressiveFrames / (double)myf->numFrames,
myf->interlacedFrames, 100.0 * myf->interlacedFrames / (double)myf->numFrames);
tc_log_info(MOD_NAME, "RESULTS: FieldShift: %d (%.3g%%) Telecined: %d (%.3g%%)",
myf->fieldShiftFrames, 100.0 * myf->fieldShiftFrames / (double)myf->numFrames,
myf->telecineFrames, 100.0 * myf->telecineFrames / (double)myf->numFrames);
tc_log_info(MOD_NAME, "RESULTS: MajorField: TopFirst %d (%.3g%%) BottomFirst %d (%.3g%%)",
myf->topFirstFrames, 100.0 * myf->topFirstFrames / (double)totalfields,
myf->bottomFirstFrames, 100.0 * myf->bottomFirstFrames / (double)totalfields);
if (total < 50)
tc_log_warn (MOD_NAME, "less than 50 frames analyzed correctly, no conclusion.");
else if (myf->unknownFrames * 10 > myf->numFrames * 9)
tc_log_warn (MOD_NAME, "less than 10%% frames analyzed correctly, no conclusion.");
else if (myf->progressiveFrames * 8 > total * 7)
tc_log_info (MOD_NAME, "CONCLUSION: progressive video.");
else if (myf->topFirstFrames * 8 > myf->bottomFirstFrames &&
myf->bottomFirstFrames * 8 > myf->topFirstFrames)
tc_log_info (MOD_NAME, "major field unsure, no conclusion. Use deinterlacer for processing.");
else if (myf->telecineFrames * 4 > total * 3)
tc_log_info (MOD_NAME, "CONCLUSION: telecined video, %s field first.",
myf->topFirstFrames > myf->bottomFirstFrames ? "top" : "bottom");
else if (myf->fieldShiftFrames * 4 > total * 3)
tc_log_info (MOD_NAME, "CONCLUSION: field shifted progressive video, %s field first.",
myf->topFirstFrames > myf->bottomFirstFrames ? "top" : "bottom");
else if (myf->interlacedFrames > myf->fieldShiftFrames &&
(myf->interlacedFrames+myf->fieldShiftFrames) * 8 > total * 7)
tc_log_info (MOD_NAME, "CONCLUSION: interlaced video, %s field first.",
myf->topFirstFrames > myf->bottomFirstFrames ? "top" : "bottom");
else
tc_log_info (MOD_NAME, "mixed video, no conclusion. Use deinterlacer for processing.");
tcv_free(myf->tcvhandle);
myf->tcvhandle = 0;
return 0;
}
/*
* filter description
*/
if (ptr->tag & TC_FILTER_GET_CONFIG) {
char buf[255];
optstr_filter_desc (options, MOD_NAME, MOD_CAP, MOD_VERSION,
MOD_AUTHOR, "VRY4E", "2");
tc_snprintf (buf, sizeof(buf), "%g", myf->interlaceDiff);
optstr_param (options, "interlacediff", "Minimum temporal inter-field difference for detecting interlaced video", "%f", buf, "1.0", "inf");
tc_snprintf (buf, sizeof(buf), "%g", myf->unknownDiff);
optstr_param (options, "unknowndiff", "Maximum inter-frame change vs. detail differences for neglecting interlaced video", "%f", buf, "1.0", "inf");
tc_snprintf (buf, sizeof(buf), "%g", myf->progressiveDiff);
optstr_param (options, "progressivediff", "Minimum inter-frame change vs. detail differences for detecting progressive video" ,"%f", buf, "unknowndiff", "inf");
tc_snprintf (buf, sizeof(buf), "%g", myf->progressiveChange);
optstr_param (options, "progressivechange", "Minimum temporal change needed for detecting progressive video" ,"%f", buf, "0", "inf");
tc_snprintf (buf, sizeof(buf), "%g", myf->changedIfMore);
optstr_param (options, "changedifmore", "Minimum temporal change for detecting truly changed frames" ,"%f", buf, "0", "65025");
tc_snprintf (buf, sizeof(buf), "%d", myf->forceTelecineDetect);
optstr_param (options, "forcetelecinedetect", "Detect telecine even on non-NTSC (29.97fps) video", "%d", buf, "0", "1");
tc_snprintf (buf, sizeof(buf), "%d", myf->verbose);
optstr_param (options, "verbose", "Output analysis for every frame", "%d", buf, "0", "2");
tc_snprintf (buf, sizeof(buf), "%d", myf->outDiff);
optstr_param (options, "outdiff", "Output internal debug frames as luminance of YUV video (see source)", "%d", buf, "0", "11");
}
/*
* filter frame routine
*/
/* need to process frames in-order */
if ((ptr->tag & TC_PRE_S_PROCESS) && (ptr->tag & TC_VIDEO)) {
uint8_t *tmp;
int i, j;
assert (ptr->free == 0 || ptr->free == 1);
assert (ptr->video_buf_Y[!ptr->free] == ptr->video_buf);
/* Convert / Copy to luminance only */
switch (myf->codec) {
case CODEC_RGB:
tcv_convert(myf->tcvhandle, ptr->video_buf, myf->lumIn,
myf->width, myf->height, IMG_RGB_DEFAULT, IMG_Y8);
break;
case CODEC_YUY2:
tcv_convert(myf->tcvhandle, ptr->video_buf, myf->lumIn,
myf->width, myf->height, IMG_YUY2, IMG_Y8);
break;
case CODEC_YUV:
tcv_convert(myf->tcvhandle, ptr->video_buf, myf->lumIn,
myf->width, myf->height, IMG_YUV_DEFAULT, IMG_Y8);
break;
case CODEC_YUV422:
tcv_convert(myf->tcvhandle, ptr->video_buf, myf->lumIn,
myf->width, myf->height, IMG_YUV422P, IMG_Y8);
break;
default:
assert (0);
}
/* Bob Top field */
bob_field (myf->lumIn, myf->lumInT, myf->width, myf->height/2-1);
/* Bob Bottom field */
ac_memcpy (myf->lumInB, myf->lumIn + myf->width, myf->width);
bob_field (myf->lumIn + myf->width, myf->lumInB + myf->width,
myf->width, myf->height/2-1);
/* last copied line is ignored, buffer is large enough */
if (myf->numFrames == 0)
myf->numFrames++;
else if (! (ptr->tag & TC_FRAME_IS_SKIPPED)) {
/* check_it */
check_interlace (myf, ptr->id);
}
/* only works with YUV data correctly */
switch (myf->outDiff) {
case 1: /* lumIn */
ac_memcpy (ptr->video_buf, myf->lumIn, myf->size);
break;
case 2: /* field shift */
for (i = 0 ; i < myf->height-2; i += 2)
for (j = 0; j < myf->width; j++) {
ptr->video_buf [myf->width*i+j] =
myf->lumIn [myf->width*i+j];
ptr->video_buf [myf->width*(i+1)+j] =
myf->lumPrev [myf->width*(i+1)+j];
}
break;
case 3: /* lumInT */
ac_memcpy (ptr->video_buf, myf->lumInT, myf->size);
break;
case 4: /* lumInB */
ac_memcpy (ptr->video_buf, myf->lumInB, myf->size);
break;
case 5: /* lumPrevT */
ac_memcpy (ptr->video_buf, myf->lumPrevT, myf->size);
break;
case 6: /* lumPrevB */
ac_memcpy (ptr->video_buf, myf->lumPrevB, myf->size);
break;
case 7: /* pixDiff */
pic_diff (myf->lumInT, myf->lumInB, ptr->video_buf, myf->size,4);
break;
case 8: /* pixShiftChangedT */
pic_diff (myf->lumInT, myf->lumPrevB, ptr->video_buf, myf->size,4);
break;
case 9: /* pixShiftChangedB */
pic_diff (myf->lumInB, myf->lumPrevT, ptr->video_buf, myf->size,4);
break;
case 10: /* pixLastT */
pic_diff (myf->lumInT, myf->lumPrevT, ptr->video_buf, myf->size,4);
break;
case 11: /* pixLastB */
pic_diff (myf->lumInB, myf->lumPrevB, ptr->video_buf, myf->size,4);
break;
}
/* The current frame gets the next previous frame :-P */
tmp = myf->lumPrev; myf->lumPrev = myf->lumIn; myf->lumIn = tmp;
tmp = myf->lumPrevT; myf->lumPrevT = myf->lumInT; myf->lumInT = tmp;
tmp = myf->lumPrevB; myf->lumPrevB = myf->lumInB; myf->lumInB = tmp;
}
return 0;
}
|