OLD | NEW |
1 vp9_common_forward_decls() { | 1 vp9_common_forward_decls() { |
2 cat <<EOF | 2 cat <<EOF |
3 /* | 3 /* |
4 * VP9 | 4 * VP9 |
5 */ | 5 */ |
6 | 6 |
7 #include "vpx/vpx_integer.h" | 7 #include "vpx/vpx_integer.h" |
8 #include "vp9/common/vp9_enums.h" | 8 #include "vp9/common/vp9_enums.h" |
9 | 9 |
10 struct loop_filter_info; | 10 struct loop_filter_info; |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 | 565 |
566 prototype void vp9_short_fdct4x4 "int16_t *InputData, int16_t *OutputData, int p
itch" | 566 prototype void vp9_short_fdct4x4 "int16_t *InputData, int16_t *OutputData, int p
itch" |
567 specialize vp9_short_fdct4x4 sse2 | 567 specialize vp9_short_fdct4x4 sse2 |
568 | 568 |
569 prototype void vp9_short_fdct8x4 "int16_t *InputData, int16_t *OutputData, int p
itch" | 569 prototype void vp9_short_fdct8x4 "int16_t *InputData, int16_t *OutputData, int p
itch" |
570 specialize vp9_short_fdct8x4 sse2 | 570 specialize vp9_short_fdct8x4 sse2 |
571 | 571 |
572 prototype void vp9_short_fdct32x32 "int16_t *InputData, int16_t *OutputData, int
pitch" | 572 prototype void vp9_short_fdct32x32 "int16_t *InputData, int16_t *OutputData, int
pitch" |
573 specialize vp9_short_fdct32x32 | 573 specialize vp9_short_fdct32x32 |
574 | 574 |
| 575 prototype void vp9_short_fdct32x32_rd "int16_t *InputData, int16_t *OutputData,
int pitch" |
| 576 specialize vp9_short_fdct32x32_rd |
| 577 |
575 prototype void vp9_short_fdct16x16 "int16_t *InputData, int16_t *OutputData, int
pitch" | 578 prototype void vp9_short_fdct16x16 "int16_t *InputData, int16_t *OutputData, int
pitch" |
576 specialize vp9_short_fdct16x16 sse2 | 579 specialize vp9_short_fdct16x16 sse2 |
577 | 580 |
578 prototype void vp9_short_walsh4x4 "int16_t *InputData, int16_t *OutputData, int
pitch" | 581 prototype void vp9_short_walsh4x4 "int16_t *InputData, int16_t *OutputData, int
pitch" |
579 specialize vp9_short_walsh4x4 | 582 specialize vp9_short_walsh4x4 |
580 | 583 |
581 prototype void vp9_short_walsh8x4 "int16_t *InputData, int16_t *OutputData, int
pitch" | 584 prototype void vp9_short_walsh8x4 "int16_t *InputData, int16_t *OutputData, int
pitch" |
582 specialize vp9_short_walsh8x4 | 585 specialize vp9_short_walsh8x4 |
583 | 586 |
584 # | 587 # |
(...skipping 14 matching lines...) Expand all Loading... |
599 | 602 |
600 prototype void vp9_temporal_filter_apply "uint8_t *frame1, unsigned int stride,
uint8_t *frame2, unsigned int block_size, int strength, int filter_weight, unsig
ned int *accumulator, uint16_t *count" | 603 prototype void vp9_temporal_filter_apply "uint8_t *frame1, unsigned int stride,
uint8_t *frame2, unsigned int block_size, int strength, int filter_weight, unsig
ned int *accumulator, uint16_t *count" |
601 specialize vp9_temporal_filter_apply sse2 | 604 specialize vp9_temporal_filter_apply sse2 |
602 | 605 |
603 prototype void vp9_yv12_copy_partial_frame "struct yv12_buffer_config *src_ybc,
struct yv12_buffer_config *dst_ybc, int fraction" | 606 prototype void vp9_yv12_copy_partial_frame "struct yv12_buffer_config *src_ybc,
struct yv12_buffer_config *dst_ybc, int fraction" |
604 specialize vp9_yv12_copy_partial_frame | 607 specialize vp9_yv12_copy_partial_frame |
605 | 608 |
606 | 609 |
607 fi | 610 fi |
608 # end encoder functions | 611 # end encoder functions |
OLD | NEW |