File: deinterlace_time.c

package info (click to toggle)
gavl 1.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 14,912 kB
  • sloc: ansic: 437,319; sh: 10,487; makefile: 238
file content (152 lines) | stat: -rw-r--r-- 4,599 bytes parent folder | download | duplicates (3)
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
/*****************************************************************
 * gavl - a general purpose audio/video processing library
 *
 * Copyright (c) 2001 - 2011 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 <sys/time.h>
#include <stdlib.h>
#include <gavl.h>
//#include "colorspace.h" // Common routines
#include <stdio.h>
#include <string.h>

#include <accel.h>
#include "timeutils.h"

#define NUM_CONVERSIONS 20

//#define SCALE_MODE GAVL_SCALE_SINC_LANCZOS
#define DEINTERLACE_MODE GAVL_DEINTERLACE_BLEND

#define WIDTH  720
#define HEIGHT 568

int main(int argc, char ** argv)
  {
  uint64_t t;
  
  int i, j, imax;
  gavl_video_deinterlacer_t *deinterlacer;
    
  gavl_video_format_t format;
  gavl_video_frame_t * frame, * frame_1;

  gavl_video_options_t * opt;
    
  gavl_pixelformat_t csp;

  imax = gavl_num_pixelformats();
  deinterlacer = gavl_video_deinterlacer_create();

  opt = gavl_video_deinterlacer_get_options(deinterlacer);

  memset(&format, 0, sizeof(format));
  
  for(i = 0; i < imax; i++)
    {
    csp = gavl_get_pixelformat(i);

    fprintf(stderr, "Pixelformat: %s imax: %d\n", gavl_pixelformat_to_string(csp), imax);
    
    format.image_width  = WIDTH;
    format.image_height = HEIGHT;

    format.frame_width  = WIDTH;
    format.frame_height = HEIGHT;

    format.pixel_width  = 1;
    format.pixel_height = 1;
    
    format.pixelformat = csp;

    frame   = gavl_video_frame_create(&format);
    frame_1 = gavl_video_frame_create(&format);
    
    gavl_video_frame_clear(frame_1, &format);

    /* Now, do the conversions */

    fprintf(stderr, "C-Version:\n");
    
    gavl_video_options_set_defaults(opt);
    gavl_video_options_set_deinterlace_mode(opt, DEINTERLACE_MODE);
    gavl_video_options_set_quality(opt, 3);
    gavl_video_options_set_accel_flags(opt, GAVL_ACCEL_C);

    if(gavl_video_deinterlacer_init(deinterlacer,
                              &format) < 0)  // int output_height
      {
      fprintf(stderr, "No scaling routine defined\n");
      }
    else
      {
      timer_init();
      for(j = 0; j < NUM_CONVERSIONS; j++)
        {
        gavl_video_deinterlacer_deinterlace(deinterlacer, frame, frame_1);
        }
      t = timer_stop();
      fprintf(stderr, "Made %d conversions, Time: %e (%e per conversion)\n",
              NUM_CONVERSIONS, (double)t, (double)t/NUM_CONVERSIONS);
      }
#if 1
    fprintf(stderr, "MMX-Version:\n");
    gavl_video_options_set_defaults(opt);
    gavl_video_options_set_deinterlace_mode(opt, DEINTERLACE_MODE);
    gavl_video_options_set_quality(opt, 2);
    gavl_video_options_set_accel_flags(opt, GAVL_ACCEL_MMX);
    
    gavl_video_deinterlacer_init(deinterlacer, &format);

    timer_init();
    for(j = 0; j < NUM_CONVERSIONS; j++)
      {
      gavl_video_deinterlacer_deinterlace(deinterlacer, frame, frame_1);
      }
    t = timer_stop();
    fprintf(stderr, "Made %d conversions, Time: %e (%e per conversion)\n",
            NUM_CONVERSIONS, (double)t, (double)t/NUM_CONVERSIONS);
    
#endif

#if 1
    fprintf(stderr, "MMXEXT-Version:\n");
    gavl_video_options_set_defaults(opt);
    gavl_video_options_set_deinterlace_mode(opt, DEINTERLACE_MODE);
    gavl_video_options_set_quality(opt, 2);
    gavl_video_options_set_accel_flags(opt, GAVL_ACCEL_MMXEXT);
    
    gavl_video_deinterlacer_init(deinterlacer, &format);

    timer_init();
    for(j = 0; j < NUM_CONVERSIONS; j++)
      {
      gavl_video_deinterlacer_deinterlace(deinterlacer, frame, frame_1);
      }
    t = timer_stop();
    fprintf(stderr, "Made %d conversions, Time: %e (%e per conversion)\n",
            NUM_CONVERSIONS, (double)t, (double)t/NUM_CONVERSIONS);
    
#endif

    gavl_video_frame_destroy(frame);
    gavl_video_frame_destroy(frame_1);
    }
  gavl_video_deinterlacer_destroy(deinterlacer);
  return 0;
  }