comparison ivi_common.c @ 11778:31dae9841fe1 libavcodec

Add the forgotten ff_ prefix to the shareable scan patterns.
author maxim
date Wed, 26 May 2010 20:22:29 +0000
parents 4a178e0051d6
children 25ce7aff1e1d
comparison
equal deleted inserted replaced
11777:82a880c86afd 11778:31dae9841fe1
643 643
644 644
645 /** 645 /**
646 * Scan patterns shared between indeo4 and indeo5 646 * Scan patterns shared between indeo4 and indeo5
647 */ 647 */
648 const uint8_t ivi_vertical_scan_8x8[64] = { 648 const uint8_t ff_ivi_vertical_scan_8x8[64] = {
649 0, 8, 16, 24, 32, 40, 48, 56, 649 0, 8, 16, 24, 32, 40, 48, 56,
650 1, 9, 17, 25, 33, 41, 49, 57, 650 1, 9, 17, 25, 33, 41, 49, 57,
651 2, 10, 18, 26, 34, 42, 50, 58, 651 2, 10, 18, 26, 34, 42, 50, 58,
652 3, 11, 19, 27, 35, 43, 51, 59, 652 3, 11, 19, 27, 35, 43, 51, 59,
653 4, 12, 20, 28, 36, 44, 52, 60, 653 4, 12, 20, 28, 36, 44, 52, 60,
654 5, 13, 21, 29, 37, 45, 53, 61, 654 5, 13, 21, 29, 37, 45, 53, 61,
655 6, 14, 22, 30, 38, 46, 54, 62, 655 6, 14, 22, 30, 38, 46, 54, 62,
656 7, 15, 23, 31, 39, 47, 55, 63 656 7, 15, 23, 31, 39, 47, 55, 63
657 }; 657 };
658 658
659 const uint8_t ivi_horizontal_scan_8x8[64] = { 659 const uint8_t ff_ivi_horizontal_scan_8x8[64] = {
660 0, 1, 2, 3, 4, 5, 6, 7, 660 0, 1, 2, 3, 4, 5, 6, 7,
661 8, 9, 10, 11, 12, 13, 14, 15, 661 8, 9, 10, 11, 12, 13, 14, 15,
662 16, 17, 18, 19, 20, 21, 22, 23, 662 16, 17, 18, 19, 20, 21, 22, 23,
663 24, 25, 26, 27, 28, 29, 30, 31, 663 24, 25, 26, 27, 28, 29, 30, 31,
664 32, 33, 34, 35, 36, 37, 38, 39, 664 32, 33, 34, 35, 36, 37, 38, 39,
665 40, 41, 42, 43, 44, 45, 46, 47, 665 40, 41, 42, 43, 44, 45, 46, 47,
666 48, 49, 50, 51, 52, 53, 54, 55, 666 48, 49, 50, 51, 52, 53, 54, 55,
667 56, 57, 58, 59, 60, 61, 62, 63 667 56, 57, 58, 59, 60, 61, 62, 63
668 }; 668 };
669 669
670 const uint8_t ivi_direct_scan_4x4[16] = { 670 const uint8_t ff_ivi_direct_scan_4x4[16] = {
671 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15 671 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15
672 }; 672 };
673 673
674 674
675 /** 675 /**