| OLD | NEW |
| 1 #!/usr/bin/env perl | 1 #!/usr/bin/env perl |
| 2 | 2 |
| 3 no strict 'refs'; | 3 no strict 'refs'; |
| 4 use warnings; | 4 use warnings; |
| 5 use Getopt::Long; | 5 use Getopt::Long; |
| 6 Getopt::Long::Configure("auto_help") if $Getopt::Long::VERSION > 2.32; | 6 Getopt::Long::Configure("auto_help") if $Getopt::Long::VERSION > 2.32; |
| 7 | 7 |
| 8 my %ALL_FUNCS = (); | 8 my %ALL_FUNCS = (); |
| 9 my @ALL_ARCHS; | 9 my @ALL_ARCHS; |
| 10 my @ALL_FORWARD_DECLS; | 10 my @ALL_FORWARD_DECLS; |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 EOF | 316 EOF |
| 317 | 317 |
| 318 set_function_pointers("c", @ALL_ARCHS); | 318 set_function_pointers("c", @ALL_ARCHS); |
| 319 | 319 |
| 320 print <<EOF; | 320 print <<EOF; |
| 321 #if HAVE_DSPR2 | 321 #if HAVE_DSPR2 |
| 322 void vpx_dsputil_static_init(); | 322 void vpx_dsputil_static_init(); |
| 323 #if CONFIG_VP8 | 323 #if CONFIG_VP8 |
| 324 void dsputil_static_init(); | 324 void dsputil_static_init(); |
| 325 #endif | 325 #endif |
| 326 #if CONFIG_VP9 | |
| 327 void vp9_dsputil_static_init(); | |
| 328 #endif | |
| 329 | 326 |
| 330 vpx_dsputil_static_init(); | 327 vpx_dsputil_static_init(); |
| 331 #if CONFIG_VP8 | 328 #if CONFIG_VP8 |
| 332 dsputil_static_init(); | 329 dsputil_static_init(); |
| 333 #endif | 330 #endif |
| 334 #if CONFIG_VP9 | |
| 335 vp9_dsputil_static_init(); | |
| 336 #endif | |
| 337 #endif | 331 #endif |
| 338 } | 332 } |
| 339 #endif | 333 #endif |
| 340 EOF | 334 EOF |
| 341 common_bottom; | 335 common_bottom; |
| 342 } | 336 } |
| 343 | 337 |
| 344 sub unoptimized() { | 338 sub unoptimized() { |
| 345 determine_indirection "c"; | 339 determine_indirection "c"; |
| 346 common_top; | 340 common_top; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 C header file on stdout. | 417 C header file on stdout. |
| 424 | 418 |
| 425 =head1 OPTIONS | 419 =head1 OPTIONS |
| 426 | 420 |
| 427 Options: | 421 Options: |
| 428 --arch=ARCH Architecture to generate defs for (required) | 422 --arch=ARCH Architecture to generate defs for (required) |
| 429 --disable-EXT Disable support for EXT extensions | 423 --disable-EXT Disable support for EXT extensions |
| 430 --require-EXT Require support for EXT extensions | 424 --require-EXT Require support for EXT extensions |
| 431 --sym=SYMBOL Unique symbol to use for RTCD initialization function | 425 --sym=SYMBOL Unique symbol to use for RTCD initialization function |
| 432 --config=FILE File with CONFIG_FOO=yes lines to parse | 426 --config=FILE File with CONFIG_FOO=yes lines to parse |
| OLD | NEW |