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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989
|
2009-05-22 Wolfgang Hofer <hof@gimp.org>
- autgen.sh script chcks for required automake now accepts automake-1.11
(applied patch from David Evans #583500)
- added some missing files to POTFILES.in (fixes #583497)
gap/gap_audio_extract.c
gap/gap_morph_tween_dialog.c
gap/gap_wr_resynth.c
vid_enc_rawframes/gap_enc_rawframes_main.c
- configure now is using a LINGUAS file
(applied patch from Claude Paroz #583498)
* autogen.sh
* po/POTFILES.in
* po/LINGUAS # new file
* configure.in
2009-05-19 Wolfgang Hofer <hof@gimp.org>
- configure.in updated Version to 2.6.0.
* configure.in
* README
* NEWS
2009-05-17 Wolfgang Hofer <hof@gimp.org>
- iconify storyboard dialog window when calling video encoder from storyboard menu
and deiconify when the encoder call returns.
On my gnome windowmanager the encoder dialog always opened behind the storyboard dialog window
but the storyboard dialog is not refreshed due to the synchron call of the encoder plug-in.
the iconify /deiconify is a practicable workaround to avoid this annoying situation.
- Master Video encoder moved from "Video/Encode" to "Video" Menu
menu name "Master Videoencoder..." now has ending ... to inidcate that ist opens a dialog.
note that the other old video encoders are not built by default
therefore the submenu is not required for normal gimp-gap users.
* gap/gap_story_dialog.c
* vid_common/gap_cme_main.c
2009-05-16 Wolfgang Hofer <hof@gimp.org>
- configure now checks for detection of FAAD2 or FAAD library
that is also sufficient to build with ffmpeg 0.5
* configure.in
2009-05-12 Wolfgang Hofer <hof@gimp.org>
- applied patch from David Evans #582241 to make sure to include
ffmpeg header files of the the local embedded copy of ffmpeg
even if another copy of ffmpeg is installed in system include paths.
- fixed confusing configure warnings (reported in #582216)
unrecognized options: --disable-audio-support, --enable-gdkpixbuf-pview
- use autool typical AC_CHECK_PROG to check gmake program
* configure.in
* libgapvidapi/Makefile.am
2009-05-10 Wolfgang Hofer <hof@gimp.org>
configure and build issues to fix Mac specific bugs reported by David Evans.
- applied patch from David Evans for properly detection of FAAD2. (provided at Bug #581807)
- use gmake via variable $EXGMAKE for build external libs if available. if gmake not available
$EXGMAKE points to make program. (shall fix #581805)
- pass configue options
--prefix=
--with-ff-extra-cflags
--with-ff-extra-ldflags
to ffmpeg configure. (shall fix #581809)
* configure.in
* extern_libs/Makefile.am
2009-04-28 Wolfgang Hofer <hof@gimp.org>
- fixed Grab Path Points default settings bug #580416
* gap/gap_mov_dialog.c
2009-04-24 Wolfgang Hofer <hof@gimp.org>
- ffmpeg based video encoder colormodel conversion to YUV420P is only done
for codecs that require this as input colormodel.
For codecs that do not want YUV420P
use ffmpeg's img_convert procedure to convert from rgb.
(old implementation always used YUV420P as input for the conversion
which may results in loss of quality)
- ffmpeg based video encoder now terminates with error message
in case the auido input is not supported by the selected audio codec.
(the old implementation crashed in such cases)
this typically occurs for non standard samplerates
therfore the error message includes the hint to try
48 kHz, 44.1 kHz or 32 KHz
- master video encoder combo box for selection of commonly used samplerate
is now updated automatically when a commonly used samplerate is entered
in the corresponding spinbutton widget.
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* vid_common/gap_cme_callbacks.c
* vid_common/gap_cme_gui.c
2009-04-14 Wolfgang Hofer <hof@gimp.org>
- fixed audio extract problem that delivered unusable results
for videos with 8bit audiotracks,
(as found in AVI files written by OLYMPUS digital cameras)
the ffmpeg based videoapi now automatically converts to signed 16 bit format,
that is required in subsequent audio processing in GIMP-GAP.
* libgapvidapi/gap_vid_api_ffmpeg.c
2009-04-13 Wolfgang Hofer <hof@gimp.org>
- fixed audio handling in the AVI1 encoder
playback of resulting avi files was tested with mplayer (linux and Windosws XP)
and with MS mediaplayer (Windows XP)
- mp3rate must not be 0
(with value 0 playback attempts of the resulting avi file
causes freeze of mplayer)
- changed internal handling of audio chunk size.
AUDIO_CHUNK_ADVANCE_FRAMES defines the duration of one audio chunk (unit frames)
with the hardcoded deaults, an audio chunk is written every 16 video frames
- fixes in avilib.c:
a) idx1 chunks offesets are now written relative to the start of the movi chunk data
(old implementation used global offsets in the file that was not correct)
b) fixs in write/update of the AVI audio stream header related to pcm audiodata
(samplesize, blockAlign and averageBytesPerSec.
incorrect values resulted in video playback that is NOT synchron to the audio.
c) use "00dc" for compressed video chunks (old avilib always used "00db" that
should be used for uncompressed video according to AVI specification)
d) allow samplesize < 4 (that is required for mono samples 8 and 16 bit)
* vid_enc_avi/avilib.c [.h]
* vid_enc_avi/gap_enc_main_avi.c
* README
2009-04-06 Wolfgang Hofer <hof@gimp.org>
- applied fixes for avilib.c (as found at http://svn.xiph.org/trunk/theora-tools/vp32theora/avilib.c)
must use O_BINARY flag on win32 platform, this fixes the bug that did write
corrupt AVI files on Win32 Platform (relevant for bug #326201)
- replace fopen by g_fopen
* vid_enc_avi/avilib.c
* libgapvidutil/gap_gve_misc_util.c
2009-04-04 Wolfgang Hofer <hof@gimp.org>
- replaced tab characters by blanks
* gap/gap_arr_dialog.c
* gap/gap_arr_dialog.h
* gap/gap_audio_extract.c
* gap/gap_audio_wav.c
* gap/gap_audio_wav.h
* gap/gap_base_ops.c
* gap/gap_bluebox.c
* gap/gap_bluebox_main.c
* gap/gap_dbbrowser_utils.c
* gap/gap_dbbrowser_utils.h
* gap/gap_decode_mplayer.c
* gap/gap_decode_mplayer_main.c
* gap/gap_decode_xanim.c
* gap/gap_filter_codegen.c
* gap/gap_filter_foreach.c
* gap/gap_filter_iterators.c
* gap/gap_filter_main.c
* gap/gap_filter_pdb.c
* gap/gap_fmac_main.c
* gap/gap_frontends_main.c
* gap/gap_image.c
* gap/gap-intl.h
* gap/gap_layer_copy.c
* gap/gap_layer_copy.h
* gap/gap_lib.c
* gap/gap_lock.c
* gap/gap_main.c
* gap/gap_match.c
* gap/gap_morph_dialog.c
* gap/gap_morph_exec.c
* gap/gap_morph_exec.h
* gap/gap_morph_main.c
* gap/gap_morph_main.h
* gap/gap_morph_tween_dialog.c
* gap/gap_mov_dialog.c
* gap/gap_mov_dialog.h
* gap/gap_mov_exec.c
* gap/gap_mov_render.c
* gap/gap_mpege.c
* gap/gap_name2layer_main.c
* gap/gap_navi_activtable.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_base.c
* gap/gap_onion_dialog.c
* gap/gap_onion_main.c
* gap/gap_pdb_calls.c
* gap/gap_pdb_calls.h
* gap/gap_player_dialog.h
* gap/gap_player_main.c
* gap/gap_pview_da.c
* gap/gap_range_ops.c
* gap/gap_range_ops.h
* gap/gap_stock.c
* gap/gap_story_dialog.h
* gap/gap_story_main.c
* gap/gap_story_render_audio.c
* gap/gap_story_render_audio.h
* gap/gap_story_render_processor.h
* gap/gap_story_sox.c
* gap/gap_story_vthumb.c
* gap/gap_thumbnail.c
* gap/gap_thumbnail.h
* gap/gap_vex_dialog.c
* gap/gap_vex_dialog.h
* gap/gap_vex_exec.c
* gap/gap_vex_main.c
* gap/gap_video_index_creator.c
* gap/gap_vin.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
* gap/gap_wr_opacity.c
* gap/gap_wr_trans.c
* gap/gimplastvaldesc.c
* libgapbase/gap_base.c
* libgapbase/gap_base.h
* libgapbase/gap_file_util.c
* libgapbase/gap_file_util.h
* libgapbase/gap_val_file.c
* libgapbase/gap_val_file.h
* libgapvidapi/gap_vid_api.c
* libgapvidapi/gap_vid_api_gimp.c
* libgapvidapi/gap_vid_api.h
* libgapvidapi/gap_vid_api-intl.h
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_mpeg3toc.c
* libgapvidapi/gap_vid_api_util.c
* libgapvidapi/gap_vid_api_vidindex.c
* libgapvidutil/gap_gve_jpeg.c
* libgapvidutil/gap_gve_jpeg.h
* libgapvidutil/gap_gve_misc_util.c
* libgapvidutil/gap_gve_png.c
* libgapvidutil/gap_gve_png.h
* libgapvidutil/gap_gve_raw.c
* libgapvidutil/gap_gve_sox.c
* libgapvidutil/gap_gve_xvid.c
* vid_common/gap_cme_callbacks.c
* vid_common/gap_cme_gui.c
* vid_common/gap_cme_gui.h
* vid_common/gap_cme_main.c
* vid_enc_avi/gap_enc_avi_gui.c
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.h
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* vid_enc_rawframes/gap_enc_rawframes_main.c
* vid_enc_single/gap_enc_singleframes_main.c
2009-04-04 Wolfgang Hofer <hof@gimp.org>
- changes to the configure script for build in MinGW Environment
for Win32 systems.
- fixed bug in the configure --disable-libmpeg3
changes for build on MinGW environment on Win32 systems
- replaced usage of sleep (that was not available on MinGW) by usleep
- fixed handling of gint64 datatype in gap basic key/value file in MinGW environment.
gint64 bigval = 1778;
printf ("%lld", bigval);
output on LINUX: 1778
output on Win32: 1778(null)
the fix uses g_strdup_printf which handles %lld correct in both environments.
(relevant for persiting ffmpeg based video analyse and parameter files)
* configure.in
* vid_common/gap_cme_main.c
* libgapbase/gap_val_file.c
2009-03-22 Wolfgang Hofer <hof@gimp.org>
- updated news.
* NEWS
* docs/howto/txt/HOWTO-do-lossless-MPEG-cut.txt
2009-03-15 Wolfgang Hofer <hof@gimp.org>
- update to ffmpeg release ffmpeg-0.5
now a stable ffmpeg release 0.5 is available
i decided to update gimp-gap after repeating read and write tests
that showed same behaviour as the ffmpeg snapshot from Jan 2009.
ffmpeg-0.5 has deprecated some procedures/attributes that were used
in GIMP-GAP.
therefore i replace following deprecated FFMPEG API usages:
- av_alloc_format_context procedure is deprecated, using avformat_alloc_context() instead.
- use procedure av_metadata_set for setting author, comment, copyright and title
instead of filling the deprecated attributes in the AVFormatContext structure
- changed the bitrate_tol value in the MPEG1 VCD preset from 0 to 1150 kbit
(because ffpeg-0.5 crashes with message
"bitrate tolerance too small for bitrate"
when value 0 is used for encoding)
- fixed bug when saving ffmpeg encoder presets to file
the value showed in the dialog did not always match the saved value in the file.
(only in case when parameters were entered via keyboard)
==> must connect the callbacks for spinbutton widgets on signal "value_changed"
(the signal "changed" works only in case the value was changed via mouse clicks
on the spinbutton)
- configure.in added checks for both older ffmpeg versions
(to force update of those derived directory after svn update)
- fixed bug in master video encoder. audiotime and audio labels are now
updated in the dialog widgets when audiofile in WAV format is entered
in the Audio Options.
(procedure p_update_aud_info)
* configure.in
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c:
* extern_libs/README_extern_libs
* extern_libs/ffmpeg.tar.gz
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_par.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c
* vid_common/gap_cme_gui.c
2009-03-12 Wolfgang Hofer <hof@gimp.org>
- attempt to fix #558730 (Mac OS X specific issue ?)
dont know why the wrapper to set layer opacity fails in the query procedure on Mac OS X
the reported Gimp assertion message
(gap_wr_opacity:1754): LibGimp-CRITICAL **: gimp_install_procedure: assertion
`(n_return_vals == 0 && return_vals == NULL) || (n_return_vals > 0 &&
return_vals != NULL)' failed
and
GIMP-Error: Plug-in "gap_wr_opacity"
(/opt/local/lib/gimp/2.0/plug-ins/gap_wr_opacity)
attempted to register the menu item "<Image>/Video/Layer/" for the procedure
"plug-in-wr-set-opacity".
It has however not installed that procedure. This is not allowed.
both do NOT occure in my Linux development environment.
Therefore the following changes are are just a guess without guarantee for succes..
- register with a return value
(now returns id of the handled drawable as most plug-ins do)
- register with new-stlyed name (old name had underscore characters)
#define PLUG_IN_NAME "plug-in-wr-set-opacity"
- register in the new submenu "<Image>/Video/Layer/Attributes"
(all other wrappers that seems to work also
do register in submenus)
- the default options for the external audio resample tool sox
have changed because new sox version(s) do no longer
support -w to specify the wav fileformat
and the resample option is marked as deprecated.
note that the options for the external sound converter utilitiy
can be set in the master video encoder dialog
and via gimprc parameter (video_encode_com_util_sox_options )
so it is still possible to use older sox version(s).
value for older sox versions was
"$IN" -w -r $RATE "$OUT" resample
new default value for sox v14.1.0v
"$IN" -t wav $RATE "$OUT" " rate -h $RATE
- optimized videoapi procedure GVA_fetch_frame_to_buffer
seek to very near framenumber target now is done as loop
of sequential read that is faster than seek in this special case.
(for better playback performance of video clips with stepsize != 1)
* libgapvidapi/gap_vid_api.c
* gap/gap_story_render_audio.c
* gap/gap_story_sox.c [.h]
* libwavplayclient/audioconvert_to_wav.sh
* gap/gap_wr_opacity.c
* gap/gap_wr_resynth.c
2009-03-10 Wolfgang Hofer <hof@gimp.org>
- added checks for nasm assembler in the configure.in script
and disable build with libmpeg3 in case nasm is not installed
(relevant for #144650)
* configure.in
2009-03-09 Wolfgang Hofer <hof@gimp.org>
- check in of the missing changes.
(The commit for Rev 818 2009.03.08 was not performed on toplevel directory,
therefore most of the changes were not transfered to SVN.
* gap/Makefile.am
* gap/gap_arr_dialog.c
* gap/gap_audio_wav.c
* gap/gap_decode_mplayer.c
* gap/gap_decode_xanim.c
* gap/gap_file_util.c [.h] # are now empty
* gap/gap_fmac_context.c
* gap/gap_frame_fetcher.c
* gap/gap_lib.c [.h]
* gap/gap_libgimpgap.h
* gap/gap_lock.c
* gap/gap_morph_exec.c
* gap/gap_mov_dialog.c
* gap/gap_mov_exec.c
* gap/gap_mpege.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_base.c
* gap/gap_player_cache.c
* gap/gap_player_dialog.c
* gap/gap_split.c
* gap/gap_story_dialog.c
* gap/gap_story_file.c
* gap/gap_story_properties.c
* gap/gap_story_render_audio.c
* gap/gap_story_vthumb.c
* gap/gap_video_index_creator.c
* gap/gap_wr_color_curve.c
* gap/gimplastvaldesc.c
* libgapvidapi/gap_vid_api.c [.h]
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_util.c
* libgapvidapi/vid_api_vidindex.c
* libgapvidutil/gap_gve_misc_util.c [.h]
* libgapvidutil/gap_gve_png.c
* vid_common/gap_cme_gui.c
* vid_common/gap_cme_main.c
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* docs/reference/txt/gap_gimprc_params.txt
2009-03-08 Wolfgang Hofer <hof@gimp.org>
- support limit for the number of open videohandles while storybboard processing.
to avoid running out of memory and resources in case the storyboard has references to
many different videofiles.
the limit can be configured via the newly added gimprc parameter:
(video-storyboard-max-open-videofiles 12)
- fixed a bug in the total_frames detection via libavformat based native seek
that delivered one frame too much on most videos.
(procedure: p_detect_total_frames_via_native_seek)
- videoindex based seek sometimes used slow sequential search (in rare cases)
even if a complete video index was available.
tests showed that the wanted frame could not be identified due to wrong checksum.
This can occure if there are delta references to a frame in the video stream
that is before the seek position.
Note that the checksum is built based on the already decoded frame that may be
incomplete in this case.
==> the applied fix tolerates a checksum missmatch if
both length and timecode can be used to identify the target frame.
if the target frame can not be identified that way, the next attempt
starts from a smaller seek position and increases the number of sync read operations
this shall lead to clean decoding and correct checksum calculation of the wanted frame
- fixed libavformat video index based seek in case the video index is NOT complete.
(may occure if video index creation was cancelled by the user)
now 1st try native seek in case where seek to the target frame number would require the missing
part of the videoindex.
fallback to very slow sequential read is only done if native seek is not possible either.
- video index creation tool now deletes incomplete video indexes when created
in SMART_MODE for check purpose only.
- fixed missing initialisation of total_frames. (procedure GVA_new_videoindex)
- master video encoder now checks if encoder process is still alive
and reports termination of the encoder process in the progress bar message.
"ENCODER process terminated"
(this feature is only available on UNIX platforms)
- cleanup for old communication files used in the master video encoder
in case encoding crashed or was killed in a previous session.
(gap_gve_misc_util.c. p_gap_delete_old_communication_files)
- refactoring removed some code duplicates,
and moved central procedures for common use in all gap modules
from gap_lib.c to new module gap_base.c
NEW name OLD name
==========================================================================================
gap_base_shorten_filename gap_lib_shorten_filename
gap_base_strdup_add_underscore gap_lib_strdup_add_underscore
gap_base_strdup_del_underscore gap_lib_strdup_del_underscore
gap_base_dup_filename_and_replace_extension_by_underscore gap_lib_dup_filename_and_replace_extension_by_underscore
gap_base_fprintf_gdouble gap_lib_fprintf_gdouble
gap_base_sscan_flt_numbers gap_lib_sscan_flt_numbers
gap_base_check_tooltips gap_lib_check_tooltips
gap_base_get_gimprc_int_value gap_lib_get_gimprc_int_value
gap_base_get_gimprc_gboolean_value gap_lib_get_gimprc_gboolean_value
gap_base_getpid gap_lib_getpid
gap_base_is_pid_alive gap_lib_is_pid_alive
gap_file_get_mtime
* libgapbase/Makefile.am
* libgapbase/gap_libgapbase.h # NEW file
* libgapbase/gap_base.c [.h] # NEW files
* libgapbase/gap_file_util.c [.h] # NEW files (moved from gap directory)
* gap/Makefile.am
* gap/gap_arr_dialog.c
* gap/gap_audio_wav.c
* gap/gap_decode_mplayer.c
* gap/gap_decode_xanim.c
* gap/gap_file_util.c [.h] # are now empty
* gap/gap_fmac_context.c
* gap/gap_frame_fetcher.c
* gap/gap_lib.c [.h]
* gap/gap_libgimpgap.h
* gap/gap_lock.c
* gap/gap_morph_exec.c
* gap/gap_mov_dialog.c
* gap/gap_mov_exec.c
* gap/gap_mpege.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_base.c
* gap/gap_player_cache.c
* gap/gap_player_dialog.c
* gap/gap_split.c
* gap/gap_story_dialog.c
* gap/gap_story_file.c
* gap/gap_story_properties.c
* gap/gap_story_render_audio.c
* gap/gap_story_render_processor.c
* gap/gap_story_vthumb.c
* gap/gap_video_index_creator.c
* gap/gap_wr_color_curve.c
* gap/gimplastvaldesc.c
* libgapvidapi/gap_vid_api.c [.h]
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_util.c
* libgapvidapi/vid_api_vidindex.c
* libgapvidutil/gap_gve_misc_util.c [.h]
* libgapvidutil/gap_gve_png.c
* vid_common/gap_cme_gui.c
* vid_common/gap_cme_main.c
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* docs/reference/txt/gap_gimprc_params.txt
2009-02-25 Wolfgang Hofer <hof@gimp.org>
- fix bug in Storyboard dialog: when clip is added via player
there was no undo possible for that step.
- fixed menu text #538419
- wrapper for 3rd party plug-in resynthesizer
now uses gap_pdb_procedure_name_available for the check.
(this avoids the gimp-2.6 typical warning pop up that complains
about calling gimp_procedural_db_proc_info on non-intalled plug-ins)
* gap/gap_story_dialog.c
* gap/gap_wr_resynth.c
2009-02-23 Wolfgang Hofer <hof@gimp.org>
- Singleframes and rawframes encoder have no parameter dialog.
the old implementation of a dummy PopUp dialog is no longer used.
Those encoders now and deliver an empty string "\0"
as result when the master video encoder queries for GAP_VENC_PAR_GUI_PROC
this has the effect that the Parameter button in the maste video encoder
is disabled (greyed out) instead of presenting the dummy pop up.
* vid_enc_rawframes/gap_enc_rawframes_main.c
* vid_enc_single/gap_enc_singleframes_main.c
2009-02-21 Wolfgang Hofer <hof@gimp.org>
- removed workaround (and bug) that restricted storyboard invokation to numbered frame image.
now the storyboard can be opened from any image via video->storyboard menu.
- fixes to handle build options --disable-videoapi-support --disable-libavformat
(relevant for #571444)
- fixed Makefiles where the order of libraries matters
- disable build of videoextract and video index creation programs in case videoapi disabled
$(GAP_VIDEO_EXTRACT)
$(GAP_VIDEO_INDEX)
- added #ifdef GAP_ENABLE_VIDEOAPI_SUPPORT to sources
(in modules that are still useable with limited features when videoapi is disabled)
- build video encoder even when videoapi disabled.
if libavformat is disabled just build without ffmpeg based encoder.
video encoders now are usable without the videoapi
(with the restriction that storyboard based input
is limited and cliptype Movie is not supported)
successful tested build variants on Open Suse 11.1 Linux Operatingsystem when configured with
--disable-libavformat
--disable-libmpeg3
--disable-videoapi-support
--disable-videoapi-support --disable-libavformat
- fixed bug when seek near to end of last frame in ffmpeg video indexed based seek.
seek to positions near to the last frame and subsequent frame reads
sometimes failed.
the fix now checks or success on each frame read in the sync loop
and now makes new attempts with the previous index(es) when frame read operations
fail.
With this new method fetching of the last few frames now seems to work properly.
- video index creator
p_check_videofile procedure now checks the filename for known video extensions (.avi, .mpeg ...)
before attempt to open as video.
this fixes annoying gimp_file_load pop up that complains
this popup message is triggered by the check_sig call of the gap_vid_api_gimp.c
that allows access to anim frames via the videoapi.
But it does not make sense to detect images as video here, where
video index creation makes no sense and therefore is not supported.
* configure.in
* Makefile.am
* gap/Makefile.am
* gap/gap_arr_dialog.c [.h]
* gap/gap_audio_extract.c [.h]
* gap/gap_frame_fetcher.c [.h]
* gap/gap_player_dialog.c
* gap/gap_story_dialog.c
* gap/gap_story_render_audio.c [.h]
* gap/gap_story_render_lossless.c
* gap/gap_story_render_processor.c [.h]
* gap/gap_story_render_types.h
* gap/gap_video_index_creator.c
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidutil/gap_gve_story.h
* vid_common/gap_cme_gui.c
* vid_enc_rawframes/gap_enc_rawframes_main.c
* vid_enc_single/gap_enc_singleframes_main.c
2009-02-14 Wolfgang Hofer <hof@gimp.org>
- fixed Bug #571428 'frames to image' now transfer DPI settings to new image.
GIMP-GAP now generally transfers DPI resolution settings whenever new images
are created based on an already existing image.
- fixed aspect detection in videoapi for ffmpeg based decoder
Note:
libmpeg3 based encoder still did not detect aspect values
in my tests, this bug of old libmpeg3-1.5.4 version
is not yet fixed with libmpeg3-1.8
- fixed Bug #499553 plug-in-wr-color-levels does not work in NON-INTERACTIVE runmode
(the parameters were fetched from wrong parameter indexes
similar bug fixed for plug_in_wr_set_opacity)
- fixed #516819 Morph now works for for greyscale images.
- videoapi changed order of registered decoders
ffmpeg based decoder shall be picked if compile with
ffmpeg is enabled and no prefered decoder is selected.
(the old order picked libmpeg3)
- added new gap/gap_decode_mplayer_main.c to POTFILES.in
* po/POTFILES.in
* gap/gap_range_ops.c
* gap/gap_frame_fetcher.c
* gap/gap_image.c
* gap/gap_mov_exec.c
* gap/gap_split.c
* gap/gap_wr_color_levels.c
* gap/gap_wr_opacity.c
* gap/gap_morph_exec.c
* libgapvidapi/gap_vid_api.c
* libgapvidapi/gap_vid_api_ffmpeg.c
2009-02-11 Wolfgang Hofer <hof@gimp.org>
- configure now checks for old versions of ffmpeg and libmpeg3
in case old version is detected those directories are renamed by adding
the suffix -OLD and prints out an information message.
The check is useful for build from svn, because svn update
does not care for the "Derived" direcories ffmpeg and libmpeg3
(note that only the tarballs are under svn control)
fixes the "can not compile" part of #571444
TODO: fix build variants when configured with
--disable-videoapi-support
--disable-libavformat
--disable-libmpeg3
- configure no longer builds old unix frontends for xanim, and old mpeg encoders
by default (this stuff is very old, build is still supported
- frontend for mplayer based frame extract was moved to its own
main program (this frontend was successfully tested with MPlayer SVN-r28347)
- added support for new ffmpeg encoder options.
various parameters and codec flags tat are new in ffmpeg 2009.01.31
Note that some of the new capabilities are not provided in the GUI.
this stuff needs ffmpeg expert knowledge (more than i have) and
can be used via a preset file that can be saved and loaded
from the GUI and allows full control for all encoder capabilities.
- added GUI support for new FFMPEG codec flags /flags2
- implemented support for 2-pass encoding in the FFMPEG based videoencoder
and in the GapGveMasterEncoderStatus (for update of the progress
in the master video encoder GUI)
- Some of the GIMP-GAP dialogs have iconify and maximize
decoration, this is done by adding type hint for NORMAL window
for the window manager.
gtk_window_set_type_hint (shell_window, GDK_WINDOW_TYPE_HINT_NORMAL);
- Master Video Encoder
- Parameter Dialog for FFMPEG and AVI
- MovePath
- VideoExtract
- Morph
* configure.in
* gap/Makefile.am
* gap/gap_frontends_main.c
* gap/gap_decode_mplayer_main.c ## new file
* gap/gap_mov_dialog.c
* gap/gap_vex_dialog.c
* gap/gap_morph_dialog.c
* libgapvidutil/gap_gve_misc_util.c [.h]
* vid_common/gap_cme_gui.c
* vid_enc_avi/gap_enc_avi_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_par.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c
2009-02-08 Wolfgang Hofer <hof@gimp.org>
- Updated external libs
* configure.in
* extern_libs/Makefile.am
* extern_libs/README_extern_libs
* extern_libs/configure_options_ffmpeg.txt
* extern_libs/ffmpeg.tar.gz
* extern_libs/libmpeg3.tar.gz
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* libgapvidapi/gap_vid_api.h
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_vidindex.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_mpeg3toc.c
- PORTING GIMP-GAP to use recent libmpeg3-1.8
- configure.in: disabled check if the compiler is able to handle the libmpeg3
Note that this check once was introduced because old libmpeg3-1.5.4 did not compile
with recent gcc compiler version.
the libmpeg3-1.8 did compile fine on my openSuse 11.1 system that has gcc --version
gcc (SUSE Linux) 4.3.2 [gcc-4_3-branch revision 141291]
- mpeg3_open and mpeg3_open_copy have an additional parameter int *error_return
(returns 0 if OK, errorcode on failure)
- toc file format has changed
now GIMP-GAP uses new procedures
mpeg3_start_toc
mpeg3_do_toc
mpeg3_stop_toc
to create video indexes compatible for libmpeg3-1.8 format
- procedure mpeg3_set_mmx was removed since libmpeg3-1.8
/// mpeg3_set_mmx(handle->main_handle, FALSE);
- PORTING GIMP-GAP to use recent ffmpeg-export-snapshot.2009.01.31.tar.bz2
======= Compile issuses ===================
- pointer to first_avcodec no longer public.
iterate through codecs now can be done with av_codec_next
for(codec = av_codec_next(NULL); codec != NULL; codec = av_codec_next(codec)) { ...}
acc->error_resilience = 2; ==> acc->error_recognition = FF_ER_COMPLIANT
added explicite configurarion for normal compliance behaviour
acc->strict_std_compliance = FF_COMPLIANCE_NORMAL;
- linker complains about missing avcodec_decode_audio
==> therfore use the new procedure avcodec_decode_audio2
instead.
(requires data_size initialized and must be >= AVCODEC_MAX_AUDIO_FRAME_SIZE:192000
if not the call will fail and print a message like this:
[mp2 @ 0x99a5800]buffer smaller than AVCODEC_MAX_AUDIO_FRAME_SIZE
)
- constant for DEFAULT_FRAME_RATE_BASE no longer available
some codec flags no longer supported:
CODEC_FLAG_TRELLIS_QUANT remove this
CODEC_FLAG_H263P_AIC has same value as CODEC_FLAG_AC_PRED
- AVCodecContext has no member named rtp_mode
- removed support for OLD ffmpeg releases.
( #define HAVE_OLD_FFMPEG_0408 and HAVE_FULL_FFMPEG)
======= CONFIGURE / BUILD issuses ===================
- ## TODO ffmpeg no longer supports the configure option --enable-liba52bin
==> commented out --enable-liba52bin (remove from configure.in may follow when
update to ffmpeg is proofed stable.
- ## TODO ffmpeg requires at least BUILD >= 65 for the option --enable-libx264
==> disables the option --enable-libx264 until the check
for condition x264.h "X264_BUILD >= 65" works.
- added -I$FFMPEG_DIR because ffmpeg libraries
changed include style to add the subdirectory
OLD: #include "avformat.h"
NEW: #include "libavformat/avformat.h"
- ffmpeg libs are not built automatically
make target "lib" no longer available.
==> now simple make
(default target all) builds all ffmpeg libs and programs
- ffmpeg libs require linking with libbz2 (at least the codec matroskadec want bz2)
libbz2 was autotomatically detected by the ffmpeg configure script,
but GIMP-GAP configure must also check for libbz2 and add -lbz2
to the ffmpeg linker options.
======= Functional issuses ENCODE ===================
- ffmpeg based vide encoder crash in av_write_frame
(crash occurs both for audio frame and video frame encoding)
encoder pts is 0, dts is AV_NOPTS_VALUE
==> recent ffmpeg requires additional initialisations to run properly.
gap_enc_ffmpeg_main.c :: p_init_video_codec
if(epp->qscale)
{
video_enc->flags |= CODEC_FLAG_QSCALE;
ffh->vst[ii].vid_stream->quality = FF_QP2LAMBDA * epp->qscale; /* video_enc->quality = epp->qscale; */
video_enc->global_quality = FF_QP2LAMBDA * epp->qscale; // ### 2009.01.31 must init global_quality to avoid crash
}
video_enc->sample_aspect_ratio = av_d2q(l_dbl, 255);
ffh->vst[ii].vid_stream->sample_aspect_ratio = video_enc->sample_aspect_ratio; /* 2009.01.31 must init stream sample_aspect_ratio to avoid crash */
- support nev values for already existing parameters.
- support new motion estimation algorithm methods
7 (hex), 8 (umh), 9 (iter), 10 (tesa) [7, 8, 10 are x264 specific, 9 is snow specific]
- support new idct algorithm methods
_("12 vp3"), GAP_GVE_FFMPEG_IDCT_ALGO_12_VP3,
_("13 ipp"), GAP_GVE_FFMPEG_IDCT_ALGO_13_IPP,
_("14 xvidmmx"), GAP_GVE_FFMPEG_IDCT_ALGO_14_XVIDMMX,
_("15 cavs"), GAP_GVE_FFMPEG_IDCT_ALGO_15_CAVS,
_("16 simplearmv5te"), GAP_GVE_FFMPEG_IDCT_ALGO_16_SIMPLEARMV5TE,
_("17 simplearmv6"), GAP_GVE_FFMPEG_IDCT_ALGO_17_SIMPLEARMV6,
_("18 simplevis"), GAP_GVE_FFMPEG_IDCT_ALGO_18_SIMPLEVIS,
_("19 wmv2"), GAP_GVE_FFMPEG_IDCT_ALGO_19_WMV2,
_("20 faan"), GAP_GVE_FFMPEG_IDCT_ALGO_20_FAAN,
_("21 ea"), GAP_GVE_FFMPEG_IDCT_ALGO_21_EA,
_("22 simpleneon"), GAP_GVE_FFMPEG_IDCT_ALGO_22_SIMPLENEON,
_("23 simplealpha"), GAP_GVE_FFMPEG_IDCT_ALGO_23_SIMPLEALPHA,
======= Functional issuses DECODE ===================
- video index based seek does not work with recent ffmpeg versions.
==> AVFormatContext
pb is now a pointer to ByteIOContext
OLD: url_ftell(&handle->vid_input_context->pb);
NEW: url_ftell(handle->vid_input_context->pb);
video index code was updated.
the new format for video indexes records dts timecodes and allows positioning
based on DTS timecodes
using libavformat av_seek_frame, but only if valid DTS timecodes are detected.
Otherwise the video index uses byte positions (based on url_ftell / url-fseek,
similar to the old GIMP-GAP video index implementation) as fallback solution.
old video index files are no longer supported.
(In my test i already implemented code for the migration, but this does not work
because decoding delivers slightly different colors for the decoded frames
and this results in differnt checksums as in older ffmpeg release that was used
at creation time of the video index. So i found out that migration is NOT POSSIBLE)
- fixed bug:
frame length is just stored with 16 lower bits in the videoindex
compare must also use just 16 lower bits
(changed type and name of
old: gint32 handle->got_frame_length
new: guint16 handle->got_frame_length16
to point out that only 16 bits are used)
- byte position based seek takes us to one frame after the wanted frame
recording of video index byte offset now compensates this effect
by recording offests of the 14. frames before the wanted frames
- native seek fails on some videos
old ffmpeg version constantly delivered dts timecodes for all frames in all my test videos.
unfortunately recent ffmpeg dts timecode detection now fails for some videos.
(tested with .VOB files from DVD)
this change breaks the GIMP-GAP native seek feature whenever this problem occures...
== > the new libgapvidapi/gap_vid_api_ffmpeg.c code now checks
while proberead for valid dts timecodes, and disables native seek
if no valid dts timecodes can be detected.
(and creating a video index for those videos is recommanded)
- dts timecodes are sometimes not exact and may differ
==> now allow tolerance of +-2
(see gap_vid_api_ffmpeg.c::p_areTimecodesEqualWithTolerance)
2009-01-25 Wolfgang Hofer <hof@gimp.org>
- fixed Storyboard single clip playback of cliptype GAP_STBREC_VID_IMAGE.
The playback did missinterpret the single image as animframe in case the image has a number part
and showed non-relevant frames according to the from / to parameters in the internal clip datastructure
that should be ignored for single image.
- fixed minor memory leak in gap/gap_story_file.c::gap_story_filename_is_videofile_by_ext
- fixed Storyboard thumbnail rendering, where clip of type movie caused GIMP-2.6 error message
that complains about unknown filetype.
"Fehler beim Ausfhren der Prozedur gimp-file-load:
Unbekannter Dateityp"
This was triggered when thumbnails for clips of type movie (*.mpg, *.avi ....)
are to be rendered from full "image" as fallback strategy in case no thumbnail is available,
but such fallback does only make sense for frames and single images that can be loaded as
image by the gimp core.
For movies and sections we must use the relevant default icon in this case.
(the typically situation when videothumbnail is disabled)
- bugfix: master videoencoder dialog does NOT update encoder status progress while encoding.
Using gimp_set_data gimp_get_data as communication channel between master encoder dialog plugin
and the video encoder plug in (running in another process) does no longer work
with GIMP-2.6, because the master encoder call to gimp_get_data now blocks
until the encoder exits.
Now using a binary file to communicate the encoder status and cancel requests,
this allows to keep the master encoder GUI progress page active while
the encoder process is running
* gap/gap_story_dialog.c
* gap/gap_story_file.c
* gap/gap_story_properties.c
* vid_common/gap_cme_main.c [.h]
* vid_common/gap_cmegui.c
* vid_common/gap_cme_callbacks.c
* libgapvidutil/gap_gve_misc_util.c [.h]
2009.01.22 Wolfgang Hofer <hof@gimp.org>
- added support run with last values for Split Image to frames feature.
this fixes the GIMP Message Execution error for procedure 'gimp-file-save'
as reported in #568143
* gap/gap_split.c
2009-01-21 Wolfgang Hofer <hof@gimp.org>
- removed restriction in split image feature as suggested in bugreport #568143
added overwrite dialog
(the old implementation did silently overwrite the frames without asking for permission)
* gap/gap_lib.c [.h]
* gap/gap_split.c
2009-01-20 Wolfgang Hofer <hof@gimp.org>
- fixed Gtk warnings about non zero page size in all GIMP-GAP dialogs
Gtk-WARNING **: GtkSpinButton: setting an adjustment with non-zero page size is deprecated
* gap/gap_morph_dialog.c
* gap/gap_onion_dialog.c
* gap/gap_player_dialog.c
* gap/gap_resi_dialog.c
* gap/gap_story_att_trans_dlg.c
* gap/gap_story_dialog.c
* gap/gap_vex_dialog.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
* vid_common/gap_cme_gui.c
* vid_enc_avi/gap_enc_avi_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
- fixed bugs in the curves tool wrapper
that called curves tool on non-relevant histogram channels
(now check for alpha channel, and type rgb or gray)
fixed processing order of channels.
with the old order the results were different to the GIMP color curves tool
for rgb images in case when both value and color r/g/b modifications
are applyed)
* gap/gap_wr_color_curve.c
2009-01-19 Wolfgang Hofer <hof@gimp.org>
- wrapper for the curves tool now support both the old and new fileformat
for new color curves (saved with GIMP-1.2 upto GIMP-2.4 and GIMP-2.6)
- fixed some (but not yet all) GtkWarnings about deprecated usage
(gap_player_dialog:4654): Gtk-WARNING **: GtkSpinButton: setting an adjustment with non-zero page size is deprecated
* gap/TESTPROT_iter_ALT
* gap/gap_player_dialog.c
* gap/gap_wr_color_curve.c
2009-01-18 Wolfgang Hofer <hof@gimp.org>
Started port to GIMP-2.6.4
- FilterAllLayers basically works, but prints annoying error message:
Fehler beim Aufruf der Prozedur "gimp-procedural-db-proc-info":
Prozedur "plug-in-alienmap2-Iterator" wurde nicht gefunden
Gap used gimp-procedural-db-proc-info to check if an procedure is available.
The implemented workaround mow queries the full list of all procedures,
and first checks the list before mking an attempt to query gimp-procedural-db-proc-info
TODO [optional]: is there is a better way for a plugin to test if another PDB procedure is available
without causing Error messages if the searched name not exists ?
- Filter all Layer compatibility test
fixed ERROR: p_plug_in_flame_iter_ALT stored Data missmatch in size 8104 != 7048
in iterator_ALT procedure (xform array size canged FLAME_NVARS from 7 to 29)
fixed ERROR: p_plug_in_ripple_iter_ALT stored Data missmatch in size 32 != 28
in iterator_ALT procedure (added parameter gint phase_shift;)
plug-in-wr-color-levels fails to load files that are saved with the curves tool of GIMP-2.6.4
the fileformat has canged, ... not yet fixed just warn that new format not yet supported.
TODO parser shall support both old "# GIMP Curves File"
and new format... "# GIMP curves tool settings"
* gap/TESTPROT_iter_ALT
* gap/gap_filter_pdb.c
* gap/gap_pdb_calls.c [.h]
* gap/gap_wr_color_curve.c
* gap/iter_ALT/mod/plug_in_flame_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_ripple_iter_ALT.inc
2009-01-14 Wolfgang Hofer <hof@gimp.org>
- changed frame fetcher to use image parasites to mark cached images (and temporary duplicates)
the old implementation based on static global lists did not work for filtermacros
because the filtermacro that registers as cache user typically
runs in another process than the iterator (that is invoked from the called filter)
With the old implementation all images that were fetched via persistent drawable_id
in filtermacros were never deleted and filled up memory until gimp-swap fills up the disk
then caused no more space left on device errors.
- bugfix Master Video Encoder.
Again the "Encoder" page labels were not updated as expected.
The labels did show just the highest digit (FramesDone 8 when 817 frame done ..)
the new fix already creates the label with placeholder for 6 digits. "######".
procedure p_set_label_to_numeric_value uses leading blanks
- added storyboard feature "area replacement" via format string that provides
videoclip and framenumber specific logo inserts for all handled clips of type movie.
Framespecific area replacement can be used for individual fixes
(provided as manual edited frame image) on some partly damaged frames
- drawable iterator: additional checks for valid drawables
- morph or fade can be used to create tweens (for missing frames in a framesequence)
* docs/reference/txt/plug-in-gap-storyboard-master-prop.txt
* gap/gap_file_util.c
* gap/gap_filter_iterators.c
* gap/gap_frame_fetcher.c
* gap/gap_image.c
* gap/gap_image.h
* gap/gap_layer_copy.c
* gap/gap_layer_copy.h
* gap/gap_morph_dialog.c
* gap/gap_morph_dialog.h
* gap/gap_morph_exec.c
* gap/gap_morph_exec.h
* gap/gap_morph_main.c
* gap/gap_morph_main.h
* gap/gap_story_dialog.c
* gap/gap_story_file.c
* gap/gap_story_file.h
* gap/gap_story_main.h
* gap/gap_story_properties.c
* gap/gap_story_render_lossless.c
* gap/gap_story_render_processor.c
* gap/gap_story_render_types.h
* gap/gap_story_syntax.c
* gap/gap_story_syntax.h
* gap/Makefile.am
NEW FILES:
* gap/gap_morph_tween_dialog.c
* gap/gap_morph_tween_dialog.h
* gap/gap_wr_resynth.c
2008-12-16 Wolfgang Hofer <hof@gimp.org>
- fixed split image to frames for indexed images, and
implemented feature to copy image properties such as channels,
pathes, guides etc..to all resulting frame images.
(#564330 and #564333
- fixed a bug in gap_lib.c where saving of thumbnails failed in case the frame image
was created in one of the gap plug-ins and subsequent save operation had not
yet set the filename.
* gap/gap_main.c
* gap/gap_split.c [.h]
* gap/gap_lib_common_defs.h
* gap/gap_lib.c
2008-11-27 Sven Neumann <sven@gimp.org>
* configure.in: define GIMP_DISABLE_DEPRECATED when compiling
against GIMP 2.4 or GIMP 2.6.
2008-11-08 Wolfgang Hofer <hof@gimp.org>
- fix for the bugfix (The "Encoder" page labels were not updated as expected.)
(accidently the previous check in added a non working version)
* vid_common/gap_cme_gui.c
2008-11-08 Wolfgang Hofer <hof@gimp.org>
- bugfix Master Video Encoder.
The "Encoder" page labels were not updated as expected.
The labels did show just the highest digit (FramesDone 8 when 817 frema done ..)
maybe this is a gtk problem, but the fix
in procedure p_set_label_to_numeric_value
now repeats the gtk_misc_set_alignment call
to force refresh the alignment when the value changes.
* vid_common/gap_cme_gui.c
2008-11-02 Wolfgang Hofer <hof@gimp.org>
- bugfix Master Video Encoder. The "Encoder" page of the notebook widget
is sporadic not visible when the encoding thread is running.
Workaround: show the encoder tab already at creation of the dialog
and keep it visible all the time.
* vid_common/gap_cme_gui.c
* vid_common/gap_cme_callbacks.c
2008-11-02 Wolfgang Hofer <hof@gimp.org>
- fix #558529
- Master Video Encoder dialog now stays open while video encoding is active
to display encoding progress, including statistics how many frames
were encoded so far and how many frames could be copied 1:1
(for encoder types that support the "dont recode flag"
for lossles cut)
* vid_common/gap_cme_main.c [.h]
* vid_common/gap_cme_gui.c [.h]
* vid_common/gap_cme_callbacks.c
* libgapvidutil/gap_gve_misc_util.c [.h]
* libgapvidutil/gap_gvetypes.h
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* vid_enc_rawframes/gap_enc_rawframes_main.c
* vid_enc_single/gap_enc_singleframes_main.c
* gap/gap_story_file.c
2008-10-31 Sven Neumann <sven@gimp.org>
* gap/gap_dbbrowser_utils.c: removed redeclaration of
gimp_proc_view_new(). This function is in libgimp since GIMP 2.4.
Declaring it here breaks the build with GIMP 2.6.
2008-10-31 Sven Neumann <sven@gimp.org>
* autogen.sh: also support automake 1.10.
2008-10-26 Wolfgang Hofer <hof@gimp.org>
- storyboard properties: replaced mask_name entry by a conbo box
(restricts mask reference selections to the list of available mask definitions)
- fixed a bug that rendered unitialized data in the mask preview of the
storyboard properties dialog when adding a mask to a clip
that had no mask when the dialog was created.
Happens when the 1st rendering of the preview has a desaturation_request
and the widget is not realized yet (has no window pointer).
In this case nothing is rendered, but subsequent repaint uses
uninitialized data.
- fixed a bug that caused crash on attempt to propagate changes
to already closed (dead) propery dialogs
(GapStbPropWidget)
* gap/gap_story_main.h
* gap/gap_story_dialog.c
* gap/gap_story_properties.c [.h]
* gap/gap_story_att_trans_dlg.c
2008-10-22 Wolfgang Hofer <hof@gimp.org>
- implemented deinterlace support for all storyboard clip types.
(previous version did only support cliptype GAP_FRN_MOVIE)
* libgapvidapi/gap_vid_api.c [.h]
* gap/gap_story_render_processor.c
2008-10-20 Wolfgang Hofer <hof@gimp.org>
- refactoring of procedure p_story_render_fetch_composite_image_private
* gap/gap_story_render_processor.c
2008-10-19 Wolfgang Hofer <hof@gimp.org>
- fixed bug when closing clip properties dialog
(the check for non-unique mask definition name must be restricted to
mask-definition clips and MUST NOT run for other clips)
- STORYBOARD clip properties now supports deinterlace modes
Odd First
Even First
The new modes apply the deintelace filter (that builds a full frame
from the rows of one half-frame similar to the already existing Odd and Even modes)
but does switch to the oppsite half-frame in case non integer stepsize is used,
and the non-integer part of the resulting framenumber position is >= 0.5.
Example:
Video clips (from DVD source) are typically interlaced frames.
One interlaced frame contains 2 half frames A and B
where A and B are shot in double speed than the specified framerate of the clip.
framerate 25 fps
frame 000001
+----------------+
| half frame A | t = 0
+----------------+
| half frame B | t = 1/50 sec
+----------------+
frame 000002
+----------------+
| half frame A | t = 2/50 sec (1/25 sec)
+----------------+
| half frame B | t = 3/50 sec
+----------------+
a videoclip with stepsize 0.5 with deinterlace mode Odd fetches:
frame 000001 (A)
frame 000001 (A)
frame 000002 (A)
frame 000002 (A)
a videoclip with stepsize 0.5 played with deinterlace mode Odd First will fetch:
frame 000001 (A)
frame 000001 (B)
frame 000002 (A)
frame 000002 (B)
This gives smooth movement in half speed slow motion playback.
* NEWS
* gap/gap_story_file.c
* gap/gap_story_render_processor.c
* gap/gap_story_properties.c
* gap/gap_story_main.h
* gap/gap_story_render_lossless.c
2008-10-15 Wolfgang Hofer <hof@gimp.org>
- changed the wrapper for rotate any angle functionality to support
animated fliter apply with varying value.
* gap/gap_wr_trans.c
2008-10-12 Wolfgang Hofer <hof@gimp.org>
- added wrapper for rotate any angle functionality.
This provides variable rotation functionality in filtermacros
and therefore can also be used in storyboards.
- fixed detection if there is a selection for all transform wrappers in
gap_wr_trans.c
(the bug caused error messages "gimp_selection_load was called with invalid drawable_id")
* gap/gap_wr_trans.c
2008-10-11 Wolfgang Hofer <hof@gimp.org>
- fixed BUG #555279 (canged the message to avoid the "100%" string
that leads to misinterpretation by xgettext.
* gap/gap_video_index_creator.c
2008-10-05 Wolfgang Hofer <hof@gimp.org>
- fixed BUG #523115 that sometimes caused a crash when splitting an image to frames.
(The procedure gap_lib.c:gap_lib_strdup_add_underscore
allocated a string for the result that was 1 character too short,
but the crash occured later in the g_free call
* gap/gap_lib.c
- bugfix: in the Storyboard Mask definition dialog
Entering a mask name leads to crash while typing mask name
in case the partly typed name matches an already existing mask name.
Now the mask_name is not automatically updated while typing.
The update is done later, when closing the dialog,
or on explicite request via the new button for explicite setting the mask name.
Furthermore the update checks for unique name and rejects a non-unique
name with an erro message.
* gap/gap_story_main.h
* gap/gap_story_properties.c
- bugfix: Master Videoencoder dialog: create composite audio extract of multiple audio clips
from the same video did extract from start playtime of 1st clip
until end playtime of last clip refering the video file (OK)
but this was done foreach clip that makes processing slow and finally filled up my disk in a large
storyboard project.
(Bug was introduced with the storyboard section feature,
and therefore not relevant for the stable branch)
* gap/gap_story_render_audio.c
- player otone playback in storyboard file:
fixed offset calculation for the start sample
must use local samplerate of the refered video clip
(p_get_audio_relevant_FrameNr and p_audio_start_play)
* gap/gap_player_dialog.c
2008-07-31 Wolfgang Hofer <hof@gimp.org>
- new feature: Persistent drawable id references.
Filtermacro supports persistent drawable_id mapping.
allows applying recorded filtermacro apply in another gimp session
when the recorded last values buffer data has references
to drawable ids.
Example:
the filetermacro has recorded settings to apply the
plug_in_bump_map
that has a reference to a drawable_id that shall be used as map
The new feature creates a persistent mapping for this drawable_id in a file
named <filtermacro>.fmref with information about the imagefile and layer
RESTRICTIONS:
The current implementation can NOT handle parallell processing of multiple filtermacros
because there is only ONE context that will be overwritten in case of concurrent calls.
* NWES
* gap/Makefile.am
* gap/gap_fmac_base.c
* gap/gap_fmac_main.c
* gap/gap_filter_pdb.c [.h]
* gap/gap_filter_iterators.c
* gap/gap_player_main.c [.h]
* gap/gap_player_dialog.c
* gap/gap_frame_fetcher.c [.h] # NEW files
* gap/gap_fmac_context.c [h] # NEW files
* gap/gap_drawable_vref_parasite.c [.h] # NEW files
* gap/gap_story_render_processor.c
* gap/gap_story_dialog.c
* gap/gap_story_file.c
* gap/gap_story_vthumb.c
* gap/gap_story_render_types.h
* libgapvidutil/gap_gve_story.h
2008-07-13 Wolfgang Hofer <hof@gimp.org>
- new feature: viedo extract supports generating transparency via bluebox
- new feature Modify Frames create grayscale layer from
alpha channel, or layermask or mix of both
* gap/gap_layer_copy.c [.h]
* gap/gap_mod_layer.c [.h]
* gap/gap_mod_layer_dialog.c [.h]
* gap/vex_main.c [.h]
* gap/vex_exec.c
* gap/gap_vek_dialog.c
* gap/Makefile.am
2008-07-05 Wolfgang Hofer <hof@gimp.org>
- new feature: Player supports extracting audio track when playing clips
that refere to a videofile that has one or more audiotrack(s)
- video extract plugin: made auido extract work again.
(bug caused by recent refactoring 2008-06-29)
* NEWS
* gap/gap_audio_extract.c [h]
* gap/gap_player_main.c [.h]
* gap/gap_player_dialog.c
* gap/gap_vex_exec.c
* libgapvidapi/gap_vid_api.h
2008-06-29 Wolfgang Hofer <hof@gimp.org>
Merged in current locale development.
(2008-06-24 Wolfgang Hofer <hof@gimp.org>
- moved audio extract feature from gap_vex_exec.c to a new module
gap_audio_extract.c [.h]
(this is the 1st refactoring step, required for a planed feature of the
player that shall provide original auditrack when playback refers to a videofile.
(2008-06-22 Wolfgang Hofer <hof@gimp.org>)
- experimental AVI encoder support for png codec.
allows packing png frames into an AVI video fileformat.
(the dont_recode_flag can be used to significantly speed up operation
if the refered source frames are already PNGs in correct size)
The PNG codec is based on the gimp-file-save-png plug-in.
and offers video encoding without loss of quality.
(such as RAW codec does, but PNG has lossless compression
and can be used to reduce storage resources where lossless
frames are required)
oops, PNG codec is not supported in mplayer when playback AVI
therefore the PNG encoded videofiles do not make sense today..
(the ffmpeg "png" codec name is only for access single frames
but cant be used when PNG frames are stored in the AVI container
(mplayer:
VIDEO: [PNG ] 640x480 24bpp 1.000 fps 3620.9 kbps (442.0 kbyte/s)
Clip info:
Software: gimp-gap-2.5.0
==========================================================================
Cannot find codec matching selected -vo and video format 0x20474E50.
Read DOCS/HTML/en/codecs.html!
==========================================================================
TODO: disable the PNG encoder until some player supports it.
(2008-06-15 Wolfgang Hofer <hof@gimp.org>
Storyboard render processor: changed frame fetch procedure to
support fetching already compreessed frames from disc
and use this new feature in the AVI video encoder.
(now it is possible to do lossless encoding via storyboard
if no transitions are required. This allows fetching alread compressed
JPEG files both from image files and from MPEG I-frames)
My Olympus SP560UZ Digitalcamera can record AVI videos,
where each frame is a MJPG encoded jpeg image. GIMP-GAP now supports
lossless cut for such AVI videos.
Gap video api provides new procedure to query the codec name
(GVA_get_codec_name). This is used for lossless cut features
when the encoder enables the relevant check_flag
GAP_VID_CHCHK_FLAG_VCODEC_NAME
Those checks shall help to avoid corrupt output videos
when the user tries to mix differnt video file resources
into one resulting output video in lossless mode
(e.g. with dont recode flag enabled)
TODO: check how the changes affected the lossless mpeg encoding
features (Those features were once developed based on
the libmpeg3 as decoder and libavformat as encoder engine
and were still in experimental state before this changes.
(2008-06-07) Wolfgang Hofer <hof@gimp.org> )
attempt to implemnet raw video chunk fetching support
for ffmpeg based video decoder.
(new procedure p_wrapper_ffmpeg_get_video_chunk)
this implementation builds the base for lossless video cut operations.
until now libmpeg3 was the only decoder with video chunk fetching support
(but libmpeg3 is old and unmaintained since years)
New experimental "rawframes" encoder.
The rawframes works similar to the single frames encoder
and "extracts" singleframes from a storyboard source,
The rawframes encoder writes the videoframes 1:1 as single files to disc
instead of encoding to one videofile. It is mainly intended for
extracting I Frames 1:1 from MPEG or AVI as JPEG files
where the decoding and reencoding process is skipped where possible
This results in fast and lossless extract of keyframes.
* Makefile.am
* configure.in
* vid_enc_rawframes # NEW dir
* vid_enc_rawframes/gap_enc_rawframes_main.c # NEW file
* vid_enc_rawframes/Makefile.am # NEW file
* po/POTFILES.in
* vid_enc_avi/gap_enc_avi_gui.c
* vid_enc_avi/gap_enc_avi_main.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* libgapvidutil/Makefile.am
* libgapvidutil/gap_gve_png.c[.h] # NEW FILE
* libgapvidapi/gap_vid_api.h
* libgapvidapi/gap_vid_api_util.c
* libgapvidapi/gap_vid_api.c [.h]
* libgapvidapi/gap_vid_api_util.c
* libgapvidapi/gap_vid_api_ffmpeg.c
* gap/Makefile.am
* gap/gap_story_render_processor.c [.h]
* gap/gap_story_render_lossless.c # NEW FILE
* gap/gap_audio_extract.c [.h] # NEW FILES
* gap/gap_vex_exec.c
2008-06-29 Wolfgang Hofer <hof@gimp.org>
- fixed endless loop in the Player on attempt to enter a vaild audiofile name.
* gap/gap_player_dialog.c
2008-05-19 Wolfgang Hofer <hof@gimp.org>
- bugfix: extract JPEG frames from videofile shall not pop up save dialog
on each handled frame.
- bugfix: #348456 enable undo for image extracted from a video.
(The video api now checks if undo is enabled
and makes only one call to disables undo when required)
* gap/gap_vex_exec.c:
* libgapvidapi/gap_vid_api.c
- use png imagetype for storyboard render debug frame save feature
* gap/gap_story_render_processor.c
2008-05-18 Wolfgang Hofer <hof@gimp.org>
- storyboard now supports 8 digit framenumbers
(increased GAP_STB_MAX_FRAMENR from 999999 99999999)
* gap/gap_story_file.c [.h]
* gap/gap_story_properties.c
2008-05-18 Wolfgang Hofer <hof@gimp.org>
- bugfix: #531735 enable undo after creating the animated preview image.
- bugfix: save jpeg frames for the singleframes encoder must use gap specific
procedure gap_lib_save_named_image (direct call of gimp_file_save causes dialog
prompts on each handled frame because runmode with last values is uesed)
* gap/gap_mov_exec.c
* gap/gap_lib.c
* vid_enc_single/gap_enc_singleframes_main.c
2008-05-18 Wolfgang Hofer <hof@gimp.org>
- bugfix: save frames as jpeg was broken due to new behaviour of the file_jpeg_save plug in.
run with last values opens dialog for each handled frame which is not acceptable
for saving lots of frames.
The fix now uses the Non interactive save mode and the jpeg save values
that is stored as image parasite by the file_jpeg_save plugin when saving
the 1st handled frame.
- bugfix: frames renumber start frame number maximum changed from 999999 to 99999999
(this is required if someone will use the maximum supported length of 8 digits for the framenumber part)
* gap/gap_base_ops.c
* gap/gap_lib.c
2008-03-10 Wolfgang Hofer <hof@gimp.org>
- bugfix in storyboard processor: if processed image has only one layer with a layermask
the layermask was ignored at render processing.
* gap/gap_story_render_processor.c
2008-04-06 Wolfgang Hofer <hof@gimp.org>
Lots of updates (merged in local development since 2006-07-16)
This also includes merge of the changes and bugfixes that were alredy applied
in the stable gimp-gap-2.4 branch.
Merge protocol:
NEW FILES ADDED TO SVN:
gap/gap_fmac_base.c
gap/gap_fmac_base.h
gap/gap_fmac_name.c
gap/gap_fmac_name.h
gap/gap_fmac_varying_main.c
gap/gap_story_section_properties.c
gap/gap_story_section_properties.h
gap/gap_story_undo.c
gap/gap_story_undo.h
gap/gap_story_undo_types.h
gap/gap_story_vthumb.c
gap/gap_story_vthumb.h
gap/gap_video_index_creator.c
images/gap-story-icon-blacksection.png
images/gap-story-icon-section-main.png
images/gap-story-icon-section-mask.png
images/gap-story-icon-section.png
libgapbase
libgapbase/gap_val_file.c
libgapbase/gap_val_file.h
libgapbase/Makefile.am
CHANGED FILES (checked and merged):
m- merge was necessary and performed.
l- use 1.1 copy from local latest
s- use 1.1 copy from from svn trunc latest
m- ChangeLog
m- configure.in
l- Makefile.am
l- NEWS
l- README
l- docs/reference/txt/gap_gimprc_params.txt
l- docs/reference/txt/INTRODUCTION.txt
l- docs/reference/txt/plug-in-gap-storyboard-edit.txt
l- docs/reference/txt/STORYBOARD_FILE_DOC.txt
l- extern_libs/configure_options_ffmpeg.txt
l- extern_libs/ffmpeg.tar.gz
l- extern_libs/Makefile.am
l- extern_libs/README_extern_libs
l- gap/gap_arr_dialog.c
l- gap/gap_arr_dialog.h
m- gap/gap_bluebox.c
s- gap/gap-dup-continue.scm
l- gap/gap_file_util.c
l- gap/gap_file_util.h
l- gap/gap_filter_codegen.c
l- gap/gap_filter_foreach.c
l- gap/gap_filter.h
l- gap/gap_filter_iterators.c
l- gap/gap_filter_pdb.c
l- gap/gap_filter_pdb.h
l- gap/gap_fmac_main.c
m- gap/gap_layer_copy.c
l- gap/gap_lib.c
l- gap/gap_lib.h
l- gap/gap_mod_layer.c
l- gap/gap_mod_layer_dialog.c
l- gap/gap_mod_layer.h
l- gap/gap_morph_dialog.c
l- gap/gap_morph_exec.c
m- gap/gap_mov_dialog.c
m- gap/gap_mov_render.c
l- gap/gap_navigator_dialog.c
l- gap/gap_pdb_calls.c
m- gap/gap_player_dialog.c
l- gap/gap_player_main.c
l- gap/gap_player_main.h
s- gap/gap_pview_da.c
l- gap/gap_range_ops.c
l- gap/gap_split.c
l- gap/gap_story_att_trans_dlg.c
m- gap/gap_story_dialog.c
l- gap/gap_story_dialog.h
l- gap/gap_story_file.c
l- gap/gap_story_file.h
l- gap/gap_story_main.c
l- gap/gap_story_main.h
m- gap/gap_story_properties.c
l- gap/gap_story_render_audio.c
l- gap/gap_story_render_processor.c
l- gap/gap_story_render_processor.h
l- gap/gap_story_render_types.h
l- gap/gap_story_syntax.c
l- gap/gap_story_syntax.h
l- gap/gap_vex_dialog.c
l- gap/gap_vin.c
l- gap/gap_vin.h
l- gap/gap_wr_color_curve.c
l- gap/gap_wr_color_huesat.c
l- gap/gap_wr_color_levels.c
l- gap/gimplastvaldesc.h
l- gap/Makefile.am
s- gap/sel-to-anim-img.scm
l- gap/TESTPROT_iter_ALT
l- gap/iter_ALT/gen/plug_in_alpha2color_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_blinds_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_borderaverage_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_checkerboard_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_CML_explorer_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_colorify_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_color_map_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_cubism_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_destripe_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_diffraction_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_displace_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_edge_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_engrave_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_flarefx_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_fractal_trace_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_gauss_iir2_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_gauss_iir_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_gauss_rle2_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_gauss_rle_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_gfig_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_glasstile_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_grid_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_jigsaw_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_mblur_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_mosaic_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_newsprint_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_noisify_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_pixelize_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_randomize_hurl_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_randomize_pick_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_randomize_slur_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_ripple_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_rotate_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_scatter_hsv_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_sharpen_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_shift_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_spread_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_video_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_vpropagate_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_waves_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_whirl_pinch_iter_ALT.inc
l- gap/iter_ALT/gen/plug_in_wind_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_alienmap2_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_alienmap_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_apply_canvas_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_applylens_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_blur_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_bump_map_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_cartoon_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_colors_channel_mixer_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_colortoalpha_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_convmatrix_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_deinterlace_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_depth_merge_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_despeckle_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_dog_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_emboss_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_exchange_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_flame_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_gauss_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_gimpressionist_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_illusion_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_lic_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_lighting_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_make_seamless_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_map_object_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_max_rgb_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_maze_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_neon_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_nlfilt_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_normalize_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_nova_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_oilify_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_pagecurl_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_papertile_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_photocopy_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_plasma_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_polar_coords_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_retinex_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_sample_colorize_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_sel_gauss_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_sinus_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_small_tiles_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_sobel_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_softglow_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_solid_noise_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_sparkle_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_Twist_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_unsharp_mask_iter_ALT.inc
l- gap/iter_ALT/mod/plug_in_vinvert_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_anamorphose_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_blur2_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_CentralReflection_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_colorify_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_encript_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_figures_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_gflare_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_holes_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_julia_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_magic_eye_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_mandelbrot_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_randomize_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_refract_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_struc_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_tileit_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_universal_filter_iter_ALT.inc
l- gap/iter_ALT/old/plug_in_warp_iter_ALT.inc
l- images/Makefile.am
m- libgapvidapi/gap_vid_api.c
l- libgapvidapi/gap_vid_api_ffmpeg.c
l- libgapvidapi/gap_vid_api_gimp.c
l- libgapvidapi/gap_vid_api.h
l- libgapvidapi/gap_vid_api_mpeg3.c
l- libgapvidapi/gap_vid_api_quicktime.c
l- libgapvidapi/gap_vid_api_vidindex.c
l- libgapvidapi/Makefile.am
l- libgapvidutil/gap_gvetypes.h
l- libgapvidutil/Makefile.am
s- po/ar.po
s- po/bg.po
s- po/ca.po
s- po/ChangeLog
s- po/en_GB.po
s- po/es.po
s- po/fi.po
s- po/fr.po
s- po/it.po
s- po/ne.po
l- po/POTFILES.in
s- po/pt_BR.po
s- po/ru.po
s- po/sl.po
s- po/sv.po
l- vid_common/gap_cme_callbacks.c
l- vid_common/gap_cme_gui.c
l- vid_common/gap_cme_main.c
l- vid_common/gap_cme_main.h
l- vid_common/Makefile.am
m- vid_enc_avi/gap_enc_avi_main.c
l- vid_enc_avi/gap_enc_avi_main.h
l- vid_enc_avi/Makefile.am
m- vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
l- vid_enc_ffmpeg/gap_enc_ffmpeg_main.h
l- vid_enc_ffmpeg/gap_enc_ffmpeg_par.c
l- vid_enc_ffmpeg/Makefile.am
l- vid_enc_single/gap_enc_singleframes_main.c
l- vid_enc_single/Makefile.am
Here comes the detailed List of the changes:
(2008-03-22)
- Storyboard Dialog feature (CTRL-DoubleClick) additional invokes external image viewer
(work only for clip types image frame...)
gimprc:
(video_external_image_viewer "eog")
(2008-01-05)
- modify frames support to expand layer to image size
(applied patch #488653)
- fixed bug #505001 (replaced calls to deprecated gimp_path_* procedures)
* gap/gap_mov_dialog.c
* gap/gap_mod_layer_dialog.c
* gap/gap_mod_layer.c
* gap/gap_mod_layer.h
(2008-01-01)
- ffmpeg encoding crash at close (when calling url_fclose for the encoded video file)
==> workaround uses a private version of url_fclose (my_url_fclose)
- ffmpeg encoding bug with recent version produces corrupted result.
(tested with codecs: MPEG1 and MPG2)
prints out the error message:
[mpeg @ 0x83d8bf4]buffer underflow i=0 bufi=14756 size=38114
ffmpeg encoder use 1 as deniominator (where possible) when setup the AVRational struct.
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* extern_libs/README_extern_libs
* extern_libs/ffmpeg.tar.gz # updated to svn snaphot from 2007.12.20
(2007-12-01)
- bugfix video api ffmpeg (prefere_native_seek yes) was se in the .analyze file
but vindex was used in seek operations.
* libgapvidapi/gap_vid_api_ffmpeg.c
(2007-12-01)
- bugfix in modify frames when using a filter appply function:
works, but causes GIMP error messages:
a calling error occurred while trying to run: "gimp-image-delete"
now calling gimp_image_delete before gimp_display_delete (gap_mod_layer.c)
and modify frames works without displaying this error message.
- continue update of _Iterator_ALT procedures for gimp-2.4
changes the following iterators:
- bugixes related to animated filtercalls.
The gimp-2.4.x release has renamed all plug ins to match Canonical identifier names.
* Canonical identifiers are e.g. expected by the PDB for procedure
* and parameter names. Every character of the input string that is
* not either '-', 'a-z', 'A-Z' or '0-9' will be replaced by a '-'.
canonicalized identifiers are now used in gimp_set_data, gimp_get_data procedures
and in PDB procedure names.
conversion is done via
gimp_canonicalize_identifier.
(this replaces all underscore characters to minus character)
the GIMP-GAP Iterator stuff was broken because GIMP-GAP name conventions
did not match canonical names and many last value buffer structures
changed since gimp-2.2.x.
Now changed all names related to Iterator stuff
to make things work again with GIMP-2.4.0.
Note that there is no longer backward compatibility with older releases,
that do not operate with canonical names. (most plug ins also
changed the structure of their last values buffer.
(many plug ins had a boolean preview flag in this buffer that was
removed with gimp-2.4.0)
configure.in # updated required gimp version to 2.4.0
gap/gap_filter_pdb.c
gap/gap_filter.h
gap/gap_filter_foreach.c
gap/gap_filter_iterators.c
gap/gap_fmac_base.c
gap/gap_fmac_main.c
gap/gap_mod_layer.c
gap/gap_wr_color_curve.c
gap/gap_wr_color_hue_saturation.c
gap/gap_wr_color_levels.c
gap/gimplastvaldesc.h
gap/TESTPROT_iter_ALT
gap/iter_ALT/gen/*.inc
gap/iter_ALT/mod/*.inc
gap/iter_ALT/old/*.inc
(2007-11-28)
startet update of _Iterator_ALT procedures for gimp-2.4
all of them must follow the new naming style (underscore changed to minus character).
* gap/gap_filter.h
* gap/gap_filter_pdb.c
* gap/gap_filter_iterators.c
* gap/iter_ALT/mod/plug_in_map_object_iter_ALT.inc
(2007-11-24)
added progress dialog to video index creation plug-in,
now supports QUICK, SMART and FULLSCANN modes.
bugifx: video index creation plug-in plug-in was greyed out if no image opened
==> registrate with NULL as PLUG_IN_IMAGE_TYPES, because this plugin works without any image.
* gap/gap_video_index_creator.c
(2007-11-20) Wolfgang Hofer <hof@gimp.org>
video index creation now performs timecode stepsize checks, and updates the video analyze file
if necessary. (e.g. if critical steps are detected)
* gap_vid_api_ffmpeg.c
(2007-11-18)
fix attempt for crash in storyboard when video thumbnail prefetch is busy.
caused by concurrent video fetch operations that occured
because the prefetch code calls g_main_context_iteration to keep GUI alive.
==> current solution automatically cancelles the video thumbnail prefetch
if another GUI activity requires access to a video thumbnail.
!!!! sometimes still CRASHING (at open clip properties window)
==> dont open properties window if gva_lock set
* gap/gap_story_dialog.c
* gap/gap_story_dialog.h
* gap/gap_story_vthumb.c
(2007-11-11)
merged changes from svn into local development.
( gimp_show_help_button )
* gap/gap_arr_dialog.c
* gap/gap_dbbrowser_utils.c
* gap/gap_fmac_main.c
* gap/gap_mov_dialog.c
* gap/gap_onion_dialog.c
* gap/gap_resi_dialog.c
(2007-11-03)
update libavcodec/libavformat to recent ffmpeg libraries
- configure option canged from: --enable-xvid to: --enable-libxvid
- 2.4 bugfix: GAP_LIB goto frame crashes on non-xcf frames
caused by gap_lib.c::p_lib_save_named_image2
attempt to g_free drawable fails with gimp-2.4:
GimpDrawable *l_drawable;
l_drawable = gimp_drawable_get(layer_id);
g_free(l_drawable); // crash with invalid pointer exception.
==> for correct operation shall use
gimp_drawable_detach(l_drawable);
but in this case it is not necessary to call gimp_drawable_get at all.
changed the code to operate on the gint32 drawable_id.
- 2.4 bugfix: Master Videoencoder does not recognize the registered encoder plug-ins.
==> gimp-2.4 gimp_procedural_db_query does not accept the same wildcard as gimp-2.2
(underscore characters are no longer found via wildcard)
changed GAP_WILDCARD_VIDEO_ENCODERS and use minus character for the all the encoder plug ins.
from "^plug_in_gap_enc_.*"
to "^plug-in-gap-enc-.*"
- gimprc key for tooltips changed in gimp-2.4
use one common procedure gap_lib_check_tooltips that uses the 2.4 variant.
value_string = gimp_gimprc_query("show-tool-tips"); // 2.2
value_string = gimp_gimprc_query("show-tooltips"); // 2.4
* extern_libs/ffmpeg.tar.gz (update to snapshot 2007.10.31)
* extern_libs/README_extern_libs
* configure.in
* gap/gap_arr_dialog.c
* gap/gap_lib.c
* gap/gap_filter_pdb.c
* gap/gap_pdb_calls.c
* gap/gap_navigator_dialog.c
* gap/gap_morph_dialog.c
* gap/gap_story_att_trans_dlg.c
* libgapvidutil/gap_gvetypes.h
* docs/reference/txt/INTRODUCTION.txt
(2007-10-28)
Started testing based on gimp-2.4.0
- tooltips are NOT active, even if enabled in GIMP preferences!
value_string = gimp_gimprc_query("show-tool-tips"); // 2.2
value_string = gimp_gimprc_query("show-tooltips"); // 2.4
is there a solution working both in gimp2.2. and gimp2.4 ?
- bugfix in Gap Playback dialog:
Calls with invalid image_id were done at click on preview widget to create a gimp-image.
gimp-image-set-resolution
gimp-image-set-unit
==> gap_vid_api.c::GVA_image_set_aspect. must set aspect on image_id
(and not on gvahand->image_id as was implemented before)
- annoying warning "No audiosupport .." if wavplay is not installed on each Player start
the warning is now deferred until 1st attempt to play an audiofile.
* libgapvidapi/gap_vid_api.c
* gap/gap_player_dialog.c
(2007-10-21)
- Storyboard Playback button for cliplist and storyboard
changed normal click and SHIFT-click behaviour.
old:
normal: play all clips of current track,
SHIFT: play selected clips of current track
CTRL: play composite video, all clips of all tracks
CTRL_SHIFT: play composite video, only selected clips.
(if the user did not make useful selections
the result did not produce useful results)
new:
normal: play selected clips of current track
(if nothing is selected play all clips)
This is the most frequent use case of playback
and shall not require a modifier key.
SHIFT: play all clips of current track
CTRL: play composite video, only selected clips of current track
(automatic select and playback frames in all other
tracks
CTRL_SHIFT: play composite video, all clips of all tracks.
- Storyboard undo/redo support
- Storyboard debug features triggerd via file
(the file has constant name: GAP_DEBUG_STORYBOARD
and is searched in the gimp_directory.
* gap/Makefile.am
* gap/gap_story_dialog.c
* gap/gap_story_undo.c [.h] # new files
* gap/gap_story_undo_types.h # new files
(2007-10-13)
- created icon symbol for storyboard section.
- Storyboard added section properties (popup) dialog
that handles creation, update and delete of sub-sections.
* images/Makefile.am
* images/gap-story-icon-blacksection.png # new file
* images/gap-story-icon-section.png # new file
* images/gap-story-icon-section-main.png # new file
* images/gap-story-icon-section-mask.png # new file
* gap/Makefile.am
* gap/gap_story_vthumb.c [.h] # new files
(2007-10-06)
Storyboard dialog: thumbnail rendering support for clip types
section and anim-image, based on the storyboard render processor.
* gap/Makefile.am
* gap/gap_story_section_properties.c [.h] # new files
(2007-09-29)
- fixed showstopper bugs in the storyboard render processor engine
(internal bugs in the new section based features)
- first successful storyboard rendering test using sub sections.
- selection mapping for playback of composite video.
the new concept keeps all clips in all tracks of the relevant section
in the duplicate that is passed to the player, and provides
a mapping of the selected frame ranges.
The player uses this mapping to pick only framenumbers that
are mapped to selected clips.
(The old approach did include only selected clips in the duplicate
but this is not sufficient if there is more than one track present.
Different selections in multiple tracks often leads
to unwanted displacements between the tracks
depending and produces other results
as the rendering of the finally output video will do, and the user
would expect).
* gap/gap_story_render_processor.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_story_dialog.c
* gap/gap_player_dialog.c
(2007-09-25)
storyboard support to save/load edit_settings
includes current value of active_section, video track and page
(e.g. scroll position)
(2007-09-19)
Continued coding for Storyboard section support. (not yet finished)
* gap/gap_story_att_trans_dlg.c
* gap/gap_story_dialog.c
* gap/gap_story_dialog.h
* gap/gap_story_file.c
* gap/gap_story_file.h
* gap/gap_story_main.c
* gap/gap_story_main.h
* gap/gap_story_properties.c
* gap/gap_story_properties.h
* gap/gap_story_render_audio.c
* gap/gap_story_render_audio.h
* gap/gap_story_render_processor.c
* gap/gap_story_render_processor.h
* gap/gap_story_render_types.h
* gap/gap_story_syntax.c
* gap/gap_story_syntax.h
(2007-09-08)
- bugfix STORYBOARD parser.
did reject legal duration value 0 on attribut records
VID_ZOOM and VID_MOVE
- bugfix: gap_cme_callbacks.cprocedure on_cme__spinbutton_framerate_changed
no longer cast framerate to integer !
This error poped up because
recent versions of libavcodec dont accept framerates, that do
not exactly match the supported standard values.
therefore an additional fix was required in the ffmpeg encoder
to guarantee exactly the expected rates of the codecs
for some common used framerates.
(59.94 ==> 60000 / 1001
29.97 ==> 30000 / 1001
23.98 ==> 24000 / 1001)
(caused videos with 29.97 fps fail to encode for some codecs,
other codecs just used the unwanted truncated value of 29.0)
- new value "ask-always" for gimprc parmeter (video-index-creation )
ask-always provides the old behaviour of the setting "ask".
the default value "ask" no longer asks the user to create a videoindex in case
where native seek works, and the videoindex is not required.
(asking in those situation is rather annoying, especially when working
with the storyboard dialog)
- STORYBOARD dialog layout: prepare for new feature that introuces
sections.
- added combo box to select section MAIN, Mask (still without functionality)
- hide the rowpage spinbutton (Row x of n) to get space for the
new section name combo box. Note that rowpage spinbutton is redundant information,
since there is already a vscale widget for scrolling and visualize
the current position.
* gap/gap_story_file.c
* gap/gap_story_main.h
* gap/gap_story_dialog.c
* gap/gap_arr_dialog.c
* docs/reference/txt/gap_gimprc_params.txt
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* vid_common/gap_cme_callbacks.c
(2007-09-05)
- New storyboard feature allows arrange video tracks
at inverse order e.g video track 1 can appear in backround
or as foreground (on top of layerstack in the composite frame,
this is default for compatibility with older storyboard files.)
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
* gap/gap_story_syntax.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_story_render_processor.c
* gap/gap_story_dialog.c
(2007-05-17)
detection of external libs for ffmpeg (liba52 and x264)
if those libs are installed configure ffmpeg accordingly.
(added configure options to explicite disable both libs)
* configure.in
(2007-05-12)
- continued refactoring libbase
- removed key/value procedures from gap_vin.c[.h] and
use common key/value procedures of the new gap_val_file.h
module.
- gimprc prameter (video-gva-libavformat-video-analyse-persistent "yes")
* */Makefile.am # (changed all Makefiles)
* gap/gap_vin.c [.h]
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_vidindex.c
(2007-05-08)
- started key/value file refactoring (created libbase)
* libgapbase # new dir
* libgapbase/Makefile.am # new file
* libgapbase/gap_val_file.c # new file
* libgapbase/gap_val_file.h # new file
* Makefile.am
* configure.in
(2007-04-28)
ffmpeg native seek
- support for videos that include negative timecode steps.
* example:
* video timcode sequence with negative stepsizes may look like this:
* seek_framenumber:000556; seek_timecode:45555; stepsize:1;
* seek_framenumber:000557; seek_timecode:49306; stepsize:3751;
* seek_framenumber:000558; seek_timecode:45557; stepsize:-3749;
* seek_framenumber:000559; seek_timecode:45558; stepsize:1;
* libgapvidapi/gap_vid_api_ffmpeg.c
(2007-04-21)
bugfix storyboard processor crashed
if the last frame of a video shall be fetched for rendering.
when the ffmpeg API wrappers are used.
==> gap_vid_api_ffmpeg.c::p_seek_private
old: constraint l_frame_pos to gvahand->total_frames -1
new: constraint l_frame_pos to gvahand->total_frames.
must allow full number of frames, because this is the upper
limit for the seek position.
The seek position indicates what frame number will be read
with the next sequential read. The wrong constraint was responsible
for positioning one frame less than required.
then the processor performed the read operation with
intention to read the last frame (but got last-1)
the following processing could not find the required
framenumber of the last frame and lead to the crash.
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api.c
(2007-04-21)
AVI encoder: removed old unused GUI dialog code variant.
* vid_enc_avi/gap_enc_avi_main.c
(2007-04-14)
bugfixes on ffmpeg native seek
- gap player: must reset cancel request before trigger self test.
- ffmpeg native seek: added procedure p_clear_inbuf_and_vid_packet
must clear the old input buffer content after seek
otherwise following read operation sometimes crashes at call of avcodec_decode_video
because the input buffer may still point to an old (now invalid) packet.
* NEWS
* gap/gap_player_dialog.c
* libgapvidapi/gap_vid_api_ffmpeg.c
(2007-04-13)
(Applied patch to fix Bug #427487)
* gap/gap_mod_layer_dialog.c
(2007-04-10)
added Video API procedure GVA_check_seek_support
based on this procedure the caller gets information if
fast random access is possible with or without creating
a video index (or not possible at all).
This information is now presented in the video index creation
dialog. This dialog only comes up in case where gimprc setting is
(video-index-creation "ask")
that is also the default if nothing is configured at all.
Changes for configuration:
(video-index-creation "yes")
the video index creation is NOT done if native seek works
or if seek does not work at all and video index would be useless.
* gap/gap_arr_dialog.c [.h]
* gap/gap_story_dialog.c
* gap/gap_player_dialog.c:
* libgapvidapi/gap_vid_api.c [.h]
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_gimp.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_quicktime.x
(2007-04-04)
fixed wrong checks for CR character (was \a, correct is \r)
* gap/gap_file_util.c
* gap/gap_story_file.c
(2007-04-03)
new plug-in for explicite video index creation.
<Toolbox>/Xtns/Video Index Creation...
ffmpeg timecode logging for internal analysis of videofiles.
logging is triggered at video index creation
if gimprc parameter (video-libavformat-timecodelog "1")
it creates a logfile with same name as the videoindex + ".timelog"
The gimprc parameter video-libavformat-timecodelog
defaults to "0" where no .timelog file is written.
*.timelog files are useful for developers
to analyze and verify native timcode based
seek operations. *.timelog files contain timecodes and stepsize differences
for each frame of the analyzed video and CRITICAL warnings where
variable or non-plausible timecodes were detected.
* libgapvidapi/gap_vid_api_ffmpeg.c
* gap/Makefile.am
* gap/gap_video_index_creator.c # new file
(2007-03-17)
new gimprc parameter video-libavformat-seek-gopsize
to control usage of native seek via libavformat.
* libgapvidapi/gap_vid_api_ffmpeg.c
* docs/reference/txt/gap_gimprc_params.txt
==> bugs:
- for videos with fixed duration for all frames.
positioning sometimes not exact.
(differs by 1 sometimes after backwards positioning
and after EOF situation)
file: NUMs....mpg
player position: frame 221 shows frame Nr 220!
probably Player BUG, because Log messages says that
positioning to 220 is required !
(positioning was done with slider, maybe a rounding error
caused display of wrong number in the spinbutton ?)
AVFORMAT: av_seek_frame retcode: 0 seek_pos_microsecs:810000 frame_pos:220
[mpeg1video @ 0x84a589c]end mismatch left=4824 6EEA2F
[mpeg1video @ 0x84a589c]concealing 1350 DC, 1350 AC, 1350 MV errors
AVFORMAT: (0) debug read frame timecode: 810000 (target_timecode:821250, stepsize:3750 (3750))
AVFORMAT: (1) debug read frame timecode: 813750 (target_timecode:821250, stepsize:3750 (3750))
AVFORMAT: (2) debug read frame timecode: 817500 (target_timecode:821250, stepsize:3750 (3750))
AVFORMAT: (3) debug read frame timecode: 821250 (target_timecode:821250, stepsize:3750 (3750))
- sometimes crash
- how to detect videos with individual frame durations ?
(without scanning the full videofile)
allow operate with average frame duration ?
videofile: /home/tmp_hof/TEST.MPG (has individual frame durations!)
TODO:
write regression tests to verify positioning.
(shall be configuable with llist of videofiles,
and perform seek ops with and without native seek!
gap_vid_api_ffmpeg.c:764: warning: `img_convert' is deprecated
(declared at /home/hof/gimp_cvs/unstable/gap-ffmpeg/g In file included from gap_vid_api.c:726:
gap_vid_api_ffmpeg.c: In function `p_read_audio_packets':
gap_vid_api_ffmpeg.c:2446: warning: `avcodec_decode_audio' is deprecated
(declared at /home/hof/gimp_cvs/unstable/gap-ffmpeg/gimp-gap-ffmpeg/extern_libs/ffmpeg/libavcodec/avcodec.h:2714)
(2007-03-15)
- attempt fixed bug for non-interactive call of plug_in_wr_curves
(expects 4 paramsm but did check for at least 5)
test with scrip-fu console:
(plug-in-wr-curves 1 1 1 "/windows/vol1/testdata_gap_storyboard/test.curve")
Error: PDB call of gimp_curves_explicit failed status:0
Error: PDB call of gimp_curves_explicit failed status:0
Error: PDB call of gimp_curves_explicit failed status:0
Error: PDB call of gimp_curves_explicit failed status:0
* gap/gap_wr_color_curve.c
(2007-03-14)
use libavformat native seek for positioning videostream.
use probe read to detect timecode offset of 1.st frame
and stepsize for one frame.
==> still buggy,
- MPEG files sometimes deliver trash
(maybe keyframe detection does not work properly
and seek takes us to P or B frame position ?
.VOB file semmd to deliver clean frames.
- tuning to deliver exact position required.
- vex plugin (seems to use incorrect aspect ratio on 16:9 .VOB files
1,42222)
- seek after EOF results in endless loop.
* libgapvidapi/gap_vid_api_ffmpeg.c
(2007-03-14)
fix for bug#417524 (frames to image for indexed frames)
* gap/gap_range_ops.c
(2007-03-11)
libavformat, libavcodec NEW: libavutil
* configure.in
* extern_libs/Makefile.am
* libgapvidapi/gap_vid_api_ffmpeg.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
compile with recent ffmpeg OK, read test (using video extract) passed OK.
(2007-03-06) Started upgrade to recent ffmpeg
--------------------------------------------
replaced ffmpeg tarball with ffmpeg-export-snapshot-2007.03.06.tar
made configure updates to allow compile with new ffmpeg
- configure.in: handle #comments in configure_options_ffmpeg.txt files
WARNING: this ffmpeg tarball came without liba52 !
therefore no ac3 available (result: NO AUDIO support for DVD videos)
* configure.in
* extern_libs/ffmpeg.tar.gz (now SVN snapshot-2007.03.06)
* extern_libs/configure_options_ffmpeg.txt
currently COMPILE ERRORs
(update in gap sources still missing)
gap_vid_api_ffmpeg.c: In function `p_wrapper_ffmpeg_seek_frame':
gap_vid_api_ffmpeg.c:916: warning: implicit declaration of function `round'
gap_vid_api_ffmpeg.c: In function `p_ff_open_input':
gap_vid_api_ffmpeg.c:1710: warning: comparison between signed and unsigned
gap_vid_api_ffmpeg.c:1712: warning: assignment from incompatible pointer type
gap_vid_api_ffmpeg.c:1781: error: incompatible types in assignment
gap_vid_api_ffmpeg.c:1794: error: structure has no member named `frame_rate'
gap_vid_api_ffmpeg.c:1797: error: structure has no member named `frame_rate'
gap_vid_api_ffmpeg.c:1797: error: structure has no member named `frame_rate_base'
gap_vid_api_ffmpeg.c:1798: error: structure has no member named `frame_rate_base'
gap_vid_api_ffmpeg.c:1802: error: structure has no member named `frame_rate_base'
In file included from gap_vid_api.c:726:
gap_vid_api_ffmpeg.c: In function `p_read_audio_packets':
gap_vid_api_ffmpeg.c:2270: warning: `avcodec_decode_audio' is deprecated (declared at /home/hof/gimp_cvs/unstable/gap-ffmpeg/gimp-gap-ffmpeg-update-branch/extern_libs/ffmpeg/libavcodec/avcodec.h:2714)
(2006-12-19)
Storyboard FEATURE: support applying filtermacro on
processed video clips with varying values.
Clip Properties dialog:
- spinbutton to enter macro steps to define duration in frames
(how long it takes to fade from master macro values
to alternate macro values)
Values > 1 enable filter apply with varying values.
- label that indicates presence of the alternate macro file
and wheter it is active (ON) or turned off by stepsize 1 (OFF)
Alternate macro files are automatically detected via name convention
via the keyword .VARYING (as suffix or before the extension)
New
* gap_fmac_name.c [.h] # newly created files
* gap_fmac_base.c [.h] # newly created files
* gap_fmac_varying_main.c # newly created file
Changed:
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
* po/POTFILES.in
* gap/Makefile.am
* gap/gap_story_file.c
* gap/gap_story_file.h
* gap/gap_story_properties.c.txt
* gap/gap_story_render_processor.c
* gap/gap_story_render_types.h
* gap/gap_story_syntax.c
* gap/gap_filter_pdb.c [.h]
* gap/gap_fmac_main.c
(2006-12-09)
Storyboard: added ClipTarget togglebutton
For selecting the clip target (ON: storyboard, OFF cliplist)
when creating a new clip via player feature "add selected range" as clip.
For assotiation the clip target toggle button uses the same icon
as the corresponding button in the (integrated) playback window.
* gap/gap_story_dialog.c
* gap/gap_story_main.c [.h]
(2006-12-03)
Storyboard: speed up video thumbnail creation (minimize open/frame seek times)
Testfile with 503 storyboard records of ty VID_PLAY_MOVIE
after optimize: 1 min 40sec
before optimize: 1 min 27sec
new storyboard dialog properties flag to "Force Aspect"
gimprc parameter: (video-storyboard-force-aspect-playback "yes")
ON: force display of all clips to proportions defined in Storyboard properties.
OFF: display clips at their native proportions
* gap/gap_story_dialog.c
* gap/gap_story_file.c [.h]
* gap/gap_story_main.c [.h]
* gap/gap_player_dialog.c
* gap/gap_vex_main.c
* docs/reference/txt/gap_gimprc_params.txt
(2006-11-20)
Storyboard: extend selection (SHIFT click) now respects the vtrack number.
* gap/gap_story_dialog.c
* gap/gap_story_file.c [.h]
(2006-08-31)
- bugfix original tone track generation created pause
instead of the original tone for clips with duration of one frame.
* gap/gap_story_file.c
(2006-08-24)
- bugfix: videoindex was slow for videos with variable GOP size.
(stepsize for ffmpeg is calculated via guess of the GOP,
but index entries may dffer in step size depending if the
video is encoded with constant or variable GOP size.
the calculation of the first index to use works for constant
stepsize, but requires adjusting the picked index
(the already existing adjustment only checked if
the frame position is too big, A further adjustment
was added that checks if the picked index uses a frame number that
is much too small and would cause too much full frame read).
* libgapvidapi/gap_vid_api_vidindex.c
* libgapvidapi/gap_vid_api_ffmpeg.c
(2006-08-10)
- storyboard editor show number of frames.
*gap/gap_story_dialog.c [.h]
(2006-07-16)
- storyboard saving aspect used wrong record key word VID_MASTER_SIZE
- parse storyboard attributes allow duration 0..n
(the check for duration >= 1 is not ok, because the editor
allows creating 0 duration)
2008-02-14 Sven Neumann <sven@gimp.org>
Merged from gap-2-4:
* gap/gap_pview_da.c (gap_pview_set_size): added a sanity check
for the preview size.
* gap/gap_mov_dialog.c (mov_path_prevw_create)
(mov_pview_size_allocate_callback)
* gap/gap_player_dialog.c (p_update_pviewsize): make sure that the
preview size doesn't become zero. Fixes bug #516443.
2008-01-29 Kevin Cozens <kcozens@cvs.gnome.org>
* gap/gap-dup-continue.scm: De-tabified.
* gap/sel-to-anim-img.scm: Fixed bad syntax in let block. Moved some
set! calls in to let block. De-tabified.
2008-01-29 Sven Neumann <sven@gimp.org>
Merged from gap-2-4:
* configure.in: use the same definition for LOCALEDIR as what the
Makefile in the po directory uses as the install location for the
message catalogs.
2007-10-14 Yannig Marchegay <yannig@marchegay.org>
* configure.in: Added 'oc' to ALL_LINGUAS.
2007-10-09 Sven Neumann <sven@gimp.org>
Merged from gap-2-2:
* gap/gap_wr_color_curve.c: fixed check for the number of parameters
(bug #466176).
2007-08-15 Adam Weinberger <adamw@gnome.org>
* configure.in: Re-add en_CA to ALL_LINGUAS.
2007-08-04 Sven Neumann <sven@gimp.org>
* gap/sel-to-anim-img.scm: applied patch from Saul Goode to make
the script work with Tiny-Fu.
2007-08-03 Sven Neumann <sven@gimp.org>
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
* gap/gap_wr_color_curve.c: added missing calls to
gimp_plugin_domain_register().
2007-08-03 Sven Neumann <sven@gimp.org>
* gap/gap_arr_dialog.c
* gap/gap_dbbrowser_utils.c
* gap/gap_fmac_main.c
* gap/gap_mov_dialog.c
* gap/gap_onion_dialog.c
* gap/gap_player_dialog.c
* gap/gap_resi_dialog.c: show help buttons conditionally.
Fixes bug #463074.
2007-08-03 Sven Neumann <sven@gimp.org>
* gap/gap_player_dialog.c
* gap/gap_story_properties.c
* gap/gap_story_dialog.c: applied patch from Thierry Moisan that
fixes typos in user-visible strings (bug #352351).
2007-07-31 Ignacio Casal Quinteiro <nacho.resa@gmail.com>
* configure.in: Added 'gl' to ALL_LINGUAS.
2007-07-30 Sven Neumann <sven@gimp.org>
* gap/gap_mod_layer_dialog.c: duplicate the strings attached to
menu items. Fixes bug #427487.
2007-07-29 Sven Neumann <sven@gimp.org>
* gap/gap_lib.c: applied patch from Wolfgang Hofer to fix bug #452080.
2007-07-29 Sven Neumann <sven@gimp.org>
* gap/gap_bluebox.c
* gap/gap_filter_pdb.c
* gap/gap_layer_copy.c
* gap/gap_lib.c
* gap/gap_morph_dialog.c
* gap/gap_morph_exec.c
* gap/gap_mov_render.c
* gap/gap_pview_da.c
* libgapvidapi/gap_vid_api.c
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c: applied patch from Saul Goode:
Release drawables using gimp_drawable_detach(). Fixes bug #451350.
2006-09-12 Pema Geyleg <pgeyleg@gmail.com>
* configure.in: Added dz in ALL_LINGUAS
2006-08-03 Jakub Friedl <jfriedl@suse.cz>
* gap/gap_story_att_trans_dlg.c: missing space in UI string
2006-07-17 Jakub Friedl <jfriedl@suse.cz>
* gap/gap_morph_dialog.c: Fixed English spelling in UI
translatable strings (koordinate->coordinate)
2006-07-12 Wolfgang Hofer <hof@gimp.org>
- flip transformation support is now also available for mask definitions.
- attempts to open an binary file for storyboard parsing
now limits the erros printed to standard out to printable
characters and stops logging to stdout if too much unprintables are detected.
(in case of accidently specified binary files the log output
of the parser can take much time and the full content is not from any interest)
(2006-07-03)
refactoring. (mask_elem is now part of stb_elem, mask definitions
are represented as track number 0 at editing (not in the render processor)
*gap/gap_story_file.c
*gap/gap_story_file.h
*gap/gap_story_main.h
*gap/gap_story_properties.c
*gap/gap_story_render_processor.c
*gap/gap_story_render_types.h
(2006-06-30)
player support to playback composite video
added playback button to storyboard transition attributes dialog
to visualize the transition effect.
This button triggers playback of composite video resticted
to the relevant track and range concerning the transition effect.
*gap/gap_story_att_trans_dlg.c
*gap/gap_story_dialog.c [.h]
*gap/gap_story_file.c [.h]
(2006-06-28)
refactoring: player_dialog spliited p_display_frame into
several subroutines.
refactoring: storyboard rendering is required
for the player (to provide rendering of composite video)
therefore moved functionality to new gap/story_* modules
and make them part of libgapstory.a
to prepare common use in player, storyboard dialog and encoders.
libgapstory.a now contains all modules of libgimpgap.a
(libgapstory uses those modules and each program had to include
both libs in correct order before this change)
* gap/Makefile.am
* vid_common/Makefile.am
* vid_enc_avi/Makefile.am
* vid_enc_ffmpeg/Makefile.am
* vid_enc_single/Makefile.am
* gap/gap_libgapstory.h
* gap/gap_lib_common_defs.h
* gap/gap_story_render_audio.c [.h] # NEW FILES
* gap/gap_story_render_processor.c [.h] # NEW FILES
* gap/gap_story_render_types.h # NEW FILES
* gap/gap_story_sox.c [.h] # NEW FILES
* gap/gap_player_dialog.c [.h]
* libgapvidutil/gap_gvetypes.h
* libgapvidutil/gap_gve_sox.c [.h]
* vid_common/gap_cme_gui.c
(2006-06-24)
- storyboard dialog shows correct framenumbers respecting overlapping.
- player now skips overlapping parts when storboard is played.
* gap/gap_story_*.c [.h]
* gap/gap_player_main.c [.h]
* gap/gap_player_dialog.c [.h]
(2006-06-19)
- rendering support of built in simple flip transformations in the pview
widget, and in all storyboard dialogs (including the player)
- bugfix: edit storyboard master properties must set unsaved changes flag.
* gap/Makefile.am
* gap/gap_lib_common_defs.h # NEW file created
* gap/gap_lib.h
* gap/gap_layer_copy.c [.h]
* gap/gap_player_main.c [.h]
* gap/gap_player_cache.c [.h]
* gap/gap_player_dialog.c [.h]
* gap/gap_pview_da.c.[.h]
* gap/gap_story_att_trans_dlg.c
* gap/gap_story_dialog.c
* gap/gap_story_properties.c
* gap/gap_vex_dialog.c
* libgapvidutil/gap_gve_story.c
(2006-06-18)
- Syntax definition, parsing, and saving for the new storyboard features
VID_* clips support built in transformations flip hor/ver/both,
and are able to refere to layer mask definitions.
MASK_* definition records to describe layer mask frames
VID_OVERLAP (is a new part of transition attribute,
allows overlap frames within the same track.)
- Storyboard processor implementation of overlap and flip features.
- Storyboard clip properties dialog: added radio buttons for
built in transformations (flip hor,ver and rotate by 180 degree)
- Storyboard clip properties dialog: added radio buttons for
built in transformations (flip hor,ver and rotate by 180 degree)
- Storyboard transition attributes dialog: added spinbutton
for overlapping number of frames within the same track,
and extended rendering of the preview by adding a prefetch
layer to the preview images in case overlapping is active.
* libgapvidutil/gap_gve_story.c [.h]
* gap/gap_story_properties.c
* gap/gap_story_main.h
* gap/gap_story_att_trans_dlg.c
(2006-06-14)
- added text docfiles to EXTRA_DIST makefile target
plug-in-gap-reverse.txt
plug-in-gap-storyboard-attr-prop.txt
- merged in changes from 2.2.1 release (mainline)
to my local new-feature-branch
* docs/reference/txt/Makefile.am
(2006-06-03)
Player layout changes:
- configure option to hide/show go button array and position scale
- use icons for the buttons to have more space for the frame preview
moved buttons right next the corresponding spinbuttons
(for shorter mouse move distances)
- shorter texts for checkbuttons
- time position (mm:sec:msec)
is shown next to the position scale widget in the same row
- use col/row spacing for layout of the player control widget table
(instead of hseperators)
Storyboard layout changes:
- Stock Buttons reduced in width (now showing only the icon)
this allows showing the full set both for the cliplist and the storyboard.
- progress bar is displayed right next to the stock buttons
(no more need to waste space for an extra layout row)
- use persitent Global storyboard settings via
automatically query/save settings as gimprc options.
- storyboard file format extension:
new (optional) record keyword: VID_MASTER_FRAME_ASPECT
implemented support for video frame aspect in the storyboard
dialog.
TODO: use the aspect in the encoder(s) too
(if video format is capable to handle aspect ratio)
currently the aspect is available in the ffmpeg specific encoder
but only via ffmpeg parameter settings and no connection
to get the aspect from the storyboard.
* images/Makefile.am
* images/gap-range-end.png
* images/gap-range-start.png
* images/gap-set-range-end.png
* images/gap-set-range-start.png
* images/gap-speed.png
* gap/gap_stock.c
* gap/gap_stock.h
* gap/gap_story_dialog.c
* gap/gap_story_syntax.h
* gap/gap_story_syntax.c
* gap/gap_story_file.c
* gap/gap_story_file.h
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
* docs/reference/txt/gap_gimprc_params.txt
* NEWS
(2006-05-31)
- basic implementation of player cache feature.
The player does now support a frame cache for any type of frames.
frames are cached at current preview size of the player.
(caching of frames at original size read from videofiles in the video API
is still supported too)
if the same sequence is played more than one time (loop mode)
it is now possible to do fast playback in best possible
display quality. (without using thumbnails).
* gap/Makefile.am
* gap/gap_player_dialog.c
* gap/gap_player_main.c
* gap/gap_player_main.h
2006-06-09 Sven Neumann <sven@gimp.org>
* Made 2.2.1 release.
2006-06-09 Sven Neumann <sven@gimp.org>
* configure.in: builds fine with gimp 2.3.9.
2006-06-07 Wolfgang Hofer <hof@gimp.org>
bugfix: no more check for int result of the already
removed gethostname call.
* gap/gap_story_dialog.c
2006-06-07 Sven Neumann <sven@gimp.org>
* vid_enc_avi/avilib.c (AVI_open_input_file): added missing
parameter to g_open(). Spotted by Michael Schumacher.
2006-06-07 Sven Neumann <sven@gimp.org>
* gap/gap_player_dialog.c: use g_open().
* vid_enc_avi/avilib.c: use g_open(); define flags used with open()
in case they are undefined (bug #344071).
2006-06-06 Sven Neumann <sven@gimp.org>
* configure.in: applied patch from Michael Schumacher to finally
fix linking problems with MinGW (bug #324854).
2006-06-02 Alexander Shopov <ash@contact.bg>
* configure.in (ALL_LINGUAS): Added "bg" (Bulgarian)
2006-05-31 Wolfgang Hofer <hof@gimp.org>
- bugfix: player framenr position hscale sometimes showed a non
actual framenumber value different from the framenr spinbutton
(both using the same adjstment).
* gap/gap_player_dialog.c
* gap/gap_player_main.c
* gap/gap_player_main.h
2006-05-31 Sven Neumann <sven@gimp.org>
* gap/gap_lib.c: include "gap_image.h" for gap_image_is_alive().
2006-05-31 Sven Neumann <sven@gimp.org>
* configure.in
* README: added check for glib >= 2.8.0.
2006-05-30 Wolfgang Hofer <hof@gimp.org>
- use glib file utility wrappers for posix functions
(fopen, chmod, mkdir, rename, remove)
* gap/gap_arr_dialog.c
* gap/gap_audio_wav.c
* gap/gap_base_ops.c
* gap/gap_decode_mplayer.c
* gap/gap_decode_xanim.c
* gap/gap_file_util.c
* gap/gap_filter_codegen.c
* gap/gap_fmac_main.c
* gap/gap_lib.c
* gap/gap_morph_exec.c
* gap/gap_mov_exec.c
* gap/gap_mpege.c
* gap/gap_story_file.c
* gap/gap_thumbnail.c
* gap/gap_vex_exec.c
* gap/gap_vin.c
* gap/gap_wr_color_curve.c
* gap/gimplastvaldesc.c
* libgapvidapi/gap_vid_api.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_mpeg3toc.c
* libgapvidapi/gap_vid_api_vidindex.c
* libgapvidutil/gap_gve_sox.c
* libgapvidutil/gap_gve_story.c
* libgapvidutil/gap_gve_xvid.c
* vid_common/gap_cme_callbacks.c
* vid_common/gap_cme_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
2006-05-30 Sven Neumann <sven@gimp.org>
* libgapvidapi/gap_vid_api_mpeg3toc.c
* libgapvidapi/gap_vid_api_util.c
* libgapvidutil/gap_gve_xvid.c: include <glib/gstdio.h>.
* vid_enc_avi/gap_enc_avi_gui.c: use gtk_widget_set_size_request()
instead of the deprecated gtk_widget_set_usize().
2006-05-30 Sven Neumann <sven@gimp.org>
* configure.in: use DISABLE_DEPRECATED for glib >= 2.11, pango >= 1.13
and gimp >= 2.3.8.
* gap/gap_audio_wav.c
* gap/gap_file_util.c
* gap/gap_lib.c
* gap/gap_navigator_dialog.c
* gap/gap_story_properties.c
* gap/gimplastvaldesc.c: include <glib/gstdio.h> instead of <stdio.h>.
2006-05-29 Wolfgang Hofer <hof@gimp.org>
- Fix for ffmpeg libnames on MinGW
( avformat.lib, avcodec.lib )
Should fix bug #324854.
- Replaced gethostname and stat
by OS-independent glib variants
g_get_host_name , g_stat
(should fix #342941 without the need to link
with winsock lib)
- fixed typos (#342973)
-
* configure.in: $LIBPREF
* gap/gap_story_dialog.c
* gap/gap_audio_wav.c
* gap/gap_bluebox.c
* gap/gap_file_util.c [.h]
* gap/gap_lib.c
* gap/gap_navigator_dialog.c
* gap/gap_pview_da.c [.h]
* gap/gimplastvaldesc.c
* libgapvidapi/gap_vid_api_mpeg3toc.c
* libgapvidapi/gap_vid_api_util.c
* libgapvidutil/gap_gve_xvid.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
2006-05-22 Sven Neumann <sven@gimp.org>
* configure.in: added missing call of AC_CANONICAL_HOST.
2006-05-19 Sven Neumann <sven@gimp.org>
* configure.in: added missing check for target architecture.
Should fix bug #324854.
2006-05-18 Wolfgang Hofer <hof@gimp.org>
fixed more than 40 typos (#342108)
* typo fixes in many files..
2006-05-16 Clytie Siddall <clytie@riverland.net.au>
* configure.in Added vi in ALL_LINGUAS line.
2006-05-14 Wolfgang Hofer <hof@gimp.org>
configure per default --disable-unix-frontends on WIN32 systems,
default on UNIX systems is --enable-unix-frontends.
* configure.in
2006-05-10 Wolfgang Hofer <hof@gimp.org>
- updated PDB regstration to gimp-2.2 PDB API,
where the menu path is specified via searate call to
gimp_plugin_menu_register.
(commented out gimp_plugin_menu_branch_register calls
to be compatible with the stable gimp-2.2.x versions)
* gap/gap_bluebox_main.c
* gap/gap_filter_main.c
* gap/gap_fmac_main.c
* gap/gap_frontends_main.c
* gap/gap_main.c
* gap/gap_morph_main.c
* gap/gap_name2layer_main.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_main.c
* gap/gap_player_main.c
* gap/gap_story_main.c
* gap/gap_vex_main.c
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
* gap/gap_wr_opacity.c
* gap/gap_wr_trans.c
* vid_common/gap_cme_main.c
2006-05-01 Wolfgang Hofer <hof@gimp.org>
fixes to make gimp-gap usable with the more restrictive
PDB checks that were introduced with the gimp-2.2.8 release.
the fix assumes that gimp core deletes unused image after
reconnecting the display.
The gimp-gap code no longer attempts to delete the old image if it has
become invalid.
using any valid layer id instead of -1 when calling
gap procedures via PDB that have unused drawable parameters.
(to satisfy the more restrictive PDB parameter checks of gimp-2.3.8)
This shall work in most cases and be compatible to gimp-2.2.x.
(it will fail for frame images that have no layer at all)
partly fixes bug #339840,
in some situations there are still error messages
caused by the restrictive checks.
One example is using a hot-key for fast stepping from frame to next frame,
that results in errors:
PDB calling error for procedure 'gimp_image_get_filename':
Argument 'image' (#1, type GimpImageID) out of bounds (validation changed '167' to '-1')
PDB calling error for procedure 'gimp-image-set-filename':
Argument 'image' (#1, type GimpImageID) out of bounds (validation changed '167' to '-1')
PDB calling error for procedure 'gimp-image-get-active-layer':
Argument 'image' (#1, type GimpImageID) out of bounds (validation changed '167' to '-1')
have not found yet whats wrong, because slow stepping via hot key works OK ?
GAP now makes additional checks for valid images in its main program, and rejects
both calls on invalid images and locked images.
(if the image_id is not found in the list delivered by gimp_image_list()
gap considers this as invalid image.
)
Probably it has to do with multiple concurrent prallel calls,
and the gimp_image_list is not always up to date in such situations.
- VCR Navigator dialog: support scroll event. (mouse wheel)
- PDB API for plug_in_gap_layers_run_animfilter was extended
(added the missing varying_flag.
useful for my private half automated testsuite)
- use GAP_VERSION_WITH_DATE (generated by configure.in) as config value
for gap plug-ins when registrating to the PDB.
(this replaces all local PLUG_IN_VERSION definitions)
* NEWS
* README
* configure.in
* gap/TESTPROT_iter_ALT
* gap/gap_filter.h
* gap/gap_filter_foreach.c
* gap/gap_filter_main.c
* gap/gap_frontends_main.c
* gap/gap_image.c [.h]
* gap/gap_lib.c
* gap/gap_lock.c
* gap/gap_main.c
* gap/gap_morph_main.c
* gap/gap_mov_dialog.c
* gap/gap_name2layer_main.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_main.c
* gap/gap_onion_worker.c
* gap/gap_player_dialog.c
* gap/gap_player_main.c
* gap/gap_story_dialog.c
* gap/gap_vex_main.c
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
* gap/gap_wr_opacity.c
* gap/gap_wr_trans.c
* gap/sel-to-anim-img.scm
* libgapvidapi/gap_vid_api_gimp.c
* libgapvidutil/gap_gve_misc_util.c
* vid_common/gap_cme_main.c
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* vid_enc_single/gap_enc_singleframes_main.c
added gap/gap_story_att_trans_dlg.c to POTFILES.in
because it contains translation relevant message texts.
* po/POTFILES.in
2006-04-18 Wolfgang Hofer <hof@gimp.org>
applied patch provided with #338556
* gap/gap_mod_layer.c [.h]
* gap/gap_mod_layer_dialog.c
* docs/reference/txt/plug-in-gap-modify.txt
2006-04-14 Wolfgang Hofer <hof@gimp.org>
applied patch provided with #337441
* gap/gap_base_ops.c [.h]
* gap/gap_main.c
* docs/reference/txt/plug-in-gap-reverse.txt # new file
* docs/reference/txt/plug-in-gap-shift.txt
* docs/reference/txt/plug-in-gap-storyboard-attr-prop.txt # new file
* docs/reference/txt/INTRODUCTION.txt
2006-04-12 Wolfgang Hofer <hof@gimp.org>
bugfix #337587: check version in the autogen.sh script
(using separate checks for major, minor micro version)
bugfix: on videoindex creation.
- video indexes created in normal time were droped after switch to
daylight saving time even if the videofile was not modified
since videoindex creation.
- dialogs for video index creation show wrong filename
for the index. The video track number that is part of the
vidoindex filename must use the internal
track number that starts at 0, but dialogs show the external
representation starting at 1.
(keeping the suffix .0.libavformat.gvaidx to be compatible
with already existing video indexes)
* autogen.sh
* libgapvidapi/gap_vid_api_vidindex.c
2006-04-08 Wolfgang Hofer <hof@gimp.org>
- bugfix gap_layer_clear_to_color
, restore original BG color)
- replaced private implementation p_layer_resize_to_imagesize
by gimp_layer_resize_to_image_size that does the same.
- use color range 0.0 to 1.0 for internal calculations in storyboard processing.
- storyboard dialog: added graphic views of the attributes
at start and end frame in the treansition attribute properties dialog.
* gap/gap_pview_da.c [.h]
* gap/gap_lib.c [.h]
* gap/gap_layer_copy.c [.h]
* gap/gap_vex_exec.c
* libgapvidutil/gap_gve_story.c [.h]
* gap/gap_story_att_trans_dlg.c [.h]
2006-04-06 Wolfgang Hofer <hof@gimp.org>
- storyboard processing: VID_FIT_SIZE record
is internally handled as transition attribute.
(now we have only ony type of attribute,
the attribute dialog support for fit_size is not implemented yet.)
* gap/gap_story_dialog.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_story_main.h
* libgapvidutil/gap_gve_story.c
2006-04-02 Wolfgang Hofer <hof@gimp.org>
- extract video range dialog: added labels to display
From and To Frames as time code mm:ss:ms
- added storyboard dialog icon for transition attributes
* gap/gap_vex_dialog.c
* gap/gap_vex_main.h
* images/gap-story-icon-transition-attr.png # new icon
* images/Makefile.am
2006-03-31 Wolfgang Hofer <hof@gimp.org>
- bugfix: storyboard processing changed the calculation of
layer offsets. (the old code had bugs, and assumed that
gimp_edit_paste
would center the pasted layer within the destination layer
which is not true with gimp-2.2.10)
The new calculation includes centering and scrolling
according to the MOVE_Y/MOVE_Y attribute settings of the
storyboard file and only uses this self calculated offest.
- Storyboard dialog support to edit transition attributes
(MOVE X/Y ZOOM X/Y and OPACITY) of the storyboard file.
Added menu to create a transition attribute (as last element)
Right mouse button on the transition attribute's thumbnail
also opens the new transition attributes properties dialog.
* gap/gap_story_att_trans_dlg.c [.h] # NEW files
* gap/Makefile.am
* gap/gap_story_file.c [h]
* gap_story_dialog.c
* gap/gap_story_main.h
* gap/gap_story_properties.c
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
* libgapvidutil/gap_gve_story.c
* NEWS
2006-03-28 Wolfgang Hofer <hof@gimp.org>
- internal changes of the storyboard file handling and processing
(attributes MOVE X/Y ZOOM X/Y and OPACITY are now handled
as one common TRANSITION attribute,
for the planed basic GUI support of those transformations)
* gap/gap_story_file.c [h]
* libgapvidutil/gap_gve_story.c
* gap/gap_player_dialog.c
* gap/gap_story_dialog.c
2006-03-19 Wolfgang Hofer <hof@gimp.org>
player dialog: support step/backstep frame via scroll event.
(mouse wheel)
storyboard dialog: support scroll event.
* gap_player_dialog.c
* gap_story_dialog.c
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete entry for no_NO.
* po/no.po: And the translation.
2006-03-11 Wolfgang Hofer <hof@gimp.org>
- bugfix for selection handling via modify frames (#333978)
* gap/gap_mod_layer.c [.h]
* gap/gap_mod_layer_dialog.c
2006-03-02 Wolfgang Hofer <hof@gimp.org>
- added more functions to modify frames
(based on the attachments of
feature requests #332689 #332959)
plus function to apply filter on layermask.
- frames convert: changed default extension from ".tif" to ".jpg"
* gap/gap_mod_layer.c [.h]
* gap/gap_mod_layer_dialog.c
* gap/gap_main.c
* gap/gap_range_ops.c
* docs/reference/txt/plug-in-gap-modify.txt
* NEWS
2006-02-28 Wolfgang Hofer <hof@gimp.org>
- could not reproduce bug #332689 that causes crash
on duplicate frame operations, but made attempt to fix.
The stacktrace applied to that bug points to a problem
related to g_free for the thumbnail.
now using g_object_unref instead of g_free to free up
GimpThumbnail objects.
* gap/gap_story_file.c [.h]
2006-02-10 Wolfgang Hofer <hof@gimp.org>
- storyboard support to act as drag and drop destination for
image files and video clips
application internal copy and move of clips is also supported.
- render default icon dependent to type of the clip.
(use png images for the default icons)
* gap/gap_story_properties.c
* gap/gap_story_file.c [.h]
* gap/gap_story_dialog.c
* gap/gap_pview_da.c [.h]
* gap/gap_story_main.h
* NEWS
* docs/reference/txt/plug-in-gap-storyboard-edit.txt
* images/Makefile.am
* images/gap-story-icon-movie.png
* images/gap-story-icon-frames.png
* images/gap-story-icon-animimage.png
* images/gap-story-icon-image.png
* images/gap-story-icon-color.png
* images/gap-story-icon-default.png
2006-02-05 Wolfgang Hofer <hof@gimp.org>
- bugfix: AVI RAW encoding did not work
(used XVID encoding but declared as "RAW " in the AVI file)
or delivered:
ERROR: GAP AVI encoder CODEC RAW delivered empty buffer at frame
(in case when compiled without XVID support)
added checkbutton for vertical flip
(player like WinDVD wants raw AVI vflipped,
gmplayer on linux want same order of rows than gimp)
* vid_enc_avi/gap_enc_avi_main.c [.h]
* vid_enc_avi/gap_enc_avi_gui.c [.h]
2006-02-04 Wolfgang Hofer <hof@gimp.org>
- bugfix: in procedure on_vid_preview_size_allocate
(dont access the gpp->ainfo_ptr befor the == NULL check)
* gap/gap_player_dialog.c
- attempt to fix #326201 (MinGW link problem with ffmpeg.)
(not yet tested with MinGW, i have no win development environment)
* configure.in
- fixed typos reported by Fabrizzio Mellerti
* gap/gap_mov_dialog.c
* gap/gap_navigator_dialog.c
* gap/gap_vex_dialog.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
2005-12-03 Wolfgang Hofer <hof@gimp.org>
gap file util must use the binary file type open mode
(consequent usage of fopen(file, "rb");)
* gap/gap_file_util.c [h]
2005-11-20 Wolfgang Hofer <hof@gimp.org>
fixed bug when building with libmpeg3.
AC_SUBST(GAP_PTHREAD_LIB) required due to deferred expansion
introduced with patch for bug #321348.
* configure.in: # added AC_SUBST(GAP_PTHREAD_LIB)
2005-11-15 Sven Neumann <sven@gimp.org>
* configure.in: bumped version to 2.2.1.
2005-11-15 Sven Neumann <sven@gimp.org>
* configure.in
* gap/Makefile.am
* libgapvidutil/Makefile.am
* vid_common/Makefile.am
* vid_enc_avi/Makefile.am
* vid_enc_ffmpeg/Makefile.am
* vid_enc_single/Makefile.am: applied patch that fixes the build
for srcdir != builddir (bug #321348).
2005-11-15 Sven Neumann <sven@gimp.org>
* gap/Makefile.am
* libwavplayclient/client.c
* libwavplayclient/msg.c
* libwavplayclient/wpc_msg.c
* vid_common/Makefile.am
* vid_enc_avi/Makefile.am
* vid_enc_ffmpeg/Makefile.am
* vid_enc_single/Makefile.am: aplied patch that fixes build issues
on Cygwin (bug #321347).
2005-11-01 Wolfgang Hofer <hof@gimp.org>
- bugfix: matching end of string did not work for stringlength
equal to pattern length.
changes for UTF8 support (bugzilla #319710)
- added utf8 support for simple gap layername matching
and frame number substitution in layernames.
now checks for utf8 compliance using g_utf8_validate
and take care of multibyte characters when
iterating layername or pattern strings.
- active layer tracing: support utf8 encoded layernames
(gap_lib.c p_set_active_layer_by_name)
* gap/gap_match.c
* gap/gap_lib.c
2005-10-28 Sven Neumann <sven@gimp.org>
* Made 2.2.0 release.
2005-10-28 Sven Neumann <sven@gimp.org>
* configure.in: pass $CC to the ffmpeg configure script, check for
native Win32.
* gap/Makefile.am: another try at getting the link order right.
Pass -mwindows to the linker on Win32.
2005-10-26 Wolfgang Hofer <hof@gimp.org>
- added GimpProgressBar to the VCR Navigator dialog
to display progress in this dialog rather than
in the invokining image. (bug # 135185)
- bugfix: player stand alone mode without progress_bar
when have no progress_bar must init gpp->progress_bar
with NULL
fixes warnings to stdout:
(gap_player_dialog:17992): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `GtkProgressBar'
(gap_player_dialog:17992): Gtk-CRITICAL **: gtk_progress_bar_set_text: assertion `GTK_IS_PROGRESS_BAR (pbar)' failed
- bugfix: player click on go-button printed critical warning
(only if click results in loading a frame into the invoking image)
(gap_player_dialog:19725): GLib-GObject-CRITICAL **: g_object_get_data: assertion `G_IS_OBJECT (object)' failed
* gap/gap_navigator_dialog.c
* gap/gap_player_dialog.c
2005-10-25 Sven Neumann <sven@gimp.org>
* gap/gap_arr_dialog.c (combo_create_value): use g_object_new() to
create an empty combobox to avoid compiler warnings with gimp-2.3.
2005-10-25 Sven Neumann <sven@gimp.org>
* gap/gap_lib.c
* gap/gap_match.c: use g_ascii_toupper() instead of toupper().
2005-10-23 Wolfgang Hofer <hof@gimp.org>
- bugfix typo in messages (#318856)
* gap/gap_story_file.c
* vid_common/gap_cme_gui.c
2005-10-08 Wolfgang Hofer <hof@gimp.org>
- player: do not always print the framerange to stdout
now restricted to explicite request via clicking From/To Frame buttons
when the player is NOT embedded into storyboard dialog.
- bugfix for color curves wrapper dialog.
fixed init size of entry widget for curves file.
(after porting to gtk_widget_set_size_request
the height of 0 resulted in 1 pixel height
that made the entry unusable)
- bugfix: dont call gtk_widget_set_size_request wit -2 as height value
(fixes warnings Gtk-CRITICAL **: gtk_widget_set_size_request: assertion `height >= -1' failed)
- disable some debug output to stdout
- Storyboard dialog: clip properties uses previous filename
when th dialog is creating a new clip.
(fixes Gtk-CRITICAL **: gtk_file_selection_set_filename: assertion `filename != NULL' failed
warning)
- repeated filter all layers test with gimp-2.2.8 and gtk+-2.6.7
* gap/gap_wr_color_curve.c
* gap/gap_vex_dialog.c
* vid_common/gap_cme_gui.c
* gap/gap_story_dialog.c
* gap/gap_story_properties.c
* gap/gap_player_dialog.c
* gap/TESTPROT_iter_ALT
2005-10-07 Wolfgang Hofer <hof@gimp.org>
use GThread instead of pthread (fixes bug #318045)
Note: pthread is still required for the libmpeg3.
The configure.in script now checks for pthread library
and disables libmpeg3 if pthread is not available.
The new configure option
--with-preinstalled-libmpeg3incdir=/usr/local/include
--with-preinstalled-libmpeg3=/usr/local/lib/libmpeg3.a
allows to build GIMP-GAP with already installed libmpeg3
for those who use newer gcc (and cannot compile libmpeg3 that requires
older gcc 3.3, but already have libmpeg3-1.5.4 installed)
.. Carol reported such a situation ...
But those options work WITHOUT reliable checks.
(I failed once again to to write clean library checks for that beast,
that is the reason why it was added as sourcecode, but i did not
know about the compile problems with newer gcc 4.x versions,
and i dont want to drop libmpeg3 because it can parse DVD typical .ifo
files and supports compressed frame access
that is required for GIMP-GAP's lossless mpeg cut feature ...)
Specify those options on your own risk,
wrong libmpeg3 versions may build, but crash at runtime...
* configure.in
* libgapvidapi/gap_vid_api.h
* libgapvidapi/gap_vid_api.c
* libgapvidapi/gap_vid_api_gimp.c
* libgapvidutil/gap_gvetypes.h
* vid_common/Makefile.am
* vid_common/gap_cme_callbacks.c
* vid_common/gap_cme_main.c
* vid_common/gap_cme_gui.c
* vid_common/gap_cme_gui.h
2005-10-05 Sven Neumann <sven@gimp.org>
* vid_common/gap_cme_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c: undeprecated.
2005-10-05 Sven Neumann <sven@gimp.org>
* gap/Makefile.am (*_LDADD): reordered libraries.
2005-10-05 Sven Neumann <sven@gimp.org>
* gap/gap_file_util.c (gap_file_make_abspath_filename): fixed
compilation on G_OS_WIN32; include <string.h>.
2005-10-05 Sven Neumann <sven@gimp.org>
* gap/gap_dbbrowser_utils.c
* gap/gap_fmac_main.c
* gap/gap_morph_dialog.c
* gap/gap_navigator_dialog.c
* gap/gap_resi_dialog.c
* gap/gap_story_dialog.c
* gap/gap_story_properties.c
* gap/gap_vex_dialog.c
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c: undeprecated.
2005-10-05 Sven Neumann <sven@gimp.org>
* configure.in (CPPFLAGS): do not disable APIs that may be
deprecated in the future.
2005-10-05 Sven Neumann <sven@gimp.org>
* configure.in: check if the libmpeg3 code can be compiled (it
doesn't compile with gcc 4.0 for example).
2005-10-05 Sven Neumann <sven@gimp.org>
* README
* configure.in: cosmetic changes.
2005-09-27 Sven Neumann <sven@gimp.org>
* configure.in: applied patch by Wolfgang Hofer that adds a check
for libxvidcore.
2005-09-23 Sven Neumann <sven@gimp.org>
* gap/gap_morph_dialog.c
* gap/gap_player_dialog.c: fixed compilation errors.
2005-09-23 Sven Neumann <sven@gimp.org>
* autogen.sh: prefer newer version of automake over older ones.
2005-09-22 Wolfgang Hofer <hof@gimp.org>
- added sourcecode of external_libs (libmpeg3 and ffmpeg)
as gzipped tarballs.
Those libs are now automatically configured, built
and linked statically with the gimp-gap plug-ins
(as convenience libraries).
configure options for the external libs can be
specified via files:
extern_libs/configure_options_ffmpeg.txt
extern_libs/configure_options_libmpeg3.txt
- removed configure support for linking
libavformat and libavcodec with already installed
libraries.
(the removed code did not properly check
and was limited to fixed installation dirs)
* configure.in
* Makefile.am
* README
* extern_libs # newly added directory
* extern_libs/Makefile.am
* extern_libs/configure_options_ffmpeg.txt
* extern_libs/configure_options_libmpeg3.txt
* extern_libs/README_extern_libs
* extern_libs/ffmpeg.tar.gz
* extern_libs/libmpeg3.tar.gz
2005-09-09 Rajesh Ranjan <rajeshkajha@yahoo.com>
* configure.in : Added "hi" to ALL_LINGUAS.
2005-09-07 Wolfgang Hofer <hof@gimp.org>
- bugfix: typo's pointed out in bug #313965
- bugfix in generation of original tone audio track.
Must fetch the original framerate of the videoclips
(VID_PLAY_MOVIE)
for creating the corresponding audioclips
and supply this framerate parameter in the generated
AUD_PLAY_MOVIE record.
This is necessary to ensure correct timing if the
handled clips have different framerates or framerates
other than the gimp-gap default of 25 fps.
- ffmpeg encoder change progress text if frames are copied
rather than encoded. this gives immediate feedback if
the "dont recode" option is in affect or not.
(e.g if lossless mpeg cut is active)
- renamed internal procedure to p_flip_separators
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* gap/gap_story_file.c
* gap/gap_decode_mplayer.c
* gap/gap_decode_xanim.c
* gap/gap_frontends_main.c
* gap/gap_vex_main.c
2005-09-06 Wolfgang Hofer <hof@gimp.org>
bugfix MasterVideo encoder OK button did not work in case
of encoding with a single audio inputfile.
(init of local variables was missing:
all_playlist_references and valid_playlist_references)
* libgapvidutil/gap_gve_sox.c
2005-09-06 Wolfgang Hofer <hof@gimp.org>
- storyboard properties: added filtermacro entry widget
(TODO: add button to invoke a filesel widget)
* gap/gap_story_main.h
* gap/gap_story_properties.c
2005-09-06 Ankit Patel <ankit644@yahoo.com>
* configure.in : Added "gu" to ALL_LINGUAS.
2005-08-21 Jens Seidel <jseidel@cvs.gnome.org>
- fixed a typo (s/occured/occurred/) in a few msgid strings and other
files (inclusive all translations).
2005-08-18 Jens Seidel <jseidel@cvs.gnome.org>
- fixed a typo (s/seperate/separate/) in a msgid string and other
files (inclusive all translations).
2005-07-24 Wolfgang Hofer <hof@gimp.org>
- extended the FFMPEG based video encoder to support encoding
multiple tracks.
Video is still limited to one track, but multiple
audiotrack encoding is supported as hidden feature.
To use that feature, just pass a textfile
with references to multiple audio wavefiles instead of
one audio file to this encoder.
- fixed bug related to checking for valid RIFF WAVE file format.
(relevant for audiofiles with additional chunk(s) before the data
chunk)
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* libgapvidutil/gap_gve_sox.c
* libgapvidutil/gap_gve_story.c [.h]
* gap/gap_audio_wav.c [.h]
* gap/gap_file_util.c [.h]
* gap/gap_libgimpgap.h
* vid_common/gap_cme_gui.c
* docs/reference/txt/plug-in-gap-vid-encode-master.txt
* po/POTFILES.in
2005-07-23 Wolfgang Hofer <hof@gimp.org>
check for errors while writing audio files.
in case of error print the error message and exit
* gap/gap_audio_wav.c
* libgapvidutil/gap_gve_story.c
2005-07-21 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Added ne in ALL_LINGUAS
2005-05-22 Wolfgang Hofer <hof@gimp.org>
- some of the mplayer options (-aofile -jpeg -z) of the mplayer version 1.0pre5
dont work with mplayer version 1.0pre7 (dont know about pre6 release)
i updated to the new options, but added a checkbox labeled Mplayer1.0pre5
in the dialog of the mplayer based frame extract plug-in
that still allows switching back to the old options
(you need this only in case you still run mplayer version 1.0pre5)
examples of the new option syntax:
mplayer -vo png:z=9 -ss 00:00:14 -frames 25 videoinput.rm
mplayer -vo jpeg:quality=92:smooth=70 -ss 00:00:14 -frames 150 videoinput.rm
* gap/gap_decode_mplayer.c [.h]
2005-05-11 Iñaki Larrañaga <dooteo@euskalgnu.org>
* configure.in: Added "eu" (Basque) to ALL_LINGUAS.
2005-05-01 Wolfgang Hofer <hof@gimp.org>
- added new wrappers to support layer transformations
(flipping and simple rotate)
for the useage in animated filtercalls and filtermacro.
* gap/Makefile.am
* gap/gap_wr_trans.c # new file
* gap/.cvsignore
* po/POTFILES.in
2005-04-17 Wolfgang Hofer <hof@gimp.org>
- added docs/*/txt/*.txt files as EXTRA_DIST stuff
(created Makefile.am in the docs subdir)
and some minor fixes to make distdir work
- added missing filenames to POTFILES.in
(thanks to Marcel Telka for pointing that out)
vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c
vid_enc_ffmpeg/gap_enc_ffmpeg_par.c
* README
* NEWS
* Makefile.am
* gap/Makefile.am
* configure.in
* po/ChangeLog
* po/POTFILES.in
2005-04-13 Sven Neumann <sven@gimp.org>
* autogen.sh: updated; require automake >= 1.7.
* configure.in: removed cruft that was needed for automake 1.6 only.
2005-04-09 Wolfgang Hofer <hof@gimp.org>
- disabled some hardcoded debug output.
- MovePath: new feature for advanced reset and grabbing a gimp path.
When The SHIFT Key is held down while the "Grab Path" button is
pressed the path is grabbed in a way that results in one
controlpoint per handled frame.
The moving object may follow the bezier path in more precise
manner (not just straight lines between the anchor points),
when the move path operation affects many frames.
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_util.c
* vid_enc_single/gap_enc_singleframes_main.c
* libgapvidutil/gap_gve_story.c
* gap/gap_mov_dialog.c
* gap/gap_morph_dialog.c
* docs/reference/txt/plug-in-gap-move-path.txt
* NEWS
2005-04-04 Wolfgang Hofer <hof@gimp.org>
2005-04-04:
- replaced some deprecated calls
(gimp_rotate, gimp_perspective, gimp_drawable_image_id
(thanks to carol for pointing out)
* gap/gap_pdb_calls.c
* gap/gap_mov_render.c
* gap/gap_filter_codegen.c
2005-03-29:
- added new configure options:
--with-ffmpegsrcdir=DIR specify where to find ffmpeg src directory DIR
--with-libmpeg3srcdir=DIR specify where to find libmpeg3 src directory DIR
those options may be used for static linking ffmpeg and libmpeg3
from their sourcetree without the need to install those libs.
(you have to configure / make both libs manually before
configure gimp-gap)
The new options are primary for internal use on my development
machine, but can be also used to create gimp-gap binaries
without dependencies to libavformat, libavcodec and libmpeg3.
There still should be more sophisticated checks for the
case where the user wants to compile with installed versions
of those libs.
* configure.in
* README
2005-03-24:
- added new configure options:
--with-ffmpegsrcdir=DIR specify where to find ffmpeg src directory DIR
--with-libmpeg3srcdir=DIR specify where to find libmpeg3 src directory DIR
those options may be used for static linking ffmpeg and libmpeg3
from their sourcetree without the need to install those libs.
(you have to configure / make both libs manually before
configure gimp-gap)
(i droped the plan to include the tarballs of those libs)
but this may cause problems
- new feature: ffmpeg video encoder now supports
save/load paramters to/from parameterfile
- NON-interactive PDB interface to set parameters
changed.
(instead of passing all the parameters
the caller has to pass the name of an
ffmpeg video encoder parameterfile).
- reorganized notebook widget of the
FFMPEG Video Encode Parameters dialog window.
Added New Tab: Expert Flags
IntraOnly, GOP, B-Frames and Aspect moved to
the "Basic Options" Tab.
- GUI support for many new ffmpeg encoder parameters
(depends on LIBAVCODEC_BUILD >= 4744)
- Tried to provide encoder presets
(based on ffmpeg.c code reading) but most of the preset values
are still a wild guess.
Algorithms Tab:
added algoritmhm combo boxes:
-Macroblock cmp
-ildct cmp
-Fullpel cmp
-Subpel cmp
-Pre motion estimation Cmp
-frame_skip_cmp
-predictor
-coder
Expert Flags Tab:
added checkbuttons for new flags:
-use_ss; "enable Slice Structured mode (h263+)"
-use_aiv; "enable Alternative inter vlc (h263+)"
-use_obmc; "use overlapped block motion compensation (h263+)"
-use_loop; "use loop filter (h263+)"
-use_alt_scan; "enable alternate scantable (MPEG2/MPEG4)"
-use_trell; "enable trellis quantization"
-use_mv0; "try to encode each MB with MV=<0,0> and choose the better one (has no effect if mbd=0)"
-do_normalize_aqp; "normalize adaptive quantization"
-use_scan_offset; "enable SVCD Scan Offset placeholder"
-closed_gop; "closed gop"
-strict_gop "strictly enforce GOP size"
-use_qpel; "enable 1/4-pel"
-use_qprd; "use rate distortion optimization for qp selection"
-use_cbprd; "use rate distortion optimization for cbp"
-do_interlace_dct; "use interlaced dct"
-do_interlace_me; "interlaced motion estimation"
The current FFMPEG version has lots of video encoder parameters
(more than 100)
but most of them i dont know what they are used for.
I think most of the parameters can be set to default value
unless you are an ffmpeg expert.
Some of the new parameters are not supported in the
video encoder parameter GUI, but support via
parameterfile is implemented.
FFMPEG experts can edit the parameterfile
and then load the edited parameterfile.
* vid_enc_ffmpeg/Makefile.am
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_par.c [.h] # new files
2005-03-19:
made gap_vin procedures and types public and
fit for common use to read/write other parameter files.
* gap/gap_vin.c [.h]
2005-03-16:
- ffmpeg Params updated GUI for those params that
allow additional values in ffmpeg versions >= 0.4.9
DCT algorithm "faan"
IDCT algorithms "sh4", "simplearm", "h264"
the new param values can be set from GUI when linked with
sufficient ffmpeg CVS version (LIBAVCODEC_BUILD >= 4744)
- bugfix attempt: try to detect aspect ratio with ffmpeg >= 0.4.9
when reading video
(by additional reading AVCodecContext.dtg_active_format
information, but this does not work either)
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* libgapvidapi/gap_vid_api_ffmpeg.c
2005-03-13:
- bugfix: lossles mpeg cut:
fixed check for required framesequence to copy P and B frames
(compare used assign operator (= / == missmatch))
* libgapvidutil/gap_gve_story.c
2005-04-01 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-12 Wolfgang Hofer <hof@gimp.org>
- bugfix: #169311
Player must not display onionskin layers for the current image
when the Option "Auto delete before save" is ON.
- bugfix: #169320
when automatic onionskinlayer creation is turned on
store active_layer before the onionskin layers are added
and restore active_layer before save.
Without this fix one of the added onionskin layers is
stored as the active layer in the saved file.
This did break the workflow when the frame is loaded later on.
new feature:
tracking of the active_layer by name (as described in bug #169320)
and by layerstack position can be configured in the VCR Navigator dialog
(The configuration value is stored in the _vin.gap file.
therefore the scope is permanent per animation and independent
from automatic onionskin layer creation)
(active_layer_tracking 0) # 0: OFF 1: by name 2: by stackposition
- bugfix: when Player is used as widget
in another dialog, its shell_window is null.
dont try to handle resize for shell_window when its a NULL pointer.
fixes warnings like that:
(storyboard:24245): Gtk-CRITICAL **: file gtkwindow.c: line 3044
(gtk_window_set_default_size): assertion `GTK_IS_WINDOW (window)' failed
* gap/gap_player_dialog.c
* gap/gap_onion_base.c [.h]
* gap/gap_lib.c
* gap/gap_player_main.c [.h]
* gap/gap_vin.c [.h]
* gap/gap_navigator_dialog.c
* docs/reference/txt/plug-in-gap-navigator.txt
* NEWS
2005-03-05 Wolfgang Hofer <hof@gimp.org>
- ffmpeg-CVS (snapshot from 2005.03.02) based encoder:
initalize values for the encoder options that are new
in this ffmpeg CVS snapshot
this fixes "buffer underflow" errors that were reported
(more than once per encoded frame) to stdout
by the encoder while executing av_write_frame.
GAP provides now explicite support for ffmpeg library versions:
0.4.8 (stable)
0.4.9pre1 (latest official)
CVS Snapshots equal or newer than 2005.03.02
(identified by LIBAVCODEC_BUILD 4744
GAP internal marked as #define HAVE_FULL_FFMPEG)
(GUI support to edit the new options is still missing)
- bugfix: Storyboard processing.
skipping the analyze of already known video elements
did not work and made processing slower.
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* libgapvidutil/gap_gve_story.c
2005-02-27 Wolfgang Hofer <hof@gimp.org>
- bugfix (attempt) ffmpeg-0.4.9 frame aspect handling at encoding
did not work.
(the bugfix follows the code of ffmpeg.c without understanding
but seems to work)
BUT: aspect detection at read access does not work with ffmpeg-0.4.9
(dont know why, seems to be a bug in ffmpeg-0.4.9)
- bugfix: lossless MPEG cut with ffmpeg-0.4.9 based encoder:
workaround encodes a dummy frame
for each 1:1 copied frame to keep codec internal handled
timestamps and picturenumbers up to date.
(newer versions of ffmpeg do require ascending timestamsps
and will not work if the codec is completely bypassed
for those frames.)
lossles mpeg cut now works with both ffmpeg-0.4.8 ffmpeg-0.4.9
and more recent ffmpeg CVS snapshots.
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
2005-02-19 Wolfgang Hofer <hof@gimp.org>
- bugfix: STORYBOARD processing fixed crash that happened
sometimes after creating the composite audiofile.
(aud_elem->tmp_audiofile pointers did refere to the same
adress that was g_free'd more than one time)
- bugfix: STORYBOARD processing of AUD_PLAY_MOVIE records
from:000001 to:000002 resulted in too short duration time
of just one frame.
now results in duration time for 2 frames to match with
the video duration time that is 2 frames in that case.
* gap/gap_story_file.c
* libgapvidutil/gap_gve_story.c
* README
2005-02-05 Wolfgang Hofer <hof@gimp.org>
- API for video read access now also compiles and works with
ffmpeg-0.4.9pre1 (and should also work with recent CVS snapshots
tested with FFMpeg-20050120 CVS snapshot)
existing videoindexes that are based on ffmpeg-0.4.8 will
not work after upgrade to ffmpeg-0.4.9 or later versions.
therefore it is recommanded to delete the old indexes,
and create new ones based on the new version of ffmpeg.
To delete videoindexes on UNIX use these commands:
cd $HOME/.gimprc/gvaindexes
rm *.libavformat.gvaidx
* libgapvidapi/gap_vid_api_ffmpeg.c
2005-01-30 Wolfgang Hofer <hof@gimp.org>
Help Buttons for storyboard pop-up dialogs
"master properties" and "generate original tone audio"
Videoaccess parameter exactseek now defaults to value 0.
(allow videoindex based fast seek operations)
value 1 forces the (very slow) sequential reads.
- disabled some further debug printfs
- tested filter all layers with gimp-2.2.3
plug_in_noisify_iter_ALT
plug_in_wr_curves
- bugfix: gap/gap_wr_color_curve.c calling gimp_dialog_new
with help_function but help_id == NULL resulted in
errors and crash of the plug-in
(wr_curves:4630): Gdk-CRITICAL **: file gdkscreen-x11.c: line 232 (gdk_screen_get_root_window): assertion `GDK_IS_SCREEN (screen)' failed
- ffmpeg (0.4.8) encoder presets:
dont use motion_estimation algorithm "Full" any longer in the presets
and replaced those settings with "EPZS"
(it makes encoding much slower, and seems not to deliver better
quality, even worse it has problems on fast moving dark objects
that are sometimes encoded fully black, resulting
in visible annoying black blocks.)
* gap/gap_story_main.h
* gap/gap_story_dialog.c
* gap/gap_story_file.c
* gap/gap_vex_dialog.c
* gap/gap_vex_exec.c
* gap/gap_fmac_main.c
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_huesat.c
*
* gap/TESTPROT_iter_ALT
* libgapvidutil/gap_gve_story.c
* libgapvidapi/gap_vid_api_ffmpeg.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* gap/gap_filter_iterators.c
* gap/iter_ALT/gen/plug_in_noisify_iter_ALT.inc
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
* docs/reference/txt/plug-in-gap-storyboard-gen-otone.txt # NEW file
* docs/reference/txt/plug-in-gap-storyboard-master-prop.txt # NEW file
* docs/reference/txt/plug-in-wr-curves.txt # NEW file
* docs/reference/txt/plug-in-wr-color-levels.txt # NEW file
* docs/reference/txt/plug-in-wr-huesat.txt # NEW file
2005-01-22 Wolfgang Hofer <hof@gimp.org>
- Storyboard dialog: added key support for crtl-c,ctrl-x,ctrl-v (copy/cut/paste)
* gap/gap_story_dialog.c
* gap/gap_story_mian.h
2005-01-15 Wolfgang Hofer <hof@gimp.org>
- bugfix: Storyboard dialog: after save as, and encoder call:
the encoder was called with the OLD name!
- gap_arr_dialog replaced global data to enable 2 pop-ups
created with gap_arr_dialog open at same time.
(fixes some bugs from my internal list
related to the storyboard dialog that does use
2 or more arr_dialog based pop-ups)
* gap/gap_story_dialog.c
* gap/gap_arr_dialog.c
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
2005-01-14 Wolfgang Hofer <hof@gimp.org>
- STORYBOARD Processing:
Show progress while analyzing storyboard files and while
extracting audioparts of videofiles to temporary audiofiles
for creating the composite audio track.
- GVA workaround for libmpeg3 crash on close bug (limited to UNIX systems).
the workaround forks a child process with its own sgnal handler.
the child process tries open/close. Crashes are then caught
in the signal handler of the child process and tell the parent
process (via retcode) that this videofile cant be handled by libmpeg3.
This workaround makes open safe but slow
(mainly caused by additional open/close rather than by forking).
but with gimprc parameter:
(video-workaround-for-libmpeg3-close-bug "no")
the workaround can be skipped.
* vid_common/gap_cme_gui.c
* libgapvidutil/gap_gve_story.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api.c
* docs/reference/txt/gap_gimprc_params.txt
* NEWS
2005-01-13 Wolfgang Hofer <hof@gimp.org>
- Storyboard added feature to generate audio original tone
cut references in the storyboard file
for all the clips refering to videofiles.
* gap/gap_story_dialog.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_story_main.h
* docs/reference/txt/plug-in-gap-storyboard-edit.txt
2005-01-12 Wolfgang Hofer <hof@gimp.org>
- Master Videoencoder: added button 'Create Composite Audiofile'
this starts the long running audio mixdown for storyboard processing.
in the old behaviour this was started implicite when a new
storyboard filename was entered, and there was no way to skip that
part. the explicite start gives more flexibility if the user
wants to encode only the video part, or the composite audiofile
is already there from a previous encoder call, and wants to encode
again with other compression parameters.
- Storyboard processing optimized:
- the new flag create_audio_tmp_files controls the long running
creation of temporary audiofiles. Setting this flag to FALSE
can speed up storyboard processing for the case when
the storyboard file contains audio tracks, and the caller
(== the Master Videoencoder) is only interested in
total audioplaytime and if syntax of audio records is OK.
- implicite extracting audiodata from videofiles for the
mix down of the composite audiotrack is now reduced
to the affected range(s) refering a videofile.
(old behaviour extracted always the audiodata in full length)
* gap/gap_story_file.c [.h]
* vid_common/gap_cme_gui.c [.h]
* vid_common/gap_cme_callbacks.c [.h]
* vid_common/gap_cme_main.c [.h]
* libgapvidutil/gap_gve_story.c [.h]
* docs/reference/txt/plug-in-gap-vid-encode-master.txt
* docs/reference/txt/plug-in-gap-extract-video.txt
2005-01-06 Wolfgang Hofer <hof@gimp.org>
- Storyboard syntax: the AUD_PLAY_MOVIE command
now provides positioning in unit frames.
this makes it easier to add an original tone
audiotrack (by manual editing) because
the video clips (VID_PLAY_MOVIE syntax) is also mesured in frames.
* gap/gap_story_syntax.c
* gap/gap_story_file.c [.h]
2005-01-05 Wolfgang Hofer <hof@gimp.org>
- removed/disabled more debug output printf statements
- video_extract: show aspect_ratio information of the video
(this feature does not work with the libmpeg3 decoder,
mpeg3_aspect_ratio delivered 0.0
for all tested video files,
libavformat did deliver correct aspect informations)
when available the aspect ratio is also used to set the
image resolution in all the handled (extracted) videoframe images,
where yresolution is fixed at 72 DPI and xresolution
is calculated according to the aspect ratio of the video.
Typically 16:9 DVDs have 720x576 non-quadratic pixels.
This results in xresolution 60.75 DPI and yresolution 72.0 DPI.
the aspect is set in the Video API procedure GVA_image_set_aspect.
2004-12-22 Wolfgang Hofer <hof@gimp.org>
-fixed some bugs in message texts (reported by popolon via mail)
-fixed bug scanning strings from _vin.gap files
and initialise errors for combo boxes in the Onionskin
configuration dialog (fix for #161620)
- removed/disabled debug output printf statements
* gap/gap_navigator_dialog.c
* gap/gap_player_dialog.c
* gap/gap_vex_dialog.c
* vid_common/gap_cme_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
* gap/gap_onion_dialog.c
* gap/gap_vin.c
2004-12-12 Wolfgang Hofer <hof@gimp.org>
reorganized and updated available doc files
and added some of the missing docs.
(there are still some chapters left to do..)
Splitted the large gap/README textfile into plug-in related
subfiles (using the HELP_ID's + .txt as name)
* README
* gap/README
# NEWLY added doc files:
* docs/reference/txt/INTRODUCTION.txt
* docs/reference/txt/STORYBOARD_FILE_DOC.txt
* docs/reference/txt/gap-filterall-db-browser.txt
* docs/reference/txt/gap_gimprc_params.txt
* docs/reference/txt/plug-in-bluebox.txt
* docs/reference/txt/plug-in-filter-macro.txt
* docs/reference/txt/plug-in-gap-anim-crop.txt
* docs/reference/txt/plug-in-gap-anim-resize.txt
* docs/reference/txt/plug-in-gap-anim-scale.txt
* docs/reference/txt/plug-in-gap-del.txt
* docs/reference/txt/plug-in-gap-density.txt
* docs/reference/txt/plug-in-gap-dup.txt
* docs/reference/txt/plug-in-gap-exchg.txt
* docs/reference/txt/plug-in-gap-extract-player.txt
* docs/reference/txt/plug-in-gap-extract-video.txt
* docs/reference/txt/plug-in-gap-modify.txt
* docs/reference/txt/plug-in-gap-morph.txt
* docs/reference/txt/plug-in-gap-move-path.txt
* docs/reference/txt/plug-in-gap-mpeg-encode.txt
* docs/reference/txt/plug-in-gap-mpeg2encode.txt
* docs/reference/txt/plug-in-gap-mplayer-decode.txt
* docs/reference/txt/plug-in-gap-navigator.txt
* docs/reference/txt/plug-in-gap-onionskin-configuration.txt
* docs/reference/txt/plug-in-gap-range-convert.txt
* docs/reference/txt/plug-in-gap-range-flatten.txt
* docs/reference/txt/plug-in-gap-range-layer-del.txt
* docs/reference/txt/plug-in-gap-range-to-multilayer.txt
* docs/reference/txt/plug-in-gap-renumber.txt
* docs/reference/txt/plug-in-gap-shift.txt
* docs/reference/txt/plug-in-gap-split.txt
* docs/reference/txt/plug-in-gap-storyboard-clip-prop.txt
* docs/reference/txt/plug-in-gap-storyboard-edit.txt
* docs/reference/txt/plug-in-gap-storyboard-player.txt
* docs/reference/txt/plug-in-gap-vid-encode-master.txt
* docs/reference/txt/plug-in-gap-videoframes-player.txt
* docs/reference/txt/plug-in-gap-xanim-decode.txt
* docs/reference/txt/plug-in-name2layer.txt
* docs/howto/txt/HOWTO-do-lossless-MPEG-cut.txt
* docs/howto/txt/HOWTO-write-animated-plug-ins.txt
2004-12-06 Wolfgang Hofer <hof@gimp.org>
Added frontend fro MPlayer based videoframe extracted plug-in.
MPlayer offers support to read from many videoformats.
This offers access to much more videoformats than the already existing
ffmpeg/libmeg3 based video extract plug-in, but does not
allow precise frame positioning. There is also no visual
positioning provided in the plug-in.
an optional gimprc parameter (mplayer_prog "/usr/local/bin/mplayer")
can be used if mplayer is installed, but is not found in
the directories specified in the PATH environment variable.
* gap/Makefile.am
* gap/gap_frontends_main.c
* gap/gap_decode_xanim.c
* gap/gap_decode_mplayer.c [.h] # NEWLY ADDED FILES
* po/POTFILES.in
2004-12-04 Wolfgang Hofer <hof@gimp.org>
Storyboard: Shorten frame header texts (if filenamepart gets too long)
* gap/gap_story_dialog.c
* gap/gap_story_main.c [.h]
* gap/gap_lib.c [.h]
* gap/gap_player_dialog.c
2004-12-02 Wolfgang Hofer <hof@gimp.org>
Storyboard: prefetch videothumbnail previews all at once
and show advance in the progress bar
(when activated via Menu)
Storyboard: implemented the missing dialog pop-up for Global/Properties
for selecting Layout Presets.
* gap/gap_story_dialog.c
* gap/gap_story_main.c [.h]
2004-11-29 Wolfgang Hofer <hof@gimp.org>
message text fixed (#159593)
* gap/gap_bluebox.c
2004-11-28 Wolfgang Hofer <hof@gimp.org>
- gap changed limit for framenumberdigits from 6 to 8
now use define GAP_LIB_MAX_DIGITS
and allow frames with basename part is NULL
e.g. framenames looking like that:
00000001.png
00000002.png
this was done to be compatible with mplayer's frame extracting feature
(mplayer-1.0pre5 uses 8 digits for the extracted frames
where the frames are just numberpart and extension)
* gap/gap_lib.c [.h]
* gap/gap_base_ops.c
* gap/gap_main.c
* gap/gap_vex_dialog.c
* gap/gap_vex_main.c
* libgapvidapi/gap_vid_api_util.c
2004-11-23 Wolfgang Hofer <hof@gimp.org>
bugfix: storyboard dialog asked for videoindex creation permission
even if a valid videoindex is available
* gap/gap_story_dialog.c
* gap/gap_arr_dialog.c
2004-11-18 Wolfgang Hofer <hof@gimp.org>
- tested plug-ins of the gimp-2.2pre1 release
for animated "filter all layers" capabilites,
and fixed _iter_ALT procedures.
- #158078 added "filter all layers" support for:
plug_in_gimpressionist
plug_in_autostretch_hsv (limited to constant apply)
plug_in_blur (limited to constant apply)
plug_in_c_astretch (limited to constant apply)
plug_in_cartoon
plug_in_color_adjust (limited to constant apply)
plug_in_color_enhance (limited to constant apply)
plug_in_colors_channel_mixer
plug_in_dilate (limited to constant apply)
plug_in_dog
plug_in_erode (limited to constant apply)
plug_in_gauss
plug_in_gradmap (limited to constant apply)
plug_in_hot (limited to constant apply)
plug_in_laplace (limited to constant apply)
plug_in_make_seamless (limited to constant apply)
plug_in_max_rgb (limited to constant apply)
plug_in_neon
plug_in_normalize
plug_in_photocopy
plug_in_qbist (limited to constant apply)
plug_in_softglow
plug_in_vinvert
- dropped "filter all layers" support for:
(by removing the iter_ALT procedure registration)
plug_in_blur
plug_in_gauss_iir
plug_in_gauss_iir2
plug_in_gauss_rle
plug_in_gauss_rle2
plug_in_make_seamless (removed just iter_ALT, const apply still there)
plug_in_max_rgb (removed just iter_ALT, const apply still there)
plug_in_rotate (has no GUI dialog, apply without specify angle makes no sense)
plug_in_normalize (removed just iter_ALT, const apply still there)
plug_in_vinvert (removed just iter_ALT, const apply still there)
* gap/TESTPROT_iter_ALT
* gap/Makefile.am
* gap/gap_filter_iterators.c
* gap/gap_filter_pdb.c
# Created NEW files:
* gap/iter_ALT/mod/plug_in_cartoon_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_colors_channel_mixer_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_dog_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_gauss_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_gimpressionist_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_neon_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_photocopy_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_softglow_iter_ALT.inc
2004-11-16 Wolfgang Hofer <hof@gimp.org>
- bugfix: gap_filt_pdb_call_plugin call plug-ins
with pointer to string "\0" rather than using NULL pointer
Some plug-ins crash when string args are passed
as NULL pointer, even if the call is INTERACTIVE
(example: plug_in_gimpressionist)
* gap/gap_filter_pdb.c
* vid_common/gap_cme_gui.c
2004-11-16 Sven Neumann <sven@gimp.org>
* configure.in: check for GIMP >= 2.2.0.
2004-11-14 Wolfgang Hofer <hof@gimp.org>
- bugfix VCR navigator: Timezoom changes and Goto other frame
actions did not
update the scale widgets adjustment (dyn_adj)
- bugfix: after gap controlled image excange disable undo
(otherwise undo can discard the layers
step by step in order they were added by the image load operation)
- gap_Use the same PDB-description render procedures
as the official DBBROWSER plug-in
copied code from gimp-2.1.7/plug-ins/dbbrowser/gimpprocbrowser.c
IDEA: if this code is transfered to libgimp
it could be used both from the offical DBBROWSER plug-in
and in GAP. (maybe after the gimp-2.2 release ?)
* gap/gap_dbbrowser_utils.c
* gap/gap_navigator_dialog.c
* gap/gap_lib.c
2004-11-12 Wolfgang Hofer <hof@gimp.org>
- hardcoded precompiler switch GAP_MORPH_DEBUG_FEATURES
to hide experimental and debug features in the morph plug-in
* gap/gap_morph_dialog.c
2004-11-11 Wolfgang Hofer <hof@gimp.org>
- gap_arr_dialog added new widget type: GAP_ARR_WGT_HELP_BUTTON
- Added HelpButtons for most GAP plug-ins
(the ones where i think they should have a Help page.)
some of the gap plug-ins had already a Help Button per default
because the implementation uses gimp_dialog_new to create
the dialog shell window.
All GAP help-buttons call the GIMP standard help procedure
gimp_standard_help_func
- changed existing HELP_ID strings
from: "plug_in_xxx.html"
to: "plug-in-xxx"
- here is the list of HELP_ID's.
For each HELP-ID we need a html help page.
As far as i know there are no help-pages for gimp-gap available
at all (until now).
Some (partly outdated) information is already available
in the gap/README textfile.
(dont know howto create Helppages and have no XML knowledge either.)
new HELP_ID menupath:
--------------------------------------------------------
"plug-in-bluebox" <Image>/Video/Bluebox
"plug-in-gap-modify" <Image>/Video/Frames Modify
"plug-in-gap-vid-encode-master" <Image>/Video/Encode/Master Encoder
"plug-in-gap-encpar-avi1" ## AVI videoencoder params (invoked via master encoder)
"plug-in-gap-encpar-ffmpeg" ## FFMPEG videoencoder params (invoked via master encoder)
"plug-in-gap-navigator" <Image>/Video/VCR Navigator
"plug-in-gap-morph" <Image>/Video/Morph
"plug-in-gap-extract-video" <Image>/Video/Split Video to Frames/Extract Videorange
"plug-in-gap-move-path" <Image>/Video/Move Path
"plug-in-gap-xanim-decode" <Image>/Video/Split Video to Frames/Any XANIM readable
"plug-in-filter-macro" <Image>/Filters/Filtermacro
"gap-filtermacro-db-browser" ## gap_dbbrowser dialog invoked from filtermacro
"gap-modframes-db-browser" ## gap_dbbrowser dialog invoked from modify frames plug-in
"gap-filterall-db-browser" <Image>/Filters/Filter all Layers
"plug-in-gap-onionskin-configuration" <Image>/Video/Onionskin/Configuration
"plug-in-gap-storyboard-edit" <Image>/Video/Storyboard (has HelpMenu, no Button)
"plug-in-gap-storyboard-clip-prop" ## storyboard edit dialog sub window (clip properties)
"plug-in-gap-videoframes-player" <Image>/Video/Playback
"plug-in-gap-extract-player" ## Player invoked from videoextract plug-in
"plug-in-gap-storyboard-player" ## Player invoked from storyboard dialog editor plug-in
"plug-in-gap-anim-scale" <Image>/Video/Frames Scale
"plug-in-gap-anim-resize" <Image>/Video/Frames Resize
"plug-in-gap-anim-crop" <Image>/Video/Frames Crop
"plug-in-gap-range-flatten" <Image>/Video/Frames Flatten
"plug-in-gap-range-layer-del" <Image>/Video/Frames Layer Delete
"plug-in-gap-range-convert" <Image>/Video/Frames Convert
"plug-in-gap-range-to-multilayer" <Image>/Video/Frames to Image
"plug-in-gap-renumber" <Image>/Video/Frames Renumber
"plug-in-gap-shift" <Image>/Video/Framesequence Shift
"plug-in-gap-dup" <Image>/Video/Duplicate Frames
"plug-in-gap-density" <Image>/Video/Frames Density
"plug-in-gap-split" <Image>/Video/Split Img to Frames
"plug-in-gap-del" <Image>/Video/Delete Frames
"plug-in-gap-exchg" <Image>/Video/Exchange Frame
"plug-in-gap-mpeg-encode" <Image>/Video/Encode/MPEG1...
"plug-in-gap-mpeg2encode" <Image>/Video/Encode/MPEG2...
"plug-in-name2layer" <Image>/Video/Filename to Layer...
* touched most source files
2004-11-10 Wolfgang Hofer <hof@gimp.org>
- reorganized master encoder dialog
replaced deprecated GtkOptionMenu widgets by gimp_int_combo_box
- bugfix: ffmpeg default presets must not use b_frames for msmpeg4
codecs (ffmpeg-0.4.8 does crash with this parameter set > 0)
changed presets, and made workaround to avoid this crash.
* vid_common/gap_cme_callbacks.c [.h]
* vid_common/gap_cme_gui.c [.h]
* vid_common/gap_main.c [.h]
* gap/gap_morph_dialog.c
* gap/gap_morph_dialog.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
2004-11-06 Wolfgang Hofer <hof@gimp.org>
- replaced deprecated GtkOptionMenu widgets by gimp_int_combo_box
(not finished yet
todo: the master videoencoder dialog)
- reorganized ffmpeg encoder dialog code,
(the old glade generated code was much harder to read by humans)
- ffmpeg encoder dialog: B-frames changed from checkbutton
to spinbutton (allows values 0 upto 8)
to specify number of B-frames per GOP.
(ffmpeg supported this since 0.4.8 but GAP gui-dialog
did forget to follow up this feature)
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c [.h]
* vid_enc_avi/gap_enc_avi_main.h
* vid_enc_avi/gap_enc_avi_gui.c
* gap/gap_vex_dialog.c
* gap/gap_vex_main.h
* gap/gap_onion_main.h
* gap/gap_onion_dialog.c
2004-11-04 Wolfgang Hofer <hof@gimp.org>
replaced deprecated gimp procedure calls and adapted
corresponding callbacks
DEPRECATED proc: REPLACEMENT:
- gimp_layer_menu_new gimp_layer_combo_box_new
- gimp_image_menu_new gimp_image_combo_box_new
- gimp_palette_set_background gimp_context_set_background
- gimp_palette_set_foreground gimp_context_set_foreground
* gap/gap_morph_dialog.c [.h]
* gap/gap_mov_dialog.c
* gap/gap_layer_copy.c
* gap/iter_ALT/mod/plug_in_exchange_iter_ALT.inc
* libgapvidutil/gap_gve_story.c
* gap/gap_navigator_dialog.c
2004-11-02 Wolfgang Hofer <hof@gimp.org>
applied patches from pippin that enable compile with the
ffmpeg-4.0.9pre1 prerelease.
(made some changes to enable compile with both
stable FFMPEG_VERSION 0.4.8 and
newest FFMPEG_VERSION 4.0.9pre1
(experimental code, failed at 1.st video extract test, need more
tests and bugfixes)
added #ifdef HAVE_OLD_FFMPEG_0408
well, it compiles now but:
.. there are much changes between ffmeg 0.4.8 and 4.0.9pre1.
this requires deeper analyse and lots of tests and changes in the
GAP code to get a working support for the new ffmpeg 4.0.9pre1.
also requires support for the new encoder parameters of the
4.0.9pre1 release.
now using hardcoded #define HAVE_OLD_FFMPEG_0408
to avoid successful (but useless) compiling with
ffmpeg 4.0.9pre1.
Maybe we should ship gimp-gap-2.2 with included
ffmeg 0.4.8 and libmpeg3 sources, and link those libs
statically ?
* configure.in
* gap/gap_vex_main.c
* libgapvidapi/gap_vid_api.c
* libgapvidapi/gap_vid_api_ffmpeg.c
* libgapvidapi/gap_vid_api_gimp.c
* libgapvidapi/gap_vid_api_mpeg3.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
2004-11-01 Wolfgang Hofer <hof@gimp.org>
redesign of the ModifyFrames plug-in dialog using GTK+ rather than
gap_array_dialog.
gives more flexibility to set widget sensibility
and allows grouping of the functions in submenus.
* gap/gap_mod_layer_dialog.c [.h] ## New files
* gap/gap_mod_layer.c [.h]
* gap/Makefile.am
* po/POTFILES.in
2004-10-31 Wolfgang Hofer <hof@gimp.org>
For the old MPEG encoder frontends:
Added Information label to tell the user that the
Master Videoencoder is the more efficient methode
for videoencoding.
* gap/gap_mpege.c
* gap/gap_decode_xanim.c
2004-10-27 Wolfgang Hofer <hof@gimp.org>
updated README file(s)
got mail from: Marcel Telka <marcel@telka.sk>
I have tested module gimp-gap (CVS branch HEAD) which lives
in GNOME CVS for missing translatable files with `intltool-update -M`
command.
Here is a content of the 'missing' file:
libgapvidapi/gap_vid_api_mpeg3.c
libgapvidapi/gap_vid_api_vidindex.c
* README
* gap/README
* docs/STORYBOARD_FILE_DOC.txt
* po/POTFILES.in
2004-10-26 Wolfgang Hofer <hof@gimp.org>
Master Videoencoder dialog:
Added radio buttons to select the input mode explicite.
This makes clear that the encoder can handle all 3 types of input,
If invoked from an animation frame "Frames" is selected at startup.
for other (multilayer) images "Layers" is selcted automatically
(this was already done before, but now the user has a chance
to see whats going on, and can encode the layers of
one animation frame too if he wants to do so.)
Storyboard dialog: added "Encode" menu item(s) to call the
Master video encoder dialog from the storyboard.
* vid_common/gap_cme_main.c [h]
* vid_common/gap_cme_gui.c
* libgapvidutil/gap_gvetypes.h
* vid_enc_avi/gap_enc_avi_main.h
* gap/gap_story_main.c [h]
* gap/gap_story_dialog.c
2004-10-24 Wolfgang Hofer <hof@gimp.org>
bugfix: player now uses only valid videoindex files
and forces re-creation on invalid ones.
workaround: ffmpeg videoapi backend now makes an initial frame read
and then reopens the video.
this is done to detect the CODEC's native pixel format (YUV420 or YUV422).
Before reading the 1.st frame libavcodec seems to deliver always YUV420
that does match most, but not all codecs and,
delivered wrong results for the 1.st read frame on the non matching codecs.
bugfix: use gimp_context_get_background, gimp_context_set_background
rather than the deprecated procedures: gimp_palette_get_background, gimp_palette_set_background
* gap/gap_player_dialog.c
* libgapvidapi/gap_vid_api_ffmpeg.c
* gap/sel-to-anim-img.scm
2004-10-27 Sven Neumann <sven@gimp.org>
* libgapvidapi/gap_vid_api-intl.h: forgot to add this file to CVS.
2004-10-16 Wolfgang Hofer <hof@gimp.org>
bugfix: Frames Modify plug-in
Function: Add layermask from selection
gimp_layer_add_mask call was missing after layermask creation.
The GIMP-2.1.7 core crashed somewhere IN displays_reconnect_invoker
after that fix.
(but only for Function: Add layermask from selection
not in other Functions)
Now this crash does not happen any more
after the additional optimizing step
in the Frames Modify plug-in.
(old:
save current frame
foreach frame
{
load; processing; save; delete;
}
load current frame
reconnect displays,
delete current frame
new:
foreach frame
{
if(frame == current)
{
processing; save
}
else
{
load; processing; save; delete;
}
}
)
* gap/gap_mod_layer.c
2004-10-15 Wolfgang Hofer <hof@gimp.org>
Layout changes (spacing, alingnment, widget sensitivity) for the VideoExtract Plugin
to get one step closer to GNOME HIG
feature: when the player is started from the videoextract plug-in,
the player now uses the initial range (fom/to) selection
from the video extract dialog.
feature: the player button widget "FrameNr" was splitted into
2 separate buttons "Frame" and "Nr",
where "Frame" sets the current FramNr as Begin of selected Range
and "Nr" sets the current FramNr as End of selected Range.
The old behaviour (ALT-click for end) is harder to handle
because it needs additional keyboard interaction.
PlayerDialog: added the flag: caller_range_linked
this flag causes the player to propagate changes in the
selected framerange immediate to the callers
Frame-Range widgets (by calling the p_printout_range procedure)
The videoextract plug-in calls the player with the new
caller_range_linked set TRUE.
The explicite manual transfer of the of the players selected range
into the extract dialog's extract range (Player Buttons: FromFrame / ToFrame)
might be hard to find for new users and was removed.
(The Player Buttons: FromFrame / ToFrame are replaced by
Labels when caller_range_linked is TRUE)
When The player is called via STORYBOARD dialog,
the caller_range_linked flag is set to FALSE.
In this case the Player Buttons: FromFrame / ToFrame
do create a new Clip. This must not be triggered automatically
on each change in the Player's selected range
-- otherwise we would produce lots of unwanted clips--
* gap/gap_player_dialog.c
* gap/gap_vex_dialog.c
2004-10-12 Wolfgang Hofer <hof@gimp.org>
- renamed gimprc parameter from
old: (video-gvaindexes-dir "dir")
new: (video-index-dir "dir")
- bugfix: create of libmpeg3 videoindex toc files crashed after scanning th whole video
if the file could not be opened.
(in most cases this happened when the gvaindexes directory does not exist)
- extended the gap_arr_create_vindex_permission procedure:
now tries automatically create the gvaindex dir when permission is granted.
also try precreate empty videoindex file for immediate detection
of file creation errors.
- show error messages if videoindex (or libmpeg3 specific tocfile) creation failed
- provided wrappers for mkdir and chmod in gap_file_util module
* libgapvidapi/gap_vid_api_vidindex.c
* libgapvidapi/gap_vid_api_mpeg3toc.c
* libgapvidapi/gap_vid_api.c [.h]
* libgapvidapi/gap_vid_api-intl.h # created NEW FILE
* libgapvidapi/Makefile.am
* gap/gap_decode_xanim.c
* gap/gap_file_util.c [.h]
* gap/gap_lib.c
2004-10-09 Wolfgang Hofer <hof@gimp.org>
handling of preferred video decoder in storyboard dialogs
and storyboard file processing.
Added Entry and Optionmenu widgets to Storyboard master Properties dialog
where the user can select a preferred video decoder
(with global scope in the storyboard file)
it is now possible to specify the preferred_decoder individual
per videoclip in the storyboard file.
(widgets in the Clip Properties dialog still missing)
bugfix: arraydialog widget GAP_ARR_WGT_OPT_ENTRY
had a fixed entry height of 0 pixels
- video encoding results in warnings (since gimp-2.1.6)
(gimp-2.1:22905): Gimp-Core-CRITICAL **: file gimpimage.c: line 1708 (gimp_image_undo_thaw): assertion `gimage->undo_freeze_count > 0' failed
maybe this warning is triggered by calls to gimp_image_undo_enable(image_id)
when undo is already enabled on that image.
(GAP used this to clear the undo stack when processing temporary
images)
i removed such calls in the storyboard and onionskin processing modules.
- bugfix onionskin config dialog: reset did not reset the Reference Mode
to value "normal"
- Storyboard dialog: hide vscale widgets if scrolling is not possible
* gap/gap_arr_dialog.c
* gap/gap_image.c
* gap/gap_player_dialog.c [.h]
* gap/gap_story_syntax.c
* gap/gap_story_dialog.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_story_prperties.c [.h]
* libgapvidutil/gap_gve_story.c
* gap/gap_onion_dialog.c
* gap/gap_onion_base.c
2004-10-07 Wolfgang Hofer <hof@gimp.org>
bugfix: fixed permanent XVID codec crash in the AVI video encoder plugin.
some more bugfixes to get the encoder working with XVID-1.0.2 now.
(XVID_VERSION was not initialized at all required places,
length of encoded buffer is now reported via positive
returncode, the length field is now ignored,
no more need of vertical flip)
* vid_enc_avi/gap_enc_avi_main.c
* libgapvidutil/gap_gve_xvid.c
2004-10-02 Wolfgang Hofer <hof@gimp.org>
Layout changes (#153626)
use gimp_frame_new rather than gtk_frame_new
and other minor layout changes
labels aligned LEFT, spacing.
GIMP-GAP is not fully HIG compliant,
but the layout may now fit a little better into the
GIMP-2.1 and GNOME HIG look and feel
* gap/gap_arr_dialog.c
* gap/gap_bluebox.c
* gap/gap_morph_dialog.c
* gap/gap_mov_dialog.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_dialog.c
* gap/gap_player_dialog.c
* gap/gap_resi_dialog.c
* gap/gap_story_dialog.c
* gap/gap_story_properties.c
* gap/gap_vex_dialog.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
* vid_common/gap_cme_gui.c
* vid_enc_avi/gap_enc_avi_gui.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
2004-09-28 Wolfgang Hofer <hof@gimp.org>
more bugfix attempts for lossless MPEG cut.
- timecode correction in GOP-HEADER
(not sure if it works on all MPEG1 and MPEG2 videos)
- look ahead to decide if B-frames can be copied
with lower risk to get trashed frames when cut immediate
after a B-frame
* libgapvidapi/gap_vid_api.h
* libgapvidapi/gap_vid_api_util.c
* libgapvidutil/gap_gve_story.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
2004-09-27 Wolfgang Hofer <hof@gimp.org>
bugfix in videoextract plugin: window title and tooltip texts (#153627)
bugfix in the player dialog: set total_frames dependet widget limits
when player reaches EOF on single videofiles.
(the total_frame number that we get at videofile open
was just a guess to init the widgets for the 1.st time)
* gap/gap_vex_dialog.c
* gap/gap_player_dialog.c
2004-10-14 Amanpreet Singh Alam <amanpreetalam@yahoo.com>
* configure.in: ALL_LINGUS-> Add pa (Punjabi) Language
2004-10-11 Carol Spears <carol@gimp.org>
fixed the readme. it was spreading lies about needing special
compiler options
2004-09-25 Wolfgang Hofer <hof@gimp.org>
attempt to fix dont_recode flag in the ffmpeg videoencoder
that should enable lossless cut of mpeg videoclips.
seems to work at least partly now.
The lossles MPEG cut is still an experimental feature
and requires libmpeg3 as decoder.
(for other decoders there is no implementation
of the GVA procedure that can read uncompressed chunks)
known problems left to solve are:
- cut directly after a B-Frame.
- there is no timecode correction in the GOP headers
when they are copied into the output video
(the copied chunk can contain GOP-headers)
- picture_number and framerate information correction
is also missing yet.
The resulting videofiles may not playback on all videoplayers.
* libgapvidapi/gap_vid_api.h
* libgapvidapi/gap_vid_api_util.c
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidutil/gap_gve_story.c
2004-09-24 Wolfgang Hofer <hof@gimp.org>
- creation of videoindex file now depends on gimprc parameter settings:
(video-index-creation "ask")
(video-index-creation "yes")
(video-index-creation "no")
the default is "ask", where the user is asked via popup dialog
before gimp-gap creates the videoindex file.
"yes" allows automatically creation,
"no" forbids video index creation in general.
- PLAYER now shows a new button for explicite canceling
long running videoindex creation tasks.
(the old behavior was an immediate abort on nearly all
widget clicks and mouse move events in the go-buttons)
* gap/gap_player_main.c [.h]
* gap/gap_player_dialog.c
* gap/gap_story_dialog.c [.h]
* gap/gap_arr_dialog.c [.h]
* README
2004-09-19 Wolfgang Hofer <hof@gimp.org>
- bugfix: Storyboard AUD_MASTER_VOLUME default was 0 (total silent)
changed default to 1.0 (== normal volume, without amplifiy)
- FFPEG encoder Parameters:
set aspect ratio checkbox was not sufficient, added explicite
optionmenu to force 4:3 or 16:9 on user demand.
(autodetect aspect from with/height pixelsizes
is not sufficient for all cases.
Most 16:9 DVDs are encoded with 720 x 576
pixel dimensions and do not have square pixels)
* gap/gap_story_file.c
* libgapvidutil/gap_gve_story.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c [.h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c [h]
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c [h]
* libgapvidapi/gap_vid_api.c [.h]
* libgapvidapi/gap_vid_api_mpeg3.c
* libgapvidapi/gap_vid_api_ffmpeg.c
2004-09-12 Wolfgang Hofer <hof@gimp.org>
Use the same (new) Parser both for storyboard encoding
and for storyboard dialog module.
Therefore the new parser was extended for the full level2 syntax.
The storyboard dialog is still restricted to level1 and can not
handle audio, multiple tracks and the effect attributes.
The new parser supports named parameters and introduces the
new static library libgapstory.a
(the old one was limited to positional parameters)
* gap/gap_lib.h
* gap/gap_story_file.c [.h]
* gap/gap_player_dialog.c
* gap/gap_story_dialog.c
* gap/gap_story_properties.c
* libgapvidutil/gap_gve_story.c [.h]
* gap/gap_libgapstory.h ## NEWLY created file
* gap/Makefile.am
* vid_common/Makefile.am
* vid_enc_avi/Makefile.am
* vid_enc_ffmpeg/Makefile.am
* vid_enc_single/Makefile.am
2004-09-11 Wolfgang Hofer <hof@gimp.org>
FFMPEG based encoder must not be built when configured with
--disable-libavformat
* vid_enc_ffmpeg/Makefile.am
2004-09-07 Sven Neumann <sven@gimp.org>
* configure.in
* libgapvidapi/Makefile.am: fixed some build conditionals.
2004-08-28 Wolfgang Hofer <hof@gimp.org>
fixed compile errors when configured with --disable-libxvidcore option
(undefined reference to `gap_gve_xvid_algorithm_preset' # reported by sven)
* vid_enc_avi/gap_enc_avi_main.c
* vid_enc_avi/gap_enc_avi_gui.c
2004-08-14 Wolfgang Hofer <hof@gimp.org>
feature: MovePath point navigation hold SHIFT key
for automatic following keyframes in the preview
when instant_apply is on.
(procedure mov_follow_keyframe)
* gap/gap_mov_dialog.c
2004-08-13 Wolfgang Hofer <hof@gimp.org>
bugfix: video extract plug-in: values typed into spinbutton widgets
via keyboard are not respected at extract.
(g_signal_connect to "value_changed" rather than "changed" signal)
* gap/gap_vex_dialog.c
2004-08-11 Wolfgang Hofer <hof@gimp.org>
Added new Functions to Modify Frames plug-in
"Copy layermask from layer above"
"Copy layermask from layer below"
* gap/gap_mod_layer.c [.h]
* gap/gap_main.c
2004-08-10 Wolfgang Hofer <hof@gimp.org>
Bugfix: make Load/Save Pathpoint work again.
(this bug was introduced with the changes on 2004/04/18
where gtk_window_present was used in the wrong callbacks too)
* gap/gap_mov_dialog.c
2004-08-08 Wolfgang Hofer <hof@gimp.org>
added input_mode parameter to the standard encoder PDB API
enum GapGveTypeInputRange: GAP_RNGTYPE_FRAMES, GAP_RNGTYPE_LAYER, GAP_RNGTYPE_STORYBOARD
this was needed because until now the encoder had to guess
how to interpret an image (as FRAME sequence or as Multilayer image)
* vid_common/gap_cme_main.c
* vid_common/gap_cme_gui.c
* libgapvidutil/gap_gvetypes.h
* libgapvidutil/gap_gve_story.c [h]
* vid_enc_single/gap_enc_singleframes_main.c
* vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
* vid_enc_avi/gap_enc_avi_main.c
2004-07-18 Wolfgang Hofer <hof@gimp.org>
Morph: fixed bug for layer mixing.
added p_mix_layers procedure to mix all channels r,g,b,a with current mix factor.
The old code used standard gimp_merge_visible_layers with overall opacity
but this way opaque pixels of the bg-layer were fully visible
for all pixels where the top-layer has full transparent alpha channel.
(regardless to the current mix-factor.)
* gap/gap_morph_exec.c
2004-07-24 Wolfgang Hofer <hof@gimp.org>
introduced variable stepsize parameter (step_density) for STORYBOARD
processing.
This allows changing the playback speed of each
individual input clip while keeping the
same constant master_framerate of the resulting output video.
this is done at video encoding (and in the player) on the fly.
until now the only way to get this effect
was explicite dropping or duplicating
source frames by using the Change Frame Density Feature
but this way you loose ever nth. frame or waste diskspace
with the duplicated frames.
- Added step_density spinbutton to the STB_ELEM Properties dialog
- extended both STORYBOARD file parsers,
load and save procedures to handle the new parameter
* gap/gap_story_main.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_properties.c
* gap/gap_story_syntax.c
* libgapvidutil/gap_gve_story.c [.h]
2004-07-18 Wolfgang Hofer <hof@gimp.org>
Morph/Warp Plug-IN: Tuning of workpoint selection algorithms
replaced use_fast_wp_selection flag by use_quality_wp_selection flag
with invers logic
added NON-INTERACTIVE parameter handling
* gap/gap_morph_dialog.c [.h]
* gap/gap_morph_exec.c [.h]
* gap/gap_morph_main.c [.h]
2004-07-11 Wolfgang Hofer <hof@gimp.org>
MORPH: added hscale/vscale widgets for preview scrolling,
FitZoom and Swap Buttons
Radius and Intensity Spinbutton widgets
checkbutton for Optional fast or quality workpoint selection.
implemented rendering with multiple_pointsets.
STORYBOARD: added rowpage vscale widget for scrolling
* gap/gap_morph_dialog.c [.h]
* gap/gap_morph_exec.c [.h]
* gap/gap_morph_main.c [.h]
* gap/gap_story_dialog.c
* gap/gap_story_main.h
2004-06-28 Wolfgang Hofer <hof@gimp.org>
frames_to_multilayer: do not force save of current image
and use gimp_image_duplicate for the current frame.
this is faster, and avoids the "not using xcf" dialog
for this plug-in when working with other imagefile formats.
(this is only only one step to solve # 125977)
* gap/gap_range_ops.c
2004-06-26 Wolfgang Hofer <hof@gimp.org>
#144649 use NULL rather than GDK_TOP_LEFT_ARROW
to get the default cursor as active_cursor
* gap/gap_navigator_dialog.c
* gap/gap_bluebox.c
* gap/gap_mov_dialog.c
2004-06-20 Wolfgang Hofer <hof@gimp.org>
MORPH: added render_mode radiobuttons, shape_points spinbutton
Optional work on existing Layers (CreateLayers checkbutton)
Optional work with multiple pointsets,
and multiple_pointset label widgets in the Warp/Morp dialog.
(rendering with multiple_pointsets is not implemented yet)
changed pixel_warp algorithm
use more precise constant G_PI instead of 3.14159
* gap/gap_morph_dialog.c [.h]
* gap/gap_morph_exec.c [.h]
* gap/gap_morph_main.c [.h]
* gap/gap_mov_exec.c
* gap/gap_pdb_calls.c
2004-06-14 Sven Neumann <sven@gimp.org>
* configure.in: some minor cleanup, still doesn't compile for me.
2004-06-12 Wolfgang Hofer <hof@gimp.org>
Added new features for GIMP-GAP-2.1
(some of the new features and dialogs are not completely
implemented yet and need more testing and better GUI support)
- Added Storyboard dialog.
helps to assemble clips and images to one resulting video.
- Integrated GVE (the unpublished version of Gap Viedeo Encoder Project)
into GIMP-GAP.
- Added new video extract plug-in
(the sources were moved from the unpublished GVE sourcetree
to the gimp-gap surcetree and were ported to gimp-2.0 / gtk+-2.2
now using the player_widget for video range selection
)
- GAP Video API (GVA) for videofile read access. (video and audio)
- introdoced new gimprc parameter:
(video-max-frames-keep-cached "500")
to configure the video API internal framecachesize.
- Extended the Player for Storyboard Level 1 Fileplayback
- New Player features
- added a scale widget..
this helps to change framnr postion in BIG-STEPS
and gives a better overview of the current position.
- Snaphot to Multilayer image
SHIFT Play use original size,
CTRL Play at preview size
ALT force Creation of new Snapshot image
Click on preview creates Mtrace Image of current frame.
- added basic videofile playback support
(just frames, no audio)
extended GapAnimInfo struct for videofile support
(GapLibAinfoType, seltrack, delace, density)
- Morph Plug-In: for creating tween layers by morph or warp
transformations, based on workpoints.
(workpoints are entered via GUI and optional saved to file)
- renamed p_fprintf_gdouble => gap_lib_fprintf_gdouble
- renamed p_sscan_flt_numbers => gap_lib_sscan_flt_numbers
- added onionskin ref_modes
(Feature request by Benjamin McKenzie)
Changed Files:
--------------
* NEWS
* configure.in
* Makefile.am
* gap/Makefile.am
* gap/README
* gap/gap_arr_dialog.c [.h] # use const char for const stringparams
* gap/gap_base_ops.c
* gap/gap_bluebox_main.c
* gap/gap_lib.c [.h]
* gap/gap_player_main.c [.h]
* gap/gap_match.c
* gap/gap_mov_exec.c [.h]
* gap/gap_navigator_dialog.c
* gap/gap_onion_base.c [.h]
* gap/gap_onion_dialog.c
* gap/gap_onion_main.c [.h]
* gap/gap_player_dialog.c [.h]
* gap/gap_player_main.c [.h]
* gap/gap_layer_copy.c [.h]
* gap/gap_resi_dialog.c
* gap/gap_vin.c [.h]
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c
Created news Source Modules (in existing directories):
----------------------------
* gap_audio_util.c [.h]
* gap/gap_audio_wav.c [.h]
* gap/gap_file_util.c [.h]
* gap/gap_morph_dialog.c [.h]
* gap/gap_morph_exec.c [.h]
* gap/gap_morph_main.c [.h]
* gap/gap_story_dialog.c [.h]
* gap/gap_story_file.c [.h]
* gap/gap_story_main.c [.h]
* gap/gap_story_properties.c [.h]
* gap/gap_story_syntax.c [.h]
* gap/gap_vex_dialog.c [.h]
* gap/gap_vex_exec.c [.h]
* gap/gap_vex_main.c [.h]
* gap/gap-dup-continue.scm
Created news Source Directories:
-------------------------------
* doc/*
* libgapvidapi/*
* libgapvidutil/*
* vid_enc_avi/*
* vid_enc_ffmpeg/*
* vid_enc_single/*
Created news Source Modules (in the new directories):
----------------------------
libgapvidapi/Makefile.am
libgapvidapi/example.c
libgapvidapi/gap_vid_api.c
libgapvidapi/gap_vid_api.h
libgapvidapi/gap_vid_api_ffmpeg.c
libgapvidapi/gap_vid_api_gimp.c
libgapvidapi/gap_vid_api_mpeg3.c
libgapvidapi/gap_vid_api_mpeg3toc.c
libgapvidapi/gap_vid_api_quicktime.c
libgapvidapi/gap_vid_api_util.c
libgapvidapi/gap_vid_api_vidindex.c
libgapvidutil/Makefile.am
libgapvidutil/gap_gve_jpeg.c
libgapvidutil/gap_gve_jpeg.h
libgapvidutil/gap_gve_misc_util.c
libgapvidutil/gap_gve_misc_util.h
libgapvidutil/gap_gve_raw.c
libgapvidutil/gap_gve_raw.h
libgapvidutil/gap_gve_sox.c
libgapvidutil/gap_gve_sox.h
libgapvidutil/gap_gve_story.c
libgapvidutil/gap_gve_story.h
libgapvidutil/gap_gve_xvid.c
libgapvidutil/gap_gve_xvid.h
libgapvidutil/gap_gvetypes.h
libgapvidutil/gap_libgapvidutil.h
vid_common/Makefile.am
vid_common/gap_cme_callbacks.c
vid_common/gap_cme_callbacks.h
vid_common/gap_cme_gui.c
vid_common/gap_cme_gui.h
vid_common/gap_cme_main.c
vid_common/gap_cme_main.h
vid_enc_avi/Makefile.am
vid_enc_avi/README.avilib
vid_enc_avi/avilib.c
vid_enc_avi/avilib.h
vid_enc_avi/gap_enc_avi_gui.c
vid_enc_avi/gap_enc_avi_gui.h
vid_enc_avi/gap_enc_avi_main.c
vid_enc_avi/gap_enc_avi_main.h
vid_enc_ffmpeg/Makefile.am
vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.c
vid_enc_ffmpeg/gap_enc_ffmpeg_callbacks.h
vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
vid_enc_ffmpeg/gap_enc_ffmpeg_gui.h
vid_enc_ffmpeg/gap_enc_ffmpeg_main.c
vid_enc_ffmpeg/gap_enc_ffmpeg_main.h
vid_enc_single/Makefile.am
vid_enc_single/gap_enc_singleframes_main.c
2004-05-10 Sven Neumann <sven@gimp.org>
* Made 2.0.2 release.
2004-05-10 Sven Neumann <sven@gimp.org>
* configure.in: only disable the deprecated glib/gdk-pixbuf/gtk+
APIs when compiling against gtk+-2.2.
* gap/gap_navigator_dialog.c
* gap/gap_onion_dialog.c
* gap/gap_resi_dialog.c
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_huesat.c
* gap/gap_wr_color_levels.c: don't use deprecated GTKcalls.
2004-05-06 Wolfgang Hofer <hof@gimp.org>
- bugfix: static init variables
global_number_in_args global_number_out_args
(and not just in the query procedure)
possibly fixes #141840 (?)
* gap/gap_name2layer_main.c
* gap/gap_wr_opacity.c
* gap/gap_main.c # updated release datestring
2004-05-01 Wolfgang Hofer <hof@gimp.org>
- bugfix: MovePath crashed at dialog startup. (#141590)
(this bug came up when linked with gimp-2.0.1
and did not appear under gimp-2.0.0)
* gap/gap_pview_da.c
* gap/gap_mov_dialog.c
2004-04-30 Sven Neumann <sven@gimp.org>
* Made 2.0.1 release.
2004-04-19 Wolfgang Hofer <hof@gimp.org>
- process pixel region rectangle at once is faster
than row by row.
(procedure: gap_layer_new_from_buffer)
* gap/gap_layer_copy.c
2004-04-18 Wolfgang Hofer <hof@gimp.org>
- window to front on attempt to open an already open window
using gtk_window_present(GTK_WINDOW(filesel))
* gap/gap_arr_dialog.c [.h]
* gap/gap_fmac_main.c
* gap/gap_mov_dialog.c
* gap/gap_wr_color_curve.c
2004-04-11 Wolfgang Hofer <hof@gimp.org>
- bugfix p_gap_filename_to_uri
* gap/gap_thumbnail.c
2004-04-10 Wolfgang Hofer <hof@gimp.org>
- Onionskin CFG: replaced deprecated gtk_object_set_data by
g_object_set_data
- new procedure gap_layer_clear_to_color
* gap/gap_onion_dialog.c
* gap/gap_layer_copy.c [.h]
2004-04-07 Wolfgang Hofer <hof@gimp.org>
- Move Path plug-in: added option to keep the original
paintmode of the handled src layer(s)
also added some missing paintmode options:
Divide, Dodge, Burn, Hard Light, Soft Light,
Grain Extract, Grain Merge
(suggestion by Sam Jones)
* gap/gap_main.c
* gap/gap_mov_dialog.c [.h]
* gap/gap_mov_render.c
2004-04-10 Sven Neumann <sven@gimp.org>
* Made 2.0.0 release.
2004-04-08 Adam Weinberger <adamw@gnome.org>
* en_CA.po: Added en_CA to ALL_LINGUAS.
2004-04-06 Wolfgang Hofer <hof@gimp.org>
- prepared for gimp-gap-2.0.0 release
- bugfix #139051 DESTDIR is used twice (screws up packaging gimp-gap)
- bugfixes: changed iterator Procedures to follow up
changes in gimp-2.0.0 that are done since my last
Filter All Layers Test (that was done with gimp-2.0pre3)
* configure.in
* gap/Makefile.am
* gap/gap_filter_iterators.c
* gap/iter_ALT/gen/plug_in_CML_explorer_iter_ALT.inc
2004-03-10 Wolfgang Hofer <hof@gimp.org>
- bugfixes: calls to gimp_run_procedure now use gimp_destroy_params
(some calls used g_free, others did not free at all)
* gap/gap_decode_xanim.c
* gap/gap_filter_foreach.c
* gap/gap_filter_pdb.c
* gap/gap_lib.c [.h]
* gap/gap_mod_layer.c
* gap/gap_mov_dialog.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_worker.c
* gap/gap_pdb_calls.c
* gap/gap_player_dialog.c
* configure.in
2004-03-01 Sven Neumann <sven@gimp.org>
* gap/gap_fmac_main.c: applied a patch from Wolfgang Hofer (bugfix
for NONINTERACTIVE call).
2004-02-14 Sven Neumann <sven@gimp.org>
* Made 2.0pre1 release.
2004-02-14 Sven Neumann <sven@gimp.org>
* gap/gap_player_dialog.c (p_create_player_window): declare
variables only when they are being used.
2004-02-12 Sven Neumann <sven@gimp.org>
* configure.in: cosmetics.
2004-02-12 Sven Neumann <sven@gimp.org>
* configure.in: use m4 defines for the versioning. Bumped version
number to 1.3.26 and set 2.0pre1 as user-visible version string.
* autogen.sh: require autoconf >= 2.54.
* README
* gap/README: removed explicit 1.3.x version numbers, speak of 2.0
instead.
* gap/gap_thumbnail.c (gap_thumb_file_load_thumbnail): removed
unused variables.
2004-02-08 Wolfgang Hofer <hof@gimp.org>
- bugfixes: changed iterator Procedures to follow up
LastValues Buffer Structure changes of the
plug-ins that are part of the gimp-2.0pre3 release
* gap/gap_filter_iterators.c
* gap/iter_ALT/mod/plug_in_blur_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_color_map_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_colorify_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_destripe_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_grid_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_pixelize_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_randomize_hurl_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_randomize_pick_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_randomize_slur_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_sample_colorize_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_maze_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_plasma_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_sinus_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_solid_noise_iter_ALT.inc
2004-02-01 Wolfgang Hofer <hof@gimp.org>
bugfixes (free repaint buffers of the gap_pview drawing area widget)
* gap/gap_lib.c [.h]
* gap/gap_pview_da.c [.h]
* gap/gap_navigator_dialog.c
2004-01-28 Wolfgang Hofer <hof@gimp.org>
added new procedure gap_layer_copy_from_buffer
* gap/gap_layer_copy.c [.h]
2004-01-23 Wolfgang Hofer <hof@gimp.org>
bugfix: gap_vin_load_textfile set correct line_nr
* gap/gap_vin.c
2004-01-27 Sven Neumann <sven@gimp.org>
* configure.in: AC_SUBST some values to workaround automake-1.6
brokeness. Use $datadir since $DATADIRNAME doesn't seem to be
portable.
2004-01-26 Sven Neumann <sven@gimp.org>
* autogen.sh: prefer automake-1.7 over 1.8 since there are issues
with the latter.
2004-01-26 Sven Neumann <sven@gimp.org>
* Made 1.3.25 release.
2004-01-26 Sven Neumann <sven@gimp.org>
* autogen.sh: use automake-1.8 if available.
* NEWS
* README: some minor updates.
2004-01-22 Wolfgang Hofer <hof@gimp.org>
- removed xvpics support
- added pixbuf support for rendering of the GAP preview widget.
Two variants of gap_pview_render_from_pixbuf are implemented.
with
./autogen.sh --enable-gdkpixbuf-pview
(calls ./configure --enable-gdkpixbuf-pview)
you may compile gap_pview_da.c to use the GDK-pixbuf
procedures for scaling
(may be of interest if your machine has GDK
supported hardware acceleration
but i dont know if this will speed up thumbnailbased playback)
Here are the results of my performance Test:
Environment:
Linux 2.4.20, Pentium IV 2600 MHZ Cpu, 1GB Ram
nVidia Gforce4 Ti 4200
Player Settings:
Size: tested with square frames 128, 256, 512 pixel
Loop: On
UseThumbnails: On
ExactTiming: On
NO Audioplayback
Increase Speed until the Player prints out the text:
"DROP (SKIP) frame" to stdout.
GAP-internal Scaling:
Widget Size: 512x512 82 frames/sec
Widget Size: 256x256 136 frames/sec
Widget Size: 128x128 180 frames/sec (1:1)
GDK pixbuf Scaling with GDK_INTERP_NEAREST
(configured with --enable-gdkpixbuf
compiled with -DGAP_PVIEW_USE_GDK_PIXBUF_RENDERING )
Widget Size: 512x512 37 frames/sec
Widget Size: 256x256 98 frames/sec
Widget Size: 128x128 160 frames/sec (1:1)
* configure.in
* gap/gap_lib.c
* gap/gap_thumbnail.c
* gap/gap_pdb_calls.c [.h]
* gap/gap_pview_da.c [.h]
* gap/gap_player_dialog.c
* gap/gap_navigator_dialog.c
2004-01-21 Wolfgang Hofer <hof@gimp.org>
fixed some typo's (that were repoted in #132030)
* gap/gap_mod_layer.c
* gap/gap_mpege.c
* gap/gap_range_ops.c
* gap/gap_wr_opacity.c
2004-01-19 Wolfgang Hofer <hof@gimp.org>
bugfix: in Playback Dialog
callback procedures for the player's spinbutton widgets
(from_spinbutton, to_spinbutton and framenr_spinbutton ...)
must connect to "value_changed" rather than "changed" signal
to immediate accept the values typed in by keyboard.
* gap/gap_player_dialog.c
2004-01-19 Sven Neumann <sven@gimp.org>
* configure.in: fixed installation path for plug-ins and scripts
that I broke with my latest changes.
* autogen.sh: no need to check for gtk-2.0.m4; we don't use it.
2004-01-19 Sven Neumann <sven@gimp.org>
* configure.in
* gap/Makefile.am: fixed libgimpthumb issues and some other
oddities that Wolfgang did as workarounds.
2004-01-17 Wolfgang Hofer <hof@gimp.org>
Changes to make use of libgimpthumb library.
the new procedure gap_thumb_file_load_thumbnail is based on
libgimpthumb and can directly load thumbnail data from PNG
thumbnail files. (speeds up thumbnail playback a little)
Added Layermask Functions for the Video/Frames Modify Module
* configure.in # put defs for MAJOR/MINOR/MICRO VERSION into config.h
* gap/Makefile.am
* gap/gap_main.c # get main version from config.h
* gap/gap_navigator_dialog.c # bugfix: call of plug_in_gap_range_to_multilayer needs regionselect_mode
* gap/gap_base_ops.c
* gap/gap_lib.c
* gap/gap_player_dialog.c
* gap/gap_thumbnail.c [.h]
* gap/gap_pview_da.c # use gap_thumb_file_load_thumbnail
* gap/gap_navigator_dialog.c # use gap_thumb_file_load_thumbnail
* gap/gap_mod_layer.c [.h] # added layermask support
2004-01-15 Wolfgang Hofer <hof@gimp.org>
added new modules. the gap_wr_* modules are wrappers
for some GIMP Tool procedures with primitive GUI variants
but with Iterator procedures and typical PDB Interface to call them
with varying values on multiple layer or frames, or record
calls as filtermacro.
The dialogs install into /Video/Layer Menupath.
* gap/Makefile.am
* gap/gap_wr_opacity.c
* gap/gap_wr_color_curve.c
* gap/gap_wr_color_levels.c
* gap/gap_wr_color_huesat.c
* po/POTFILES.in # added new files
2003-12-10 Sven Neumann <sven@gimp.org>
* configure.in: check for GIMP >= 1.3.24.
* gap/gap_bluebox_main.c (query)
* gap/gap_fmac_main.c (query): removed newlines from PDB help
strings.
* gap/gap_mov_render.c (gap_mov_render_render): use
gimp_layer_remove_mask() instead of gimp_image_remove_layer_mask().
2003-12-06 Wolfgang Hofer <hof@gimp.org>
Preprared NEWS and README files for prerelease
Bluebox: Additional mode with both HSV and RGB thresholds
* gap/gap_main.c # updated internal main version
* gap/gap_bluebox.c [h]
* gap/gap_bluebox_main.c
2003-12-08 Sven Neumann <sven@gimp.org>
* gap/gap_bluebox_main.c
* gap/gap_fmac_main.c
* gap/gap_name2layer_main.c:
s/gimp_undo_push_group/gimp_image_undo_group/
2003-12-04 Sven Neumann <sven@gimp.org>
* gap/gap_lib.c
* gap/gap_range_ops.c: s/gimp_convert/gimp_image_convert/
* gap/gap_mov_render.c: s/gimp_layer_mask/gimp_layer_get_mask/
2003-12-04 Sven Neumann <sven@gimp.org>
* gap/gap_bluebox.c
* gap/gap_filter_iterators.c
* gap/gap_mov_dialog.c
* gap/gap_mov_exec.c
* gap/gap_mov_render.c: s/layer_get_image_id/drawable_get_image/
2003-12-04 Sven Neumann <sven@gimp.org>
* gap/gap_mod_layer.c: s/layer_set_linked/drawable_set_linked/
2003-12-03 Sven Neumann <sven@gimp.org>
* gap/gap_bluebox.c
* gap/gap_filter_foreach.c
* gap/gap_layer_copy.c
* gap/gap_match.c
* gap/gap_mod_layer.c
* gap/gap_mov_exec.c
* gap/gap_mov_render.c
* gap/gap_onion_base.c
* gap/gap_range_ops.c
* gap/gap_split.c: follow latest libgimp API changes.
2003-11-28 Sven Neumann <sven@gimp.org>
* configure.in: added missing AC_PROG_INTLTOOL.
* Makefile.am (EXTRA_DIST): added missing intltool files.
* gap/Makefile.am: respect $(DESTDIR).
* libwavplayclient/Makefile.am (EXTRA_DIST): added $(libexec_SCRIPTS).
2003-11-28 Sven Neumann <sven@gimp.org>
* gap/gap_navigator_dialog.c (gap_navigator): simplified the
dialog code by using the convenient gimp_dialog_run().
2003-11-26 Wolfgang Hofer <hof@gimp.org>
Follow the gimp-1.3.23 API change (gimp_dialog_new)
configure.in # gimp-gap now reqires gimp-1.3.23
gap/gap_bluebox.c
gap/gap_navigator_dialog.c
2003-11-15 Wolfgang Hofer <hof@gimp.org>
bugfixes:Playback: SizeButton SHIFT resulted in Overlapping
Widget arrangement.
Filtermacro: Buttons sensitivity now depends
on valid filtermacro scriptfile name.
gap/gap_fmac_main.c
gap/gap_player_dialog.c
gap/README
2003-11-09 Wolfgang Hofer <hof@gimp.org>
Filtermacro implementation and some bugfixes.
The user can pick the filtercalls (PDB-name and last_values buffer)
of the current session and record them in Filtermacro scripts
for later use (in the same or in other sessions)
WARNING:
- filtermacro scripts are restricted to plug-ins that are able to run with LAST_VALUES.
- filtermacro scripts are machine dependent
and may refuse to run (or even crash) at playback on other machines.
(depending on byte order, padding, and such things)
- filtermacro scripts are a temporary solution,
but support will be removed in the future.
(Gimp may have real Macro support then)
- filtermacro scripts are useful for animations
they can be used like a single filter in "Filter All Layers"
or in the 'Frames Modify' Feature.
gap/gap_dbbrowser_utils.c [.h] # use title_txt (no hardcoded window title), fixed close callbacks
gap/gap_lib.c [.h] # use const char
gap/gap_vin.c [.h] # use const char
gap/gap_fmac_main.c # New Module: Filtermacro Script handling
gap/Makefile.am # updated to copile the new module gap_fmac_main
po/POTFILES.in # added new file
2003-11-05 Wolfgang Hofer <hof@gimp.org>
removed 'Import Layers' Plug-In from gimp-gap.
(This plug-in will be placed somwhere else in the GIMP source tree.
it will not appear in gimp-gap CVS, because creation and change history
happened on my local machine only)
gap/gap_main.c # updated main version
gap/gap_imp_layer_main.c # removed that file
2003-11-04 Wolfgang Hofer <hof@gimp.org>
gimprc:
(audioconvert_program "/usr/local/bin/audioconvert_to_wav.sh")
bugfix: first save attempt of a NON-XCF frame
was just recognized the first time in a GIMP-session.
but must be also recognized when the first frame of any other
NON-XCF animation is to be saved to disk.
(the first save operation of NON-XCF frame
has to be performed INTERACTIVE to define settings for the file-save plug-in)
ARRAY_DIALOG:
blind attempt to fix the "window does not close on cancel button"
part of bug #125977.
(maybe gtk+2.x is a little different on
Windows ? -- i dont have a windows environment to test gimp-gap)
1) now call arr_close_callback explicite on Cancel and other buttons
rather than rely on the implicite call caused by "destroy" event
of the main dialog
2) take care that gtk_main_quit and gtk_widget_destroy(dlg)
are called only once.
3) gimprc configuration for filename extensions
allows to skip the warning dialog for all configured
fileformat extensions. (as suggegsted in #125977 feature request part)
(video-save-flattened-xxx "yes")
where xxx is the extension (jpg, jpeg, png, gif ...)
bugfix: custom palette names for converting to indexed now
have typical platte extension .gpl
(implayer_cmap.gpl , gap_cmap.gpl)
gap/gap_lib.c [.h]
gap/gap_arr_dialog.c # attempt to fix 125977
gap/gap_imp_layer_main.c
2003-11-02 Wolfgang Hofer <hof@gimp.org>
added the 'Import Layers' Plug-In to the gimp-gap package.
changed message texts capitalization (#125429)
and linebreaks (#125430)
There are still some linebreaks where i think it makes sense.
gap/gap_arr_dialog.c
gap/gap_base_ops.c
gap/gap_bluebox.c
gap/gap_dbbrowser_utils.c
gap/gap_decode_xanim.c
gap/gap_filter_foreach.c
gap/gap_lib.c
gap/gap_lock.c
gap/gap_main.c
gap/gap_mod_layer.c
gap/gap_mov_dialog.c
gap/gap_mov_exec.c
gap/gap_mpege.c
gap/gap_name2layer_main.c
gap/gap_navigator_dialog.c
gap/gap_onion_dialog.c
gap/gap_onion_main.c
gap/gap_onion_worker.c
gap/gap_player_dialog.c
gap/gap_player_main.c
gap/gap_range_ops.c
gap/gap_split.c
gap/README # updated docs
gap/Makefile.am # updated to copile the new module gap_imp_layer_main
gap/gap_imp_layer_main.c # new file
gap/gap_layer_copy.c [.h] # new procedure gap_layer_copy_to_image
po/POTFILES.in # added new file
2003-10-29 Wolfgang Hofer <hof@gimp.org>
removed DEPRECATED gtk_window_set_policy calls
In case of the MovePath this required some workarounds.
With current workarounds you can enlarge the dialog window
continously but all shrinking window resize actions
shrink down to the initial window size immediate.
(The old version with gtk_window_set_policy did allow
continous shrinks, but sometimes placed wigets overlapping
each other after shriking the window)
MovePath: removed MOVE_PATH_FRAMES_ENABLE conditional compiled
layout otion for extra decoration frames in the layout
gap/gap_player_dialog.c
gap/gap_mov_dialog.c
gap/gap_bluebox.c # chnged processing order to feather before shrink
2003-10-26 Wolfgang Hofer <hof@gimp.org>
bugfix: MovePath rendering of the TraceLayer produces trash
in the areas that should be transparent. (added an initial
clear of the tracelayer at creation).
bugfix: tracelayer and tweenlayer opacity handling must respect current
opacity of the moving object
bugfix: #124897 (translation did not work because INIT_I18N() was missing
gap/gap_arr_dialog.c [.h] # adjustment has type GtkObject
gap/gap_mov_exec.c
gap/gap_mov_render.c
gap/gap_player_dialog.c # bugfix #124896 typemissmatch "Cannels"
gap/gap_name2layer_main.c # changed labeltext "Decoders:" to "Mode:"
gap/gap_player_main.c # #124897
gap/gap_name2layer_main.c # #124897
gap/README # update docs for the new features
2003-10-22 Wolfgang Hofer <hof@gimp.org>
bugfix MovePath Selection Handling.
(When everything is selected in the SourceImage
the whole Alpha Channel was cleared to full transparent)
gap/gap_mov_render.c # bugfix selectiopn handling
gap/gap_mov_render.h # bugfix selectiopn handling
gap/gap_mov_exec.c
gap/gap_mov_dialog.c
gap/gap_player_dialog.c # bugfix #124896 typemissmatch "Cannels"
2003-10-20 Wolfgang Hofer <hof@gimp.org>
Merged changes from CVS-snapshot 2003.10.15
with my local changes since 2003-10-04
2003-10-18 Wolfgang Hofer <hof@gimp.org>
Request to remove dead code modules:
(i think i already removed those file,
but they appear in the CVS snaphots again)
gap/gap_exchange_image.c # dead code
gap/gap_exchange_image.h # dead code
gap/resize.h # dead code
VCR Navigator: Removed Close Button.
2003-10-16 Wolfgang Hofer <hof@gimp.org>
Extended MovePath to [optional] respect Selections
in the SourceImage (or SourceFrames).
feather_radius can be controled individual
via controlpoint settings.
(allows more or less smooth edges for the moving objects)
extended controlpoint fileformat with feather_radius
2003-10-15 Wolfgang Hofer <hof@gimp.org>
Extended MovePath to allow Bluebox Filtercalls
on the handled moving SourceLayer.
2003-10-14 Wolfgang Hofer <hof@gimp.org>
New Bluebox Plug-In
Converts the keycolor to Transparent Aplhachannel
based on a By Color Selection, and optional Selection Feather / Shrink Ops.
2003-10-09 Wolfgang Hofer <hof@gimp.org>
Support for Selection Handling in 'Frames To Image'
and 'Frames Modify' Plug-In.
Now you can propagate Selections from one Frame
into all Frames of a selected Framerange (Frames Modify)
or pick up a Multilayer Image from Frames respecting Selections
(Frames To Image)
2003-10-07 Wolfgang Hofer <hof@gimp.org>
Cleanup all external Procedure and type names
as first step for the planed Library libgimpgap.so
here are the internal revision numbers that wer used for the cleanup
(those versions are kept on my local machine only and were not
checked into CVS)
gimp-gap-1.3.20d_pre107 # compileclean with all new names
gimp-gap-1.3.20d_pre106 # manual name changes (that would conflict on automatic string replacements)
gimp-gap-1.3.20d_pre105 # was the sourcecode base
touched nearly ALL Sourcefiles for this Cleanup Step.
the affected fiels are:
gap/gap_arr_dialog.c gap/gap_arr_dialog.h
gap/gap_base_ops.c gap/gap_dbbrowser_utils.c gap/gap_dbbrowser_utils.h
gap/gap_decode_xanim.c gap/gap_filter.h gap/gap_filter_codegen.c
gap/gap_filter_foreach.c gap/gap_filter_pdb.c gap/gap_filter_pdb.h
gap/gap_frontends_main.c gap/gap_layer_copy.c gap/gap_layer_copy.h
gap/gap_lib.c gap/gap_lib.h gap/gap_lock.c gap/gap_lock.h gap/gap_main.c
gap/gap_match.c gap/gap_match.h gap/gap_mod_layer.c gap/gap_mod_layer.h
gap/gap_mov_dialog.c gap/gap_mov_dialog.h gap/gap_mov_exec.c
gap/gap_mov_exec.h gap/gap_mov_render.c gap/gap_mov_render.h gap/gap_mpege.c
gap/gap_mpege.h gap/gap_name2layer_main.c gap/gap_navi_activtable.c
gap/gap_navi_activtable.h gap/gap_navigator_dialog.c gap/gap_onion_base.c
gap/gap_onion_base.h gap/gap_onion_dialog.c gap/gap_onion_dialog.h
gap/gap_onion_main.c gap/gap_onion_main.h gap/gap_onion_worker.c
gap/gap_onion_worker.h gap/gap_pdb_calls.c gap/gap_pdb_calls.h
gap/gap_player_dialog.c gap/gap_player_dialog.h gap/gap_player_main.c
gap/gap_player_main.h gap/gap_pview_da.c gap/gap_pview_da.h
gap/gap_range_ops.c gap/gap_range_ops.h gap/gap_resi_dialog.c
gap/gap_resi_dialog.h gap/gap_split.c gap/gap_thumbnail.c gap/gap_thumbnail.h
gap/gap_timeconv.c gap/gap_timeconv.h gap/gap_vin.c gap/gap_vin.h
2003-10-06 Wolfgang Hofer <hof@gimp.org>
MovePath: added GrabPath Button (new STOCK icon)
--> does not work properly, because the API
gimp_path_get_points is broken in gimp-1.3.20
(it delivers only the first 1/3 of the path points)
Show waiting_cursor while busy with rendering the AnimPreview
Added NON-Interactive API for the new MovePath features
* gap/gap_main.c
* gap/gap_mov_dialog.c [.h]
* gap(gap_stoc.c [.h]
2003-10-05 Wolfgang Hofer <hof@gimp.org>
Player: tweaks in the resize behavior of the dialog window
MovePath: On Window resize (enlarge), automatic
resize the Preview to use the extra layout space.
keep a cached copy of the currently displayed frame
(tmp_alt_image_id)
to speed up instant update requests.
Implemented rendering for tween_layer and trace_layer features.
* gap/gap_mov_dialog.c [.h]
* gap/gap_mov_render.c [.h]
* gap/gap_mov_exec.c [.h]
2003-10-04 Wolfgang Hofer <hof@gimp.org>
Array Dialog: bugfix: added missing implementation for WGT_RADIO defaults
* gap/gap_arr_dialog.c [.h]
2003-10-15 Danilo Å egan <dsegan@gmx.net>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-10-15 Sven Neumann <sven@gimp.org>
Fixed translation of menu entries (reported in bug #124600):
* configure.in: don't add GAPLIBDIR to CPPFLAGS here...
* gap/Makefile.am: ... but include it here in AM_CPPFLAGS.
* gap/gap-intl.h: bail out if config.h hasn't been included earlier.
* gap/gap_filter_main.c
* gap/gap_frontends_main.c
* gap/gap_main.c
* gap/gap_name2layer_main.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_base.c
* gap/gap_onion_main.c
* gap/gap_pdb_calls.c
* gap/gap_player_main.c: no need to call INIT_I18N() in query()
functions. Call gimp_plugin_domain_register() before registering
procedure with menu entries.
2003-09-30 Sven Neumann <sven@gimp.org>
* gap/gap_match.c (p_match_number): added a missing const qualifier,
removed trailing whitespace.
2003-09-28 Wolfgang Hofer <hof@gimp.org>
MovePath: dialog layout reorganisation
bugfixes:
- report errors when controlpointfile load/save failed.
- overwrite warning dialog if controlpointfile already exists.
new features (some are not completely finished yet)
- Instant Apply
- Perspective Transformation
- Stepspeed Factor
- Tween Layer Processing for fast moving objects
==> Rendering not implemented yet
- TraceLayers
==> Rendering not implemented yet
- changed Scalefactors, Opacity and Rotation values
from int to float (int precentage 0 to 100 was not precise enough)
- extended the controlpoint fileformat to handle float numbers
and perspective factors (old fileformat is also accepted at load)
* gap/gap_main.c
* gap/gap_mov_dialog.c [.h]
* gap/gap_mov_exec.c [.h]
* gap/gap_mov_render.c [.h]
* gap/gap_arr_dialog.c [.h]
2003-09-23 Sven Neumann <sven@gimp.org>
* gap/Makefile.am: no need for using EXTRA_PROGRAMS here, the
automake conditional should be sufficient.
* libwavplayclient/Makefile.am: install the audioconvert script as
executable.
2003-09-23 Wolfgang Hofer <hof@gimp.org>
checked all Iterator Procedures and fixed most of them
to make plug-ins of the gimp-1.3.20 release
work with 'Filter All Layers' again.
added new iter_ALT Procedures for some plug-ins
that had none, but make sense when called via 'Filter All Layers'
Iterators now support more datatypes (guint, guint32, GimpRGB, GimpVector3)
Playback: use GAPLIBDIR to locate the default audioconvert program
* Makefile.am
* configure.in
* gap/Makefile.am
* gap/gap_dbbrowser_utils.c
* gap/gap_dbbrowser_utils.h
* gap/gap_filter.h
* gap/gap_filter_foreach.c
* gap/gap_filter_iterators.c
* gap/gap_filter_main.c
* gap/gap_filter_pdb.c
* gap/gap_filter_pdb.h
* gap/gap_main.c
* gap/gap_mod_layer.c
* gap/gap_player_dialog.c
* gap/gimplastvaldesc.c
* gap/gimplastvaldesc.h
* gap/iter_ALT/README_iter_subdirs
* gap/iter_ALT/gen/plug_in_edge_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_mosaic_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_newsprint_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_randomize_hurl_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_randomize_pick_iter_ALT.inc
* gap/iter_ALT/gen/plug_in_randomize_slur_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_alienmap2_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_apply_canvas_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_blur_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_colortoalpha_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_deinterlace_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_exchange_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_illusion_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_lic_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_lighting_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_make_seamless_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_map_object_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_max_rgb_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_maze_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_normalize_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_nova_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_papertile_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_plasma_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_sel_gauss_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_sinus_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_small_tiles_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_sobel_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_solid_noise_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_unsharp_mask_iter_ALT.inc
* gap/iter_ALT/mod/plug_in_vinvert_iter_ALT.inc
* libwavplayclient/Makefile.am
2003-09-22 Sven Neumann <sven@gimp.org>
* configure.in: redone the checks for audio support and build of
unix frontends. Moved the output to the end and introduced
automake conditionals.
* gap/Makefile.am
* gap/gap_player_dialog.c: changed accordingly.
* Makefile.am: build the libwavclient directory conditionally.
* gap/gap_navigator_dialog.c (run): cannot use kill() on WIN32.
2003-09-15 Wolfgang Hofer <hof@gimp.org>
bugfix attempt for #122220 (gap_frontends require UNIX to run)
Non UNIX users should run autogen.sh (configure) with the new option
--disable-unix-frontends when they run into compile troubles
* configure.in new parameter: --disable-unix-frontends
* gap/Makefile.am
* gap/gap_decode_xanim.c
2003-09-14 Wolfgang Hofer <hof@gimp.org>
Updated GAP Version of DBBROWSER to remove old DEPRECATED codeparts.
(Merged in from
gimp-1.3.20/plug-ins/dbbrowser/dbbrowser_utils.c)
Added display of the MenuPath, and Search by MenuPath Button
This was needed because Users of FilterAllLayers
(or Video/FramesModify) may not find the requested Filter
by searching for the internal PDB Name.
But this is not the final solution, because there is no API for plug-ins
to get the Translated MenuPath for the plug-ins in the PDB.
(at least i did not found an API that can do that)
new features:
- Player: Added "Copy As Wavfile" Button and corresponding PopUp Dialog
allows conversion from other audioformats to wav,
and optional resample using lower samplerates.
The Conversion is done by CALL of a configurable external Program.
gimprc:
(audioconvert_program "/usr/local/bin/audioconvert_to_wav.sh")
env:
export AUDIOCONVERT_TO_WAV=/usr/local/bin/audioconvert_to_wav.sh
Added audioconvert_to_wav.sh script as external Program,
based on sox and lame.
(now can handle MP3 and other audiofile formats
by converting to RIFF WAV)
- Player: Added Video time and videoframes Labels in the Audio TAB.
- Player: Use Abstract AudioPlayerClient API (apcl_ ) Procedures
bugfixes:
- Player: scaling of the Player window did unwanted skip to the initial Frame Number.
- fixed some compiler warnings
- Player: FrameNr Spinbutton callback must
resync audio to the new Position when playing
- Player: Selection of a new audiofile did continue play the old one
- Player: selection of audiofile via fileselect dialog did not work (sometimes)
* libwavplayclient/audioconvert_to_wav.sh [newly added]
* libwavplayclient/wpc_client.c
* libwavplayclient/wpc_lib.h
* gap_dbbrowser_utils.c [.h]
* gap/gap_match.c [.h]
* gap/gap_player_dialog.c
* gap/gap_player_main.c [.h]
* gap/gap_arr_dialog.c extended WGT_LABEL (now can create 2 LABELS per row)
changed Makefiles and Configure to use libwavplayclient.a
as convenience-Library.
Added Abstract AudioPlayerClient API Procedures Layer (apcl_)
* Makefile.am
* configure.in
* libwavplayclient/Makefile.am
deleted duplicate sourcefiles in the gap directory
the original wpc_* files belong to libwavplayclient.a
and should appear in the libwavplayclient only.
* gap/wpc_*.c [.h] REMOVED dont add those file to distributions any longer.
2003-09-13 Sven Neumann <sven@gimp.org>
* libwavplayclient/client.[ch]
* libwavplayclient/msg.c
* libwavplayclient/procterm.c
* libwavplayclient/wavfile.c
* libwavplayclient/wavfile.[ch]: removed $Log keyword from there
files together with the cvs log that was inserted when I did my
last commit. It broke the build :(
2003-09-08 Sven Neumann <sven@gimp.org>
* gap/gap_player_main.c
* gap/gap_name2layer_main.c: fixed harmless but annoying compiler
warnings.
* libwavplayclient/client.c
* libwavplayclient/wavfile.c: include <glib.h> for g_strerror(),
removed redefinition of TRUE/FALSE.
2003-09-07 Wolfgang Hofer <hof@gimp.org>
Playback Module:
added ctrl/alt modifiers for callback on_go_button_clicked
added optional audiosupport based on wavplay (Linux only)
(Dont know how to make/install libwavplayclient as library
the gap/wpc_* files are just a workaround to compile without
libwavplayclient)
VCR-Navigator:
bugfix: show waiting cursor at long running ops
to set range begin/end frame
bugfix: frame timing labels did always show time at 24.0 fps
now use the current framerate as it should be.
* configure.in new parameter: --disable-audiosupport
* gap/Makefile.am variable GAP_AUDIOSUPPORT (for conditional audiosupport)
* gap/gap_player_dialog.c
* gap/gap_vin.c (force timezoom value >= 1 in case .vin has 0 value)
* gap/gap_navigator_dialog.c
* gap/gap_mpege.c (bugfix for #121145 translation text)
* gap/gap_lib.c [.h]
* gap/gap_timeconv.c [.h]
new files ()
* gap/wpc_client.c
* gap/wpc_lib.h
* gap/wpc_msg.c
* gap/wpc_procterm.c
* gap/wpc_wavfile.c
* libwavplayclient/wpc_client.c
* libwavplayclient/wpc_lib.h
* libwavplayclient/wpc_msg.c
* libwavplayclient/wpc_procterm.c
* libwavplayclient/wpc_wavfile.c
* libwavplayclient/COPYING
* libwavplayclient/Makefile.am /* Not finished and currently not OK */
* libwavplayclient/README
* libwavplayclient/client.c
* libwavplayclient/client.h
* libwavplayclient/msg.c
* libwavplayclient/procterm.c
* libwavplayclient/wavfile.c
* libwavplayclient/wavfile.h
* libwavplayclient/wavplay.h
2003-09-01 Metin Amiroff <metin@karegen.com>
* configure.in: Added "az" in ALL_LINGUAS.
2003-08-25 Sven Neumann <sven@gimp.org>
* gap/gap_vin.c (p_get_video_info): use g_new0() instead of the
ugly g_malloc0() construct. Initialize timezoom to 1 to avoid
instant crash of the GAP navigator due to division by zero.
2003-08-23 Wolfgang Hofer <hof@gimp.org>
increased entry_width for framenumbers from 45 to 80 (45 is too
small for 6 digits)
bugfix: do not attempt to write thumbnails for internal save op with
temp filenames
bugfix: onionskin automatic sometimes goes crazy when vin_ptr struct
is not properly initialized
* gap/gap_arr_dialog.c
* gap/gap_vin.c (p_get_video_info must clear (g_malloc0) vin_ptr
struct at creation)
* gap/gap_lib.c (dont mix gap_debug messages to stdout/stderr)
2003-08-19 Abel Cheung <maddog@linux.org.hk>
* configure.in: Removed "ga" "gl" "ro" from ALL_LINGUAS.
2003-07-31 Wolfgang Hofer <hof@gimp.org>
message text fixes for translators (# 118392)
* gap/gap_arr_dialog.c
* gap/gap_base_ops.c
* gap/gap_mpege.c
* gap/gap_main.c
* gap/gap_range_ops.c
* gap/gap_decode_xanim.c
* gap/gap_player_dialog.c
* gap/gap_mov_dialog.c
2003-07-30 Sven Neumann <sven@gimp.org>
* configure.in: use AM_PATH_GIMP_2_0, changed gettext domain to
gimp20-gap.
2003-07-29 Wolfgang Hofer <hof@gimp.org>
Minor fixes: compiler warnings signed/unsigned comparisons,
types of parameters in the GimpPlugInInfo.run procedure
changed to fit gimp-1.3.17
gimp_interactive_selection_font was renamed to: gimp_font_select_new
* gap/gap_main.c
* gap/gap_arr_dialog.c [.h]
* gap/gap_filter_iterators.c
* gap/gap_filter_main.c
* gap/gap_filter.h
* gap/gap_timeconv.c
* gap/gap_frontends_main.c
* gap/gap_name2layer_main.c
* gap/gap_navigator_dialog.c
* gap/gap_onion_main.c
* gap/gap_player_main.c
2003-07-14 Sven Neumann <sven@gimp.org>
* gap/gap_mpege.c
* gap/gap_name2layer_main.c
* gap/gap_onion_base.c
* gap/gap_onion_dialog.c
* gap/gap_split.c: removed whitespace from messages (bugs #117205
and #117206) and fixed a typo (bug #117207). Removed trailing
whitespaces from the code.
2003-07-12 Wolfgang Hofer <hof@gimp.org>
Onionskin Configuration Dialog:
added Close Button, Auto Create after Load, Auto Delete before Save
(suggestions from Richard Van Den Boom),
Scope of Onionskin Settings changed from "Global for GIMP Session"
to "Permanent for the current Animation"
(Settings are now stored in the *_vin.gap files)
Some Internal Reorganisations, more general video_info file handling
(added processing of the onionskin Settings here)
Bugfixes Navigator Dialog: video paste now working again,
scale slider now reflects visible size
del_button, dup_button sensitvity depends on selections
* gap/gap_onion_base.c [.h] (newly created modules, spliited of from gap_onion_worker)
* gap/gap_onion_worker.c [.h]
* gap/gap_onion_main.c [.h]
* gap/gap_onion_dialog.c
* gap/gap_lib.c [.h]
* gap/gap_vin.c [.h]
* gap/gap_navigator_dialog.c
* gap/gap_arr_dialog.c
* gap/gap_mov_dialog.c // removed deprecated GtkKPreview widget (replaced by drawing_area based gap_pview_da calls)
* gap/README: updated GAP-specific gimpc config
* gap/Makefile.am
2003-07-07 Sven Neumann <sven@gimp.org>
* gap/README_developers: updated the example code. It was still
refering to GIMP-1.0 API.
2003-07-06 Wolfgang Hofer <hof@gimp.org>
bugfixes in onionskinlayer non-interactive PDB api,
bugfixes in onionskinlayer dialog
spinbutton values were ignored when typed into the entry
(connect to "value_changed" of the ajustment
rather than "changed" of spinbutton)
added new parameter farn_opaque for ascending opacity.
(useful for cross-fading)
gap/gap_onion_main.c [.h]
gap/gap_onion_worker.c
2003-07-04 Wolfgang Hofer <hof@gimp.org>
bugfixes in the Navigator Dialog
- Smart Thumbnail update
- drop cached thumbnails (deafult icons) after Thumbnail update
* gap/gap_navigator_dialog.c
2003-07-04 Wolfgang Hofer <hof@gimp.org>
new Feature Change Framedensity
Confirm Dialog for Frame Delete Operations
should depend on new gimprc Paramter:
(video-confirm-frame-delete no) // defaults to yes.
==> does not work. (gimprc was edited by hand)
?? maybe gimprc does not support foreign keywords
(unknown to the gimp-core) any longer
* gap/gap_main.c
* gap/gap_bae_ops.c [.h]
* gap/gap_arr_dialog.c [.h]
2003-07-02 Wolfgang Hofer <hof@gimp.org>
Navigator Dialog: bugfix for highlighting of selected items.
minor Tooltips helptext fixes
* gap/gap_navigator_dialog.c
* gap_onion_dialog.c
2003-06-30 Abel Cheung <maddog@linux.org.hk>
* configure.in: Added "hr" "it" "lt" "nn" "ro" "sl" "zh_CN" to ALL_LINGUAS.
2003-06-30 Sven Neumann <sven@gimp.org>
* gap/gap_decode_mpeg_main.c
* gap/resize.c: removed these unused files from CVS.
2003-06-29 Wolfgang Hofer <hof@gimp.org>
- VCR Navigator Redesign
- replaced all the scrolled_window stuff by a gtk_table
and add/remove rows on significant window height changes.
now the navigator can handle unlimited number of animframes
uses less resources and works faster.
- use gap_pview_da instead of deprecated gtk_preview
- mtime checking now based on framefilename
(checking the thumbnailfilename is not a good idea since we support
2 thumbnail standards)
- added Select All / Select None menu_items
to the PopUp Menu
- manage scroll and selection in navigator code.
HIGHLIGHTING of the selected frame_widgets does not work yet.
(need to learn more about gtk to fix that)
* gap/gap_navigator_dialog.c
* gap/gap_pview_da.c [.h]
* gap/Makefile.am
2003-06-26 Wolfgang Hofer <hof@gimp.org>
- Player: layout bugfix preview drawing_area size did not math surrounding frame
(now using an aspect_frame, required some changes in resizing)
query gimprc for "show-tool-tips"
* gap/gap_pview_da.c [.h]
* gap/gap_player_main.c [.h]
* gap_player_dialog.c
- no textsplitting across multiple lables (for translation)
* gap/gap_mpege.c
* gap/gap_decode_xanim.c
-- gimp-gap-1.3.15a_pre52 --
2003-06-22 Wolfgang Hofer <hof@gimp.org>
- downloaded CVS-snapshot gimp-gap-2003-06-20.tar.gz and
merged changes from mitch with my local copy of gimp-gap
(could not test the merged version, because gimp-1.3.16 was not availabe
for download, and i have no CVS)
* ChangeLog (added merge comments)
configure.in (using CVS 1:1 no changes needed)
gap/gap_decode_mpeg_main.c (using CVS 1:1 no changes needed this is DEAD code)
gap/gap_filter_codegen.c (using CVS 1:1 no changes needed)
gap/gap_filter_iterators.c (using CVS 1:1 no changes needed)
gap/gap_filter_main.c (using CVS 1:1 no changes needed)
gap/gap_filter_pdb.c (using CVS 1:1 no changes needed)
gap/gap_frontends_main.c (using CVS 1:1 no changes needed)
* gap/gap_stock.c (initilized bug was already fixed local)
2003-06-21 Wolfgang Hofer <hof@gimp.org>
- cleanup texts with leading/trailing spaces (textspacing)
(changes applied to all po/*.po files)
* gap/gap_array_dialog.c
* gap/gap_base_ops.c
* gap/gap_decode_xanim.c
* gap/gap_mod_layer
* gap/gap_mpege.c
* gap/gap_range_ops.c
- bugfixes and performance tweaks for the Playback Module
(use a seperate new module for rendering drawing_area with GDK routines,
and handle expose events in my own handler)
* gap/gap_player_main.c [.h]
* gap/gap_player_dialog.c [.h]
* gap/gap_pview_da.c [.h]
- VCR Navigator bugfix for OPS-Button handler makes SHIFT modifier work again.
- gap_name2layer_main.c bugfix: MenuPath is language dependent string
- gap_mov_dialog.c: attempt to remove some deprecated calls (no success)
2003-06-15 Wolfgang Hofer <hof@gimp.org>
- (hopefully temporary) Workaround in gap_pd_calls.c: p_gimp_image_thumbnail
gimp_image_thumbnail cant handle size bigger than 128x128
but return success and NULL data pointer on bigger sizes
(The workaround tries a 2.nd call with reduced size in such cases)
- VCR Navigator:
now use new gap_player Plug-In as new playback standard,
SHIFT: use gimp animation play (on temp_image)
- new modules for gap common use in playback and naviagator
* gap/Makefile.am
* gap/gap_pview.c [.h]
* gap/gap_timeconv.c [.h]
2003-06-09 Wolfgang Hofer <hof@gimp.org>
- Start Implementation of video playback modules
* gap/Makefile.am
* gap/gap_player_main.c [.h]
* gap/gap_player_dialog.c [.h]
- gap_stock.c:gap_stock_init bugfix: must set initialized = TRUE; to avoid double init problems
* images/Makefile.am
* images/gap-play-reverse.png
* images/gap-pause.png
2003-06-20 Michael Natterer <mitch@gimp.org>
* configure.in: require autoconf 2.52 and GIMP 1.3.16.
* gap/gap_decode_mpeg_main.c
* gap/gap_filter_codegen.c
* gap/gap_filter_iterators.c
* gap/gap_filter_main.c
* gap/gap_filter_pdb.c
* gap/gap_frontends_main.c: made all GIMP_EXTENSION procedures
normal GIMP_PLUGIN ones to follow the latest GIMP API change.
2003-06-20 Michael Natterer <mitch@gimp.org>
* gap/gap_stock.c (gap_stock_init): set initialized to TRUE
before returning.
2003-06-04 Sven Neumann <sven@gimp.org>
* gap/gap_navigator_dialog.c
* gap/gap_stock.[ch]: use GIMP and GTKstock icons instead of
duplicating them.
* images/Makefile.am
* images/gap-delete.png
* images/gap-duplicate.png
* images/gap-first.png
* images/gap-last.png
* images/gap-next.png
* images/gap-prev.png: removed duplicates of GIMP and GTK+ stock
icons.
* images/gap-*.png: replaced with versions from Jimmac's web-site
that have full transparency.
2003-06-03 Wolfgang Hofer <hof@gimp.org>
- switched to PNG stock-icons
added gap_stock.c [.h]
added images directory
removed pixmaps directory
(gap_navigator_dialog.c, gap_mov_dialog.c)
- gap_vin.c : using setlocale independent float conversion procedures g_ascii_strtod() and g_ascii_dtostr()
- gap_thumbnail.c: check only for thumbnail-size "none" (suggested by sven see #113033)
removed p_gimp_file_has_valid_thumbnail
### unstable prerelease: gimp-gap-1.3.14a_pre37 (http://sven.gimp.org/gimp-gap-2003-05-30.tar.gz)
2003-05-27 Wolfgang Hofer <hof@gimp.org>
- GAP thumbnail handling procedures are now in module gap_thumbnail
- support for new PNG thumbnail standard
(old .xvpics standard is supported too
but only at read, copy, rename and delete file operations)
- conditional thumbnail creation depends on gimprc
keywords: thumbnail-size, video-thumbnails
value strings for video-thumbnails are "none", "standard"
- gap_lib conditional save now depends on
GIMP standard gimprc keyword "trust-dirty-flag"
(removed support for old GAP private keyword "video-unconditional-frame-save")
- gap_navigator_dialog
- replaced scale widgets by spinbuttons
- check gimprc for layer-preview-size (tiny to gigantic)
(old keyword was just "preview-size")
- gap_split_image
- bugfix: force default name (without numberpart) for unnamed image
(otherwise split would be rejected as "is already an animframe")
- added parameter: digits and only_visible
- gap_mov_dialog.c some layout changes suggested by Jakub Steiner
- added pixmap to buttons (many thanks to Jakub for the Icons)
- Moved the preview Frame slider right below the preview
- Clear point and Clear all points was renamed to
Reset point/Reset all points.
- p_set_video_info: now keeps unkown keyword lines in
'videoinfo (_vin.gap) files
(to be compatible to future expansions)
- internal sourcecode reorganisations:
-new module gap_base_ops.c [.h] split off from gap_lib.c [.h]
-new module gap_mov_render.c [.h] split off from gap_mov_dialog.c [.h]
-new module gap_vin.c [.h] split off from gap_pdb_calls.c [.h]
-new module gap_thumbnail.c [.h] from gap_lib.c [.h] and gimp/app/core/gimpimagefile.c
2003-05-22 Wolfgang Hofer <hof@gimp.org>
- added onionskin modules
gap_onion_main.c \
gap_onion_main.h \
gap_onion_dialog.c \
gap_onion_dialog.h \
gap_onion_worker.c \
gap_onion_worker.h \
(this is the integration of the onionskin stand alone package
plus porting to gimp-1.3.14, gtk+-2.2)
2003-05-21 Wolfgang Hofer <hof@gimp.org>
- added gap/gap_resi_dialog.c [h] again.
The code was completly rewritten inspired by gimp/app/resize.c
and provides dialogs for scale/resize/crop Frames
(now using the GimpOffsetArea widget.)
2003-05-16 Wolfgang Hofer <hof@gimp.org>
- gap_array_dialog
- new WGT_FONTSEL
- gap_array_dialog new WGT_DEFAULT_BUTTON
moved to action area, now using button from stock GIMP_STOCK_RESET
- changed WGT_INT, and WGT_FLT from entry to spinbutton
- put OK button rightmost (new GUI standard)
- Added new Plug-In gap_name2layer_main.c
create a textlayer from imagename (or its number part)
optional renders on active drawable.
- Put OK Button right (Gnome GUI Standard)
gap_array_dialog.c, gap_mov_dialog.c, gap_mod_layer.c
2003-05-09 Sven Neumann <sven@gimp.org>
Merged a large patch from Wolfgang Hofer.
Did some cleanup after applying the patch:
- Removed all calls to _gimp_help_init().
- Replaced all calls to gtk_init() with gimp_ui_init().
- Added back G*_DISABLE_DEPRECATED to the CPPFLAGS.
- Replaced newly added deprecated code with non-deprecated
variants.
------- Wolfgang Hofer 2003.05.03 -------
Removed Files:
# (those files are no longer part of GAP, dont include them in distributions
# but keep them in CVS for older GAP versions)
gap/gap_resi_dialog.c
gap/gap_resi_dialog.h
gap/resize.c
gap/resize.h
gap/gap_exchange_image.c
gap/gap_exchange_image.h
gap/gap_decode_mpeg_main.c
Removed Dir:
gap/gimp_1.0.2_src
New Files:
gap/gap_lock.c
gap/gap_lock.h
gap/gap_lastvaldesc.c
gap/gap_lastvaldesc.h
gap/gimplastvaldesc.c
gap/gimplastvaldesc.h
-------
------------------
Porting Change Log
__________________
2003.05.03
x- filter all layers
o- gimplastvaldesc will not be added to libgimp in gimp-1.3.x
need more general solution for gimp 2.0
x- add the old Iterator_ALT stuff (that was removed in the current port)
- still need to check all interfaces
?- Tooltips does not work because gimp_help_init was removed ( was renamed to _gimp_help_init)
gap_std_dialog (pid:2252): Gtk-CRITICAL **: file gtktooltips.c: line 244 (gtk_tooltips_set_tip): assertion `GTK_IS_TOOLTIPS (tooltips)' failed
i changed gap to use _gimp_help_init instead of gimp_help_init to keep
to keep calls to gimp_help_set_help_data working with gimp-1.3.12 .
==> maybe this has to be changed because the name _gimp_help_init does not sound like a public interface ??,
another idea to fix that, is to remove all calls to gimp_help_set_help_data
and use native gtk_tooltips instead.
(i also tried to use gimp_widgets_init but this did not work
becuse it sometimes will be called twice.
leads to crash in MovePath-> Animated preview where more dialog windows
(MovePath dialog and array_dialog) are opened.
x- merge in (upto)6-digit framenumber support feature (from gap_vid_enc project)
x- implement renumber feature
x- merge in existing gap port into gimp-gap CVS version provided by sven
x- Remove gap_decode_mpeg (gap_decode_mpeg_main.c)
The obsolete plug-in gap_decode_mpeg uses the old unmaintained libmpeg
and crashed in most of the tests...
2003.04.xx
------------------------------------
GAP has moved to a seperate CVS project. "gimp-gap"
Automake Makefiles configuration was created by Sven.
The old GAP sourcecode (that was part of gimp-1.2.x)
with its complete history was used to create the new project.
Sven did some little modifications (gap-intl.h) to comiple standalone with gimp-1.3.x
------------------------------------
2003.01.19
x- use gimp_directory (replace gimp_gimprc_query for "gimp_dir")
x- GAP conditional save (based on gimp_image_is_dirty)
The USER can turn ON unconditional Save (old behavior)
by adding the following Line to .gimp-1.3/gimprc file:
(video-unconditional-frame-save "yes")
x- gap_arr_dialog merged in changes of the gap_vid_enc project
added WGT_OPT_ENTRY (entry comined with Optionmenu) and WGT_DEFAULT_BUTTON
2002.09.21
x- added gap_lastvaldesc
(as wrapper for gimplastvaldesc that may (or may not) be part of libgimp
depending on HAVE_LASTVALDESC_H )
2002.04.21
API cleanup
x- redesign of gap_locking
The new gap_locking uses a locktable with only one identifier
(used in gimp_set_data) and overwrites unused records in the locktable.
(the old algorithm used the image_id with constant prefix as Locking key.
But with the new methode gimp_displays_reconnect the image_id changes on
each image exchange, and would leave a lot of useless locks.)
x- removed all calls to gimp_drawable_set_image (obsolete)
and use p_gimp_layer_new_from_drawable to copy layers from other images.
(as recommanded by mitch -- see #77508 )
x- GAP VCR Navigator must notice changes of the active_image_id
2002.03.23
x- removed iter_ALT (subdir and all iter_ALT PDB Procedures, were replaced by Common Iterator)
x- removed
gap_filter_codegen.c (old codegeneraor stuff for iter_ALT procedures)
gap_exchange_image.h .c (now using gimp_displays_reconnect -- see #77508)
x- gap_decode_xanim.c (merged in bugfix 1.2.2c from stable branch; xanim call fails if . not in PATH or no write permission for current dir)
2002.03.12 gap-1.3.4_pre09
x- Bugreport #74485: GAP crashes the GIMP-1.3.4 in the final call of gimp_displays_flush
==> The layer stealing strategy does not use clean API
and will be replaced by a new clean Concept.
|