• Home
  • Raw
  • Download

Lines Matching refs:res0

1424   FieldAnalysis *res0, *res1;  in gst_field_analysis_process_buffer()  local
1441 res0 = &filter->frames[0].results; /* results for current frame */ in gst_field_analysis_process_buffer()
1453 res0->f = filter->same_frame (filter, &history); in gst_field_analysis_process_buffer()
1454 res0->t = res0->b = res0->t_b = res0->b_t = G_MAXFLOAT; in gst_field_analysis_process_buffer()
1456 GST_DEBUG_OBJECT (filter, "Scores: f %f, t , b , t_b , b_t ", res0->f); in gst_field_analysis_process_buffer()
1457 if (res0->f <= filter->frame_thresh) { in gst_field_analysis_process_buffer()
1458 res0->conclusion = FIELD_ANALYSIS_PROGRESSIVE; in gst_field_analysis_process_buffer()
1460 res0->conclusion = FIELD_ANALYSIS_INTERLACED; in gst_field_analysis_process_buffer()
1462 res0->holding = -1; /* needed fields unknown */ in gst_field_analysis_process_buffer()
1463 res0->drop = FALSE; in gst_field_analysis_process_buffer()
1476 res0->t = filter->same_field (filter, &history); in gst_field_analysis_process_buffer()
1479 res0->b = filter->same_field (filter, &history); in gst_field_analysis_process_buffer()
1485 res0->t_b = filter->same_frame (filter, &history); in gst_field_analysis_process_buffer()
1488 res0->b_t = filter->same_frame (filter, &history); in gst_field_analysis_process_buffer()
1491 "Scores: f %f, t %f, b %f, t_b %f, b_t %f", res0->f, in gst_field_analysis_process_buffer()
1492 res0->t, res0->b, res0->t_b, res0->b_t); in gst_field_analysis_process_buffer()
1496 if (res0->t_b <= filter->frame_thresh) in gst_field_analysis_process_buffer()
1498 if (res0->b_t <= filter->frame_thresh) in gst_field_analysis_process_buffer()
1502 if (res0->t <= filter->field_thresh || res0->t * (100 / 10) < res0->b) in gst_field_analysis_process_buffer()
1504 if (res0->b <= filter->field_thresh || res0->b * (100 / 10) < res0->t) in gst_field_analysis_process_buffer()
1515 res0->conclusion = FIELD_ANALYSIS_TELECINE_PROGRESSIVE; in gst_field_analysis_process_buffer()
1516 res0->holding = 1 + BOTH_FIELDS; in gst_field_analysis_process_buffer()
1524 res0->conclusion = FIELD_ANALYSIS_TELECINE_MIXED; in gst_field_analysis_process_buffer()
1526 res0->holding = 1 + !(telecine_matches & FIELD_ANALYSIS_BOTTOM_MATCH); in gst_field_analysis_process_buffer()
1536 if (res0->f <= filter->frame_thresh) { in gst_field_analysis_process_buffer()
1538 res0->conclusion = FIELD_ANALYSIS_TELECINE_PROGRESSIVE; in gst_field_analysis_process_buffer()
1539 res0->holding = 1 + BOTH_FIELDS; in gst_field_analysis_process_buffer()
1542 res0->conclusion = FIELD_ANALYSIS_TELECINE_MIXED; in gst_field_analysis_process_buffer()
1546 res0->holding = 0; in gst_field_analysis_process_buffer()
1549 res0->holding = in gst_field_analysis_process_buffer()
1572 } else if (res0->f > filter->frame_thresh && ((t in gst_field_analysis_process_buffer()
1580 res0->conclusion = FIELD_ANALYSIS_TELECINE_MIXED; in gst_field_analysis_process_buffer()
1582 res0->holding = 1 + (res1->holding == 1 + TOP_FIELD); in gst_field_analysis_process_buffer()
1610 } else if (res0->f <= filter->frame_thresh) { in gst_field_analysis_process_buffer()
1612 res0->conclusion = FIELD_ANALYSIS_PROGRESSIVE; in gst_field_analysis_process_buffer()
1613 res0->holding = 1 + BOTH_FIELDS; in gst_field_analysis_process_buffer()
1646 res0->conclusion = FIELD_ANALYSIS_TELECINE_MIXED; in gst_field_analysis_process_buffer()
1659 res0->holding = 1 + !(telecine_matches & FIELD_ANALYSIS_TOP_BOTTOM); in gst_field_analysis_process_buffer()
1681 res0->conclusion = FIELD_ANALYSIS_INTERLACED; in gst_field_analysis_process_buffer()
1682 res0->holding = 1 + BOTH_FIELDS; in gst_field_analysis_process_buffer()
1709 switch (res0->conclusion) { in gst_field_analysis_process_buffer()
1721 res0->holding == in gst_field_analysis_process_buffer()
1722 1 + BOTH_FIELDS ? "top and bottom" : res0->holding == in gst_field_analysis_process_buffer()