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
|
=== release 1.9.1 ===
2016-07-06 Sebastian Dröge <slomo@coaxion.net>
* configure.ac:
releasing 1.9.1
2016-06-29 16:37:43 +0900 Kazunori Kobayashi <kkobayas@igel.co.jp>
* omx/gstomxvideodec.c:
omxvideodec: Use GST_VIDEO_FRAME_PLANE_STRIDE() to get output buffer's stride
GST_VIDEO_FRAME_PLANE_STRIDE() should be used to get the actual buffer stride,
as reported in the buffers's GstVideoMeta, when copying data to that buffer.
https://bugzilla.gnome.org/show_bug.cgi?id=768173
2016-06-21 11:48:40 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* common:
Automatic update of common submodule
From ac2f647 to f363b32
2016-06-21 11:43:13 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxaudioenc.c:
omxaudioenc: implement GstPreset interface
To allow user to use GstPreset to quickly save and load a set of
parameters.
https://bugzilla.gnome.org/show_bug.cgi?id=767907
2016-06-21 11:41:15 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvideoenc.c:
omxvideoenc: implement GstPreset interface
To allow user to use GstPreset to quickly save and load a set of
parameters.
https://bugzilla.gnome.org/show_bug.cgi?id=767907
2016-06-17 12:06:48 +0300 Sebastian Dröge <sebastian@centricular.com>
* configure.ac:
* omx/gstomx.h:
* omx/gstomxaudiodec.c:
* omx/gstomxaudioenc.c:
* omx/gstomxvideo.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: #define OMX_SKIP64BIT on the RPi as required by their API
Also add generic support for OMX_SKIP64BIT to gst-omx, in case other
implementations also #define that for whatever reason.
https://bugzilla.gnome.org/show_bug.cgi?id=766475
2016-06-17 10:59:45 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Implement ::drain() virtual method
https://bugzilla.gnome.org/show_bug.cgi?id=767641
2016-06-04 19:31:45 +0100 Tim-Philipp Müller <tim@centricular.com>
* configure.ac:
configure: remove AG_GST_PARSE_SUBSYSTEM_DISABLES
This would check which subsystems are disabled in core by grepping
gstconfig.h. Only problem is: gstconfig.h has moved into libdir now
so we've been checking a non-existent file for a while now. The
macro would just sets GST_DISABLE_* for use in configure.ac and
Makefile.am, but we don't use that anywhere so just get rid of it
(the one place where we use GST_DISABLE_GST_DEBUG is in a .c file
which gets the define from the gstconfig.h include).
https://bugzilla.gnome.org/show_bug.cgi?id=750056
2016-01-20 03:10:38 +0900 Gwang Yoon Hwang <yoon@igalia.com>
* examples/egl/testegl.c:
* omx/gstomxvideodec.c:
omxvideodec : Use gstglmemoryegl for the RPi
Modified to use gstglmemoryegl to avoid texture creation/copy operations
at the glupload.
[Matthew Waters]: gst-indent the sources and port testegl to GstGLMemoryEGL
https://bugzilla.gnome.org/show_bug.cgi?id=760918
2016-04-14 10:04:32 +0100 Julien Isorce <j.isorce@samsung.com>
* common:
Automatic update of common submodule
From 6f2d209 to ac2f647
2016-02-26 12:42:41 +0200 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From b64f03f to 6f2d209
2016-02-17 20:51:03 +1100 Matthew Waters <matthew@centricular.com>
* examples/egl/testegl.c:
examples: update egl example for gstgl API changes
https://bugzilla.gnome.org/show_bug.cgi?id=762053
https://bugzilla.gnome.org/show_bug.cgi?id=753917
2016-02-05 18:11:06 -0300 Thiago Santos <thiagoss@osg.samsung.com>
* autogen.sh:
* common:
Automatic update of common submodule
From 86e4663 to b64f03f
2015-12-21 00:43:49 +0100 Koop Mast <kwm@rainbow-runner.nl>
* configure.ac:
configure: Make -Bsymbolic check work with clang.
Update the -Bsymbolic check with the version glib has. This version
works with clang.
https://bugzilla.gnome.org/show_bug.cgi?id=759713
2015-12-07 09:11:32 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
* autogen.sh:
* common:
Automatic update of common submodule
From b319909 to 86e4663
2015-11-18 13:00:28 +0000 Enrique Ocaña González <eocanha@igalia.com>
* omx/gstomx.c:
Remember the last_error after a failed set state call to avoid blocking the next get state call
gst_omx_video_dec_flush() blocks forever in
http://cgit.freedesktop.org/gstreamer/gst-omx/tree/omx/gstomxvideodec.c?id=9adf0ff82903cad5331e40975ae91ed5d11bc102#n2110
when the previous call to gst_omx_component_set_state() fails in
http://cgit.freedesktop.org/gstreamer/gst-omx/tree/omx/gstomx.c?id=9adf0ff82903cad5331e40975ae91ed5d11bc102#n827.
To mitigate that, I set "last_error" to true, so the code in
http://cgit.freedesktop.org/gstreamer/gst-omx/tree/omx/gstomx.c?id=9adf0ff82903cad5331e40975ae91ed5d11bc102#n862
exits early and doesn't block.
https://bugzilla.gnome.org/show_bug.cgi?id=758274
2015-11-18 12:59:59 +0000 Enrique Ocaña González <eocanha@igalia.com>
* omx/gstomxaudiodec.c:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
Properly handle drain requests while flushing
Without this commit the decoder streaming thread stops without ever attending
the drain request, leaving the decoder input thread waiting forever.
https://bugzilla.gnome.org/show_bug.cgi?id=758274
2015-11-10 10:42:35 +0100 Nicolas Huet <nicolas.huet@parrot.com>
* omx/gstomx.c:
omx: fix hacks leak on class init
2015-10-21 14:37:13 +0100 Tim-Philipp Müller <tim@centricular.com>
* common:
Automatic update of common submodule
From b99800a to b319909
2015-10-21 14:28:41 +0300 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From 9aed1d7 to b99800a
2015-09-01 16:08:11 -0300 Thiago Santos <thiagoss@osg.samsung.com>
* omx/gstomxaacdec.c:
omxaacdec: Do not accept unknown layouts
It was defaulting to RAW when an unknown layout was received but
the caps template would actually forbid that on the caps query
or accept-caps anyway.
2015-09-01 08:59:54 -0300 Thiago Santos <thiagoss@osg.samsung.com>
* omx/gstomxaudiodec.c:
omxaudiodec: use default pad accept-caps handling
Instead of the audiodecoder one. The OMX audioo decoders have their
valid input in the template pad, so just check against that to
avoid doing a query downstream.
2015-08-28 12:57:33 -0300 Thiago Santos <thiagoss@osg.samsung.com>
* omx/gstomxvideodec.c:
omxvideodec: use default pad accept-caps handling
Instead of the videodecoder one. The OMX video decoders have their
valid input in the template pad, so just check against that to
avoid doing a query downstream.
2015-08-22 15:54:55 +0000 Graham Leggett <minfrin@sharp.fm>
* omx/gstomxvideoenc.c:
omxvideoenc: Add keyframe support for the Rpi, using OMX_IndexConfigBrcmVideoRequestIFrame
https://bugzilla.gnome.org/show_bug.cgi?id=753085
2015-08-20 17:20:50 +0900 Vineeth TM <vineeth.tm@samsung.com>
* examples/egl/testegl.c:
gst-omx: Fix memory leaks when context parse fails
When g_option_context_parse fails, context and error variables are not getting free'd
which results in memory leaks. Free'ing the same.
And replacing g_error_free with g_clear_error, which checks if the error being passed
is not NULL and sets the variable to NULL on free'ing.
https://bugzilla.gnome.org/show_bug.cgi?id=753865
2015-08-16 14:53:42 +0200 Philippe Normand <philn@igalia.com>
* omx/gstomxh264dec.c:
omxh264dec: implement is_format_change
The omxvideodecoder class only checks some of the caps parameters but if
other fields change such as h264 profile and/or level it wouldn't trigger a
reconfiguration.
https://bugzilla.gnome.org/show_bug.cgi?id=752376
2015-07-03 00:26:48 +0200 Aurélien Zanelli <aurelien.zanelli@darkosphere.fr>
* omx/gstomxvideodec.c:
omxvideodec: unref allocator after getting it from allocation query
Otherwise a reference will be leaked for each allocator. It only happens
when target platform is Raspberry Pi and when we have GL support.
https://bugzilla.gnome.org/show_bug.cgi?id=751867
2015-07-03 21:59:54 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From f74b2df to 9aed1d7
2015-06-16 17:50:14 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
* common:
Automatic update of common submodule
From 6015d26 to f74b2df
2015-06-09 11:30:49 +0200 Edward Hervey <bilboed@bilboed.com>
* common:
Automatic update of common submodule
From d9a3353 to 6015d26
2015-06-08 23:08:28 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From d37af32 to d9a3353
2015-06-07 23:07:22 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From 21ba2e5 to d37af32
2015-06-07 17:32:25 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From c408583 to 21ba2e5
2015-06-07 17:16:43 +0200 Stefan Sauer <ensonic@users.sf.net>
* autogen.sh:
* common:
Automatic update of common submodule
From c8fb372 to c408583
2015-05-19 18:21:40 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiodec.c:
* omx/gstomxaudiodec.h:
omxaudiodec: Add an output adapter for chunking the output into codec frames
Otherwise the base class will be confused.
See https://bugzilla.gnome.org/show_bug.cgi?id=685730
2015-04-26 18:24:13 +0100 Tim-Philipp Müller <tim@centricular.com>
* Android.mk:
* omx/Makefile.am:
Remove obsolete Android build cruft
This is not needed any longer.
2015-04-22 10:40:22 +0200 Sebastian Dröge <sebastian@centricular.com>
* INSTALL:
Remove INSTALL file
autotools automatically generate this, and when using different versions
for autogen.sh there will always be changes to a file tracked by git.
2015-04-08 15:57:59 +0100 Tim-Philipp Müller <tim@centricular.com>
* .gitignore:
* Makefile.am:
* configure.ac:
* m4/Makefile.am:
Add m4 directory so aclocal doesn't complain in autogen.sh
Might come in handy, and these warnings seem to be
fatal in some environments.
You may need to git clean -x -d -f your tree before
git pulling/merging.
2015-04-07 22:25:57 +0100 Tim-Philipp Müller <tim@centricular.com>
* INSTALL:
* autogen.sh:
Update autogen.sh to latest version
2015-04-03 18:58:17 +0100 Tim-Philipp Müller <tim@centricular.com>
* common:
Automatic update of common submodule
From bc76a8b to c8fb372
2015-03-06 12:12:49 +0000 Luis de Bethencourt <luis.bg@samsung.com>
* omx/gstomxaacdec.c:
omxaudiodec: add comment explaining duplicate code path
2015-03-06 12:09:06 +0000 Luis de Bethencourt <luis.bg@samsung.com>
* omx/gstomxaacdec.c:
Revert "omxaudiodec: remove duplicate code path"
This reverts commit a8d26ff27a8b43f589424a59294f9057641b2a46.
2015-03-06 12:03:56 +0000 Luis de Bethencourt <luis.bg@samsung.com>
* omx/gstomx.c:
omx: handle both errors in the two steps of update_port_definition
Also consider potential errors in the _get_parameter() in the return of the
update_port_definition function.
CID #1287052
2015-03-06 10:57:53 +0000 Luis de Bethencourt <luis.bg@samsung.com>
* omx/gstomxaudioenc.c:
omxaudioenc: impossible if statement
ret is set to GST_STATE_CHANGE_SUCCESS and never touched, so it is impossible
for it to be anything else at the if check. Remove the if check.
CID #1287053
2015-03-06 10:54:43 +0000 Luis de Bethencourt <luis.bg@samsung.com>
* omx/gstomxaudiodec.c:
omxaudiodec: impossible if statement
ret is set to GST_STATE_CHANGE_SUCCESS and never touched, so it is impossible
for it to be anything else at the if check. Remove it.
CID #1287054
2015-03-06 10:50:30 +0000 Luis de Bethencourt <luis.bg@samsung.com>
* omx/gstomxaacdec.c:
omxaudiodec: remove duplicate code path
2014-12-19 11:19:55 +0200 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.c:
omx: call handle_messages() only once in acquire_buffer() to avoid potential deadlock
There is one rare case where calling handle_messages() more than once can cause a deadlock
in the video decoder element:
- sink pad thread starts the src pad task (gst_omx_video_dec_loop())
- _video_dec_loop() calls gst_omx_port_acquire_buffer() on dec_out_port
- blocks in gst_omx_component_wait_message() releasing comp->lock and comp->messages_lock
(initially, there are no buffers configured on that port, so it waits for OMX_EventPortSettingsChanged)
- the sink pad thread pushes a buffer to the decoder with gst_omx_port_release_buffer()
- _release_buffer() grabs comp->lock and sends the buffer to OMX, which consumes it immediately
- EmptyBufferDone gets called at this point, which signals _wait_message() to unblock
- the message from EmptyBufferDone is processed in gst_omx_component_handle_messages()
called from gst_omx_port_release_buffer()
- gst_omx_port_release_buffer releases comp->lock
- the src pad thread now gets to run, grabbing comp->lock while it exits from _wait_message()
- _acquire_buffer() calls the _handle_messages() on the next line after _wait_message(),
which does nothing (no pending messages)
- then it goes to "retry:" and calls _handle_messages() again, which also does nothing
(still no pending messages)
- scheduler switches to a videocore thread that calls EventHandler, informing us about the
OMX_EventPortSettingsChanged event that just arrived
- EventHandler graps comp->messages_lock, but not comp->lock, so it can run in parallel at
this point just fine.
- scheduler switches back to the src pad thread (which is in the middle of _acquire_buffer())
- the next _handle_messages() which is right before if (g_queue_is_empty (&port->pending_buffers))
processes the OMX_EventPortSettingsChanged
- the buffer queue is still empty, so that thread blocks again in _wait_message()
- the sink pad thread tries to acquire the next input port buffer
- _acquire_buffer() also blocks this thread in:
if (comp->pending_reconfigure_outports) { ... _wait_message() ... }
- DEADLOCK. gstreamer is waiting for omx to do something, omx waits for gstreamer to do something.
By removing those extra _handle_messages() calls, we can ensure that all the checks of
_acquire_buffer() will re-run. In the above case, after the scheduler switches back to
the middle of _acquire_buffer(), the code will enter _wait_message(), which will see that
there are pending messages and will return immediately, going back to "retry:" and
re-doing all the checks properly.
https://bugzilla.gnome.org/show_bug.cgi?id=741854
2015-02-26 09:27:44 +0900 Wonchul Lee <chul0812@gmail.com>
* omx/gstomx.c:
omx: cleanup code a bit to remove else statement
https://bugzilla.gnome.org/show_bug.cgi?id=745191
2015-01-12 16:13:35 +0100 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From f2c6b95 to bc76a8b
2014-12-18 10:56:15 +0100 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From ef1ffdc to f2c6b95
2014-11-27 17:12:42 +0100 Edward Hervey <bilboed@bilboed.com>
* common:
Automatic update of common submodule
From 7bb2bce to ef1ffdc
2014-11-13 09:55:02 +0900 Jun Ji <jun.ji@lge.com>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxamrdec.c:
* omx/gstomxamrdec.h:
omx: Add omxamrdec
https://bugzilla.gnome.org/show_bug.cgi?id=739333
2014-10-27 18:00:50 +0100 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From 84d06cd to 7bb2bce
2014-10-21 13:03:44 +0100 Tim-Philipp Müller <tim@centricular.com>
* common:
Automatic update of common submodule
From a8c8939 to 84d06cd
2014-10-21 13:00:10 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From 1f5d3c3 to a8c8939
2014-09-30 10:47:20 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiodec.c:
omxaudiodec: Clean up code a bit to get rid of useless NULL checks
2014-09-30 10:50:07 +0900 junji <jun.ji@lge.com>
* omx/gstomxaudiodec.c:
omxaudiodec: Unmap input buffers after usage
https://bugzilla.gnome.org/show_bug.cgi?id=736314
2014-08-31 20:30:13 +0000 Michal Lazo <michal.lazo@mdragon.org>
* omx/gstomxvideoenc.c:
omxvideoenc: Setup aspect ratio on RPi
Needs firmware from yesterday or newer to work with all possible
aspect ratios. Before that it only supported a fixed list.
https://bugzilla.gnome.org/show_bug.cgi?id=732533
2014-08-28 10:44:31 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudioenc.c:
omxaudioenc: Implement the hack flag GST_OMX_HACK_NO_COMPONENT_RECONFIGURE
2014-08-28 10:43:22 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudioenc.c:
omxaudioenc: Use the base class' open/close vfuncs instead of calling them ourselves
2014-08-26 22:13:53 -0500 Peng Liu <pengliu.mail@gmail.com>
* config/rpi/gstomx.conf:
* omx/gstomxvideoenc.c:
omxvideoenc: Implement the hack flag GST_OMX_HACK_NO_COMPONENT_RECONFIGURE
Fix a video encoder stall problem on RPi when changing the aspect ratio.
https://bugzilla.gnome.org/show_bug.cgi?id=732533
2014-08-14 17:36:11 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiodec.c:
* omx/gstomxaudiodec.h:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omx: Let base classes handle EOS
https://bugzilla.gnome.org//show_bug.cgi?id=734774
2014-08-14 17:33:07 +0300 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiodec.c:
omxaudiodec: Fix flushing logic and make it more similar to the video decoder
=== release 1.2.0 ===
2014-07-23 11:28:12 +0200 Sebastian Dröge <sebastian@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-omx.doap:
* omx/Makefile.am:
Release 1.2.0
2014-07-22 09:23:00 +0200 Sebastian Dröge <sebastian@centricular.com>
* config/bellagio/gstomx.conf:
* config/rpi/gstomx.conf:
config: Update ranks to PRIMARY+1 to have higher preference than avdec_*
See https://bugzilla.gnome.org/show_bug.cgi?id=732161
2014-07-20 17:46:30 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiosink.c:
omxaudiosink: Set port to not flushing in prepare() and keep it at flushing in unprepare()
https://bugzilla.gnome.org/show_bug.cgi?id=733168
2014-07-13 22:15:18 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaacdec.c:
* omx/gstomxaudiodec.c:
* omx/gstomxaudiodec.h:
* omx/gstomxmp3dec.c:
omxaudiodec: Implement setting of fallback channel positions
2014-07-13 18:22:39 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxaacdec.c:
* omx/gstomxaacdec.h:
* omx/gstomxmp3dec.c:
omx: Add AAC audio decoder
2014-07-02 09:22:28 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiodec.c:
omxaudiodec: Get PCM parameters from the out port, not the in port
2014-05-15 13:24:39 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiodec.c:
omxaudiodec: Implement hack for not disabling the output port after set_format until the output format is known
Needed on some OMX implementations, e.g. the one from Atmel. It does
not send the settings-changed event on the output port if it is
disabled.
2014-05-10 23:12:54 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxaudiodec.c:
* omx/gstomxaudiodec.h:
* omx/gstomxmp3dec.c:
* omx/gstomxmp3dec.h:
omx: Add audio decoder base class and a subclass for MP3
2014-07-01 09:38:01 +0200 Sebastian Dröge <sebastian@centricular.com>
* configure.ac:
* omx/Makefile.am:
omx: Link to gmodule-2.0-no-export for being able to use the g_module_*() API
https://bugzilla.gnome.org/show_bug.cgi?id=732518
2014-06-30 15:00:54 +0200 Sebastian Dröge <sebastian@centricular.com>
* examples/egl/testegl.c:
examples: #define GST_USE_UNSTABLE_API for libgstgl
2014-06-29 19:10:19 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxh264enc.c:
* omx/gstomxh264enc.h:
omxh264enc: Properly accumulate headers and push before the next frame
Fixes output of encoding on RPi, where each header buffer (SPS and PPS)
is in a separate OMX buffer.
https://bugzilla.gnome.org/show_bug.cgi?id=726669
2014-06-29 19:04:54 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideoenc.c:
omxvideoenc: Implement flush() instead of the deprecated reset()
2014-06-25 17:14:18 +0200 Sebastian Dröge <sebastian@centricular.com>
* config/rpi/gstomx.conf:
rpi: It's 44100Hz, not 41400Hz
2014-06-25 11:12:51 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* configure.ac:
configure.ac: require gstgl >= 1.3.3
2014-04-25 13:25:05 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* Makefile.am:
* configure.ac:
example: enable testegl
See https://bugzilla.gnome.org/show_bug.cgi?id=728940
2014-06-25 10:19:54 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* examples/egl/testegl.c:
testegl: do matrix mutlplication in the shader
See https://bugzilla.gnome.org/show_bug.cgi?id=728940
2014-06-25 09:36:38 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* examples/egl/testegl.c:
testegl: add a comment for the parse command
See https://bugzilla.gnome.org/show_bug.cgi?id=728940
2014-04-25 17:32:16 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* examples/egl/Makefile.am:
* examples/egl/cube_texture_and_coords.h:
* examples/egl/testegl.c:
testegl: convert code from GLESv1 to GLESv2
See https://bugzilla.gnome.org/show_bug.cgi?id=728940
2014-04-25 13:21:59 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* examples/egl/Makefile.am:
* examples/egl/testegl.c:
testegl: port to gstgl API
- append a glfilter just before fakesink
So that we get gltexture or eglimages
- propagate our EGLDisplay to the pipeline
see GST_QUERY_CONTEXT
- share our EGLContext with the iternal gl context
of the pipeline, see GST_QUERY_ALLOCATION
- use GstVideoGLTextureUploadMeta to upload
the incoming gltexture or eglimage to our gl texture
TODO: convert from GLESv1 to GLESv2
See https://bugzilla.gnome.org/show_bug.cgi?id=728940
2014-06-24 14:52:58 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxbufferpool.c:
* omx/gstomxbufferpool.h:
* omx/gstomxvideodec.c:
omxbufferpool: Copy buffers if the stride does not match and we can't use video meta
https://bugzilla.gnome.org/show_bug.cgi?id=731672
2014-06-24 14:52:43 +0200 Sebastian Dröge <sebastian@centricular.com>
* configure.ac:
* omx/gstomx.h:
* omx/gstomxvp8dec.h:
omx: Only include OMX_VideoExt.h conditionally
It does not exist on the RPi for example.
2014-06-24 13:59:44 +0200 Sebastian Dröge <sebastian@centricular.com>
* configure.ac:
configure.ac: Require GStreamer core/base >= 1.2.2
Needed at least for gst_video_decoder_release_frame().
2014-06-24 13:02:13 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxbufferpool.c:
omxbufferpool: Fix format string compiler warning
2014-06-22 21:11:45 +0000 Michal Lazo <xlazom00@gmail.com>
* omx/gstomxbufferpool.c:
omxbufferpool: Initialize debug category
2014-06-24 12:42:22 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxbufferpool.c:
omxbufferpool: Properly convert OMX alignment to GStreamer alignment
GStreamer uses a bitmask for the alignment while OMX uses the
alignment itself. Let's convert.
https://bugzilla.gnome.org/show_bug.cgi?id=710564
2014-06-24 11:11:28 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxh264enc.c:
omxh264enc: Don't let baseclass finish frames for SPS/PPS buffers
Otherwise we a) send them twice, and b) finish a frame for something
that does not even include a frame.
https://bugzilla.gnome.org/show_bug.cgi?id=726669
2014-06-24 10:22:37 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideo.h:
omxvideo: Include the separate headers too for compatibility with 1.0.x
2014-03-24 16:09:40 +0800 Zhao, Halley <halley.zhao@intel.com>
* configure.ac:
* omx/gstomxvp8dec.h:
omxvp8dec: use VP8 definition from OMX_VideoExt.h
https://bugzilla.gnome.org/show_bug.cgi?id=726957
2014-03-24 15:33:26 +0800 Zhao, Halley <halley.zhao@intel.com>
* configure.ac:
configure: add --with-omx-header-path option for external omx headers
https://bugzilla.gnome.org/show_bug.cgi?id=726957
2014-06-18 23:04:33 +0200 Aurélien Zanelli <aurelien.zanelli@darkosphere.fr>
* omx/gstomxvideodec.c:
omxvideodec: fix a query leak
Also add a debug message if query fails.
https://bugzilla.gnome.org/show_bug.cgi?id=731898
2014-05-30 15:29:15 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvideodec.c:
omxvideodec: release frames with old PTS to avoid memory issue
Interlaced stream could make the decoder use two input frames to produce
one output frame causing the gstvideodecoder frame list to grow.
Assuming the video decoder output frame in display order rather than in
decoding order, this commit add a way to release frames with PTS less
than current output frame.
https://bugzilla.gnome.org/show_bug.cgi?id=730995
2013-06-27 21:59:29 +0900 Kazunori Kobayashi <kkobayas@igel.co.jp>
* omx/gstomx.c:
omx: Fix a missing g_free() in error path
This fixes a memory leak with g_strdup() when an error occurs.
https://bugzilla.gnome.org/show_bug.cgi?id=731141
2014-06-02 15:34:09 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvideodec.c:
omxvideodec: add missing stream unlock in error path
2014-05-31 15:12:05 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomx.c:
omx: Don't handle disabling/enabling ports exactly like flushing
Otherwise we might abort a flush operation in another thread when
enabling/disabling ports, leading to deadlocks sometimes.
https://bugzilla.gnome.org/show_bug.cgi?id=730989
2014-05-26 11:02:10 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Don't leak buffer pool config in error cases
CID 1216158
2014-05-21 10:53:43 +0200 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From 211fa5f to 1f5d3c3
2014-05-19 09:10:07 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideoenc.c:
omxvideoenc: Don't forget to unref codec state
CID 1214603
2014-05-19 09:08:33 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Make output buffer pointer always initialized
CID 1214605
2014-05-19 09:06:42 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Check return value of gst_buffer_map()
CID 1214599
2014-05-19 09:04:09 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Check return value of gst_omx_port_set_enabled() for errors
CID 1214589
2014-05-19 09:01:46 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Check return values of buffer pool config parsing functions
CID 1214588
2014-05-19 08:48:50 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomx.c:
omx: Remove dead code, buf can never be NULL here as we just check for that the line above
CID 1214596
2014-05-19 08:47:36 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomx.c:
omx: Fix comparisons in gst_omx_state_to_string() case to actually make sense
CID 1214593
2014-05-19 08:45:10 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomx.c:
omx: Make sure to compare the error codes as unsigned integers so that comparisons >2**31 actually work
CID 1214592
2014-05-19 08:40:23 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomx.c:
omx: Fix comparisons in gst_omx_command_to_string() default cause to actually work
CID 1214591
2014-05-15 13:22:56 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudioenc.c:
omxaudioenc: Implement hack for not disabling the output port after set_format until the output format is known
Needed on some OMX implementations, e.g. the one from Atmel. It does
not send the settings-changed event on the output port if it is
disabled.
2014-05-15 13:21:07 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideoenc.c:
omxvideoenc: Implement hack for not disabling the output port after set_format until the output format is known
Needed on some OMX implementations, e.g. the one from Atmel. It does
not send the settings-changed event on the output port if it is
disabled.
2014-05-15 10:58:34 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omx: Add a hack for not disabling the output port after set_format until the output format is known
Needed on some OMX implementations, e.g. the one from Atmel. It does
not send the settings-changed event on the output port if it is
disabled.
2014-05-12 12:33:32 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxaudiosink.c:
omxaudiosink: implement _delay only in the RaspberryPI
Make code implementation conditionally built for RaspberryPI because
OMX_IndexConfigAudioRenderingLatency seems to be a Broadcom extension.
On other targets the query position might not be accurate without
implementing _delay appropriatelly.
2014-05-12 08:56:15 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudioenc.c:
omxaudioenc: Correctly scale nTickCount by OMX_TICKS_PER_SECOND
2014-05-10 22:48:23 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudioenc.c:
omxaudioenc: Drain encoder on NULL buffer and don't drain on flushing
2014-05-10 22:47:56 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideodec.c:
omxvideodec: Set nTickCount based on the buffer's duration instead of something wrong
2014-05-10 22:47:21 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideoenc.c:
omxvideoenc: Set nTickCount to the whole duration of the buffer instead of a wrong calculation
2014-05-10 22:46:51 +0200 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudiosink.c:
omxaudiosink: Fix format string compiler warnings
2014-04-04 14:11:58 +0200 Josep Torra <n770galaxy@gmail.com>
* config/rpi/gstomx.conf:
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxanalogaudiosink.c:
* omx/gstomxanalogaudiosink.h:
* omx/gstomxaudiosink.c:
* omx/gstomxaudiosink.h:
* omx/gstomxhdmiaudiosink.c:
* omx/gstomxhdmiaudiosink.h:
omxaudiosink: Implements OpenMAX based audio sinks
Provides omxanalogaudiosink and omxhdmiaudiosink elements on
the Raspberry PI.
- omxanalogaudiosink is capable to render raw mono or stereo audio
through the jack output.
- omxhdmiaudiosink is capable to render raw audio up to 8 channels
and transmit ac3/dts(IEC 61937) through the HDMI output.
- sinks provide a clock derived from rendered samples
- sinks support the GstStreamVolume interface by implementing
the volume and mute properties.
https://bugzilla.gnome.org/show_bug.cgi?id=728962
2014-05-03 10:17:35 +0200 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From bcb1518 to 211fa5f
2014-04-29 15:16:16 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: can negotiate caps with memory:EGLImage feature when using EGLImage allocator
Previously when using gst EGLImage allocator the caps was
video/x-raw, format=RGBA instead of
video/x-raw(memory:EGLImage), format=RGBA
Kepp previous behavior in case negotiation fails with caps feature.
It means it will still have a chance to use EGLImage even if the
feature is not in the caps.
https://bugzilla.gnome.org/show_bug.cgi?id=729196
2014-04-23 09:57:48 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvp8dec.h:
omxvp8dec: fix typo in GST_TYPE_OMX_VP8_DEC define
https://bugzilla.gnome.org/show_bug.cgi?id=728774
2014-04-16 11:00:55 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvideodec.c:
omxvideodec: don't unref caps before logging field from it
https://bugzilla.gnome.org/show_bug.cgi?id=728322
2014-04-15 17:30:13 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* Makefile.am:
* configure.ac:
example: disable testegl since libgstegl has been removed
As decided in bug #703343
Not compatible with the new libgstgl API.
A portage has been started, attachment 272800.
https://bugzilla.gnome.org/show_bug.cgi?id=703343
2014-04-15 17:11:08 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: use new libgstgl API since libgstegl has been removed
There is no point to retrieve a ref/unref type
instead of an EGLDisplay directly. It's like for EGLImage.
https://bugzilla.gnome.org/show_bug.cgi?id=703343
2014-04-15 17:06:38 +0100 Julien Isorce <julien.isorce@collabora.co.uk>
* configure.ac:
* examples/Makefile.am:
* omx/Makefile.am:
* omx/gstomxvideodec.c:
configure.ac: check for libgstgl since libgstegl has been removed
https://bugzilla.gnome.org/show_bug.cgi?id=703343
2014-04-09 18:52:16 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxbufferpool.c:
* omx/gstomxvideodec.c:
omxvideodec: add support of more color format
Add support for ABGR, ARGB, RGB16, BGR16, YUY2, UYVY, YVYU, GRAY8 and
NV16 color format.
2014-04-09 18:51:57 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvideodec.c:
omxvideodec: simplify color format conversion in fill_buffer function
2014-04-09 18:51:41 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxbufferpool.c:
omxbufferpool: make video stride and offset calculation easier
It will be easier to support more color format.
2014-04-09 18:51:12 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
* omx/gstomxvideo.c:
* omx/gstomxvideo.h:
* omx/gstomxvideodec.c:
omx: add an helper to convert OMX color format to GStreamer color format
2014-03-10 17:43:50 +0100 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
* omx/gstomxvideodec.c:
omxvideodec: Implement pipeline draining to support adaptive scenarios
When draining due a format change also drain
the pipeline to reclaim back all buffers.
https://bugzilla.gnome.org/show_bug.cgi?id=726107
2014-03-27 13:57:32 +0100 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: fix several memory leaks in the testegl example
Ensure to call to image_data_free in order to release GPU resources.
Also ensure to destroy EGLImage and GLTexture from proper
thread/context.
https://bugzilla.gnome.org/show_bug.cgi?id=726107
2014-03-25 17:16:31 +0000 Julien Isorce <julien.isorce@collabora.co.uk>
* examples/egl/testegl.c:
examples: keep a ref on the buffer instead of the memory
Like in eglglessink
https://bugzilla.gnome.org/show_bug.cgi?id=726107
2014-03-07 20:08:05 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: fixes race condition during seeks
Acording 6.1.3 Seek Event Sequence in the OpenMAX IL 1.1.2 spec
document in order to flush the component it needs to be in
paused state.
https://bugzilla.gnome.org/show_bug.cgi?id=726038
2014-01-29 18:31:26 +0000 Julien Isorce <julien.isorce@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: use flush because reset is deprecated
https://bugzilla.gnome.org/show_bug.cgi?id=726038
2014-01-27 17:03:50 +0000 Julien Isorce <julien.isorce@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: populate the most downstream output port on reset
Make seeking work when using egl_render component
https://bugzilla.gnome.org/show_bug.cgi?id=726038
2014-03-24 17:49:59 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxbufferpool.c:
omxbufferpool: return buffers to the pool instead of freeing them
We have to return the buffers back to the pool in when stopping to
not mess with the GstBufferPool accounting.
The OMX buffers will be freed when those won't be in charge of the
pool in the chained up call to 'stop'.
Fixes segfaults on finalize and pool not being properly deactivated.
https://bugzilla.gnome.org/show_bug.cgi?id=726337
2014-03-19 12:12:49 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxvideodec.c:
omxvideodec: add missing unlock in the error path
Signed-off-by: Christian König <christian.koenig@amd.com>
https://bugzilla.gnome.org/show_bug.cgi?id=726958
2014-03-18 23:36:59 +0100 Michal Lazo <xlazom00@gmail.com>
* omx/gstomxh264enc.c:
* omx/gstomxh264enc.h:
fix filemode
2014-03-17 09:57:11 +0000 Julien Isorce <julien.isorce@collabora.co.uk>
* omx/gstomxbufferpool.c:
omxbufferpool: fix memory leak if used on output port
When using GstOMXBufferPool on an output port, it internally uses
a GPtrArray to manage the GstBuffers instead of the default queue
from the GstBufferPool base class.
In this case GstBufferPool::default_free_buffer is not called when
the pool is stopped. Because the queue is empty. So explicitely
call gst_omx_buffer_pool_free_buffer on each buffer contained in
the GPtrArray.
https://bugzilla.gnome.org/show_bug.cgi?id=726337
2014-03-16 17:32:05 +0100 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxh264enc.c:
omxh264enc: Fix compiler warnings
2014-03-16 17:19:08 +0100 Michal Lazo <xlazom00@gmail.com>
* omx/gstomxh264enc.c:
* omx/gstomxh264enc.h:
omxh264enc: IDR interval, SPS and PPS headers for rpi
https://bugzilla.gnome.org/show_bug.cgi?id=720031
2014-03-13 14:26:58 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideo.c:
omxvideo: fix debug category initialisation
https://bugzilla.gnome.org/show_bug.cgi?id=726024
2014-03-13 19:04:47 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxbufferpool.h:
omxbufferpool: add proper type definitions
https://bugzilla.gnome.org/show_bug.cgi?id=726325
2014-03-02 10:30:04 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomx.c:
omx: consolidate message waiting code
Add a wait_message helper function and remove all those duplicated code.
https://bugzilla.gnome.org/show_bug.cgi?id=725493
2014-03-12 12:48:12 +0100 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideo.c:
omx: Copy old copyright notice into the new file
2014-03-12 12:47:34 +0100 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxvideo.c:
* omx/gstomxvideo.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Rename function from _4_ to _for_ for clarity
2014-03-03 16:15:24 +0100 Christian König <christian.koenig@amd.com>
* omx/Makefile.am:
* omx/gstomxvideo.c:
* omx/gstomxvideo.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omxvideo: start sharing more code between video decoder and encoder
Identical functionality spread of two different components.
We can't use a common base class because of different inheritance,
but let's try to share the code anyway.
https://bugzilla.gnome.org/show_bug.cgi?id=726024
2014-03-12 12:43:49 +0100 Sebastian Dröge <sebastian@centricular.com>
* examples/egl/Makefile.am:
examples: Only build RPi EGL example if RPi was chosen as target
2014-03-12 12:42:23 +0100 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxbufferpool.h:
omxbufferpool: Fix header include guard
2014-03-05 11:41:02 +0100 Christian König <christian.koenig@amd.com>
* omx/Makefile.am:
* omx/gstomxbufferpool.c:
* omx/gstomxbufferpool.h:
* omx/gstomxvideodec.c:
omxvideodec: separate the buffer pool from the decoder
https://bugzilla.gnome.org/show_bug.cgi?id=726025
2014-03-04 17:41:20 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omx: simplify tunnel functions
Specifying the component is error prone and unnecessary.
https://bugzilla.gnome.org/show_bug.cgi?id=726021
2014-03-07 17:12:24 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxvideodec.c:
omxvideodec: fix memory leak in gst_omx_video_dec_allocate_output_buffers
https://bugzilla.gnome.org/show_bug.cgi?id=725907
2014-03-07 13:18:49 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxvideodec.c:
omxvideodec: fix memory leak gst_omx_video_dec_negotiate
https://bugzilla.gnome.org/show_bug.cgi?id=725907
2014-03-05 18:54:05 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxvideoenc.c:
omxvideoenc: fix a memory leak in gst_omx_video_enc_getcaps
https://bugzilla.gnome.org/show_bug.cgi?id=725826
2014-03-05 17:43:33 +0100 Josep Torra <n770galaxy@gmail.com>
* Makefile.am:
Makefile.am: build examples
There's no reason to not build the examples now that are ported to 1.x.
2014-03-05 17:25:09 +0100 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: avoid a clashing name with the recently added GstEGLImagePool
Fixes build with current master.
2013-09-05 03:41:10 -0600 Christian König <christian.koenig@amd.com>
* omx/gstomxvideoenc.c:
omxvideoenc: simplify _find_nearest_frame
Just the same as we did with the decoder. Also give the
function a gst_omx_video_enc prefix to distinct it from
the decoder function.
https://bugzilla.gnome.org/show_bug.cgi?id=724236
2013-09-05 02:23:39 -0600 Christian König <christian.koenig@amd.com>
* omx/gstomxvideodec.c:
omxvideodec: simplify _find_nearest_frame
No need to make it more complicated and error prone than
necessary. Also give the function a gst_omx_video_dec prefix
to distinct it from the encoder function.
https://bugzilla.gnome.org/show_bug.cgi?id=724236
2013-09-05 02:05:52 -0600 Christian König <christian.koenig@amd.com>
* omx/gstomxvideodec.c:
omxvideodec: remove dead code
This code doesn't seems to be used for quite a while,
remove it before it starts to rot.
https://bugzilla.gnome.org/show_bug.cgi?id=724236
2014-03-01 22:28:24 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomx.c:
omx: fix two serious message handling bugs
Waiting for the next message if we already got one
is nonsense and can lead to lockups.
https://bugzilla.gnome.org/show_bug.cgi?id=725468
2014-03-01 18:49:41 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxvideoenc.c:
omxvideoenc: fix startup race condition
The reset function shouldn't start the src pad
loop if it wasn't started before.
Signed-off-by: Christian König <christian.koenig@amd.com>
2014-03-01 18:48:17 +0100 Christian König <christian.koenig@amd.com>
* omx/gstomxvideodec.c:
omxvideodec: fix startup race condition
The reset function shouldn't start the src pad
loop if it wasn't started before.
Signed-off-by: Christian König <christian.koenig@amd.com>
2014-02-28 09:36:13 +0100 Sebastian Dröge <sebastian@centricular.com>
* common:
Automatic update of common submodule
From fe1672e to bcb1518
2014-02-26 22:15:00 +0100 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From 1a07da9 to fe1672e
2014-01-30 10:45:18 +0100 Edward Hervey <bilboed@bilboed.com>
* common:
Automatic update of common submodule
From d48bed3 to 1a07da9
2014-01-25 17:44:14 +0100 Sebastian Dröge <sebastian@centricular.com>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Don't handle FLUSHING and NOT_LINKED as errors
Also don't stop the task on NOT_LINKED. We're not a demuxer.
2013-12-22 22:35:31 +0000 Tim-Philipp Müller <tim@centricular.com>
* common:
Automatic update of common submodule
From dbedaa0 to d48bed3
2013-11-05 11:22:02 +0000 Tim-Philipp Müller <tim@centricular.com>
* common:
Automatic update of common submodule
From 865aa20 to dbedaa0
2013-09-28 13:32:37 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: simplify the thread synchronization code
Make everithing more simple and fix the races conditions remaining in
the previous approaches.
2013-09-25 19:17:17 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* config/rpi/gstomx.conf:
rpi: The WMV/VC1 decoder can only do WMV9 and VC1, no older versions
2013-09-24 18:34:42 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 6b03ba7 to 865aa20
2013-09-24 18:48:24 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: fix another race condition
Fix a race condition that caused randome deadlocks on EOS.
2013-09-20 17:19:53 +0200 Josep Torra <n770galaxy@gmail.com>
* config/rpi/gstomx.conf:
rpi: fix a copy paste error in the config file
2013-09-20 17:09:52 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: fix a race condition when seeking
Fixes a race condition that caused pipeline deadlock during seeks.
2013-09-20 10:38:12 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: display QoS statistics
2013-09-20 09:34:37 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: use dedicated thread for rendering the scene
Produces smother animation and prevents dropping frames due busy
mainloop.
2013-09-20 08:25:21 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/testegl.c:
examples: don't force an specific audio sink
Let playbin2 choose the audiosink available in the system.
2013-09-20 08:19:48 +0200 Josep Torra <n770galaxy@gmail.com>
* examples/egl/Makefile.am:
examples: drop remnants of initial appsink attempt
2013-09-20 16:18:18 +0200 Edward Hervey <edward@collabora.com>
* common:
Automatic update of common submodule
From b613661 to 6b03ba7
2013-09-19 18:45:36 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 74a6857 to b613661
2013-09-19 17:38:30 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 01a7a46 to 74a6857
2013-08-20 16:00:07 +0100 Tim-Philipp Müller <tim@centricular.net>
* omx/gstomx.c:
* omx/gstomxvideodec.c:
omx: don't use the 'z' modifier to print size_t
gcc will warn in some cases even if the size of the type
is exactly that of size_t on the platform.
https://bugzilla.gnome.org/show_bug.cgi?id=699008
2013-07-01 15:48:47 +0200 Roman Arutyunyan <arutyunyan.roman@gmail.com>
* omx/gstomxvideoenc.c:
gstomxvideoenc: Set bitrate in setcaps
Otherwise it gets lost whenever we configure new caps
https://bugzilla.gnome.org/show_bug.cgi?id=698049
2013-06-30 18:17:05 +0700 Ilya Smelykh <ilya@videoexpertsgroup.com>
* examples/egl/testegl.c:
examples: enable audio in testegl example
2013-06-12 09:38:22 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac:
configure: Allow build without gstreamer-egl
2013-06-07 12:39:18 +0700 Ilya Smelykh <ilya@videoexpertsgroup.com>
* examples/egl/Makefile.am:
* examples/egl/testegl.c:
examples: testegl example port to 1.x
https://bugzilla.gnome.org/show_bug.cgi?id=701706
2013-06-05 15:17:16 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From 098c0d7 to 01a7a46
2013-05-20 12:06:34 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Take lock on EOS to update the flow return value
Fixes "GThread-ERROR **: file gthread-posix.c: line 171
(g_mutex_free_posix_impl): error 'Device or resource busy' during
'pthread_mutex_destroy ((pthread_mutex_t *) mutex)'" in _finalize.
2013-05-15 10:54:12 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From 5edcd85 to 098c0d7
2013-04-11 17:35:19 +0200 Josep Torra <n770galaxy@gmail.com>
* Makefile.am:
* configure.ac:
* examples/Makefile.am:
* examples/egl/Makefile.am:
* examples/egl/cube_texture_and_coords.h:
* examples/egl/testegl.c:
examples: add an example aplication based OpenGL ES + EGL
Application that shows how to integrate playbin with an OpenGL ES
scene through EGL. Renders a video on the surfaces of an animated cube.
The code is not ported to 1.x so it's not built by default.
2013-05-10 12:25:07 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: Redesign video size change reconfiguration code
Ensure stop the decoder before clossing the tunnel.
2013-05-06 16:25:27 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* Makefile.am:
Makefile.am: Add -I common/m4
This allows autoreconf to work correctly and automatic regeneration
of autotools files if something changed.
2013-05-06 19:03:59 +0530 jitendra <jvarshney20@gmail.com>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Add pads based on element type
This allows to later add sources and sink that only have a srcpad
or sinkpad.
https://bugzilla.gnome.org/show_bug.cgi?id=699754
2013-04-27 02:50:25 +0200 Carlos Rafael Giani <dv@pseudoterminal.org>
* omx/gstomx.c:
omx: fixed type error in printf call
%zu expects size_t
https://bugzilla.gnome.org/show_bug.cgi?id=699008
2013-04-08 17:26:16 +0100 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* configure.ac:
* omx/Makefile.am:
* omx/gstomxvideodec.c:
Check for gstreamer-egl
And don't use if not available.
https://bugzilla.gnome.org/show_bug.cgi?id=697574
2013-04-23 09:53:18 +0100 Tim-Philipp Müller <tim@centricular.net>
* configure.ac:
configure: error out if no OMX target has been set explicitly with --with-omx-target=x
Avoids people building for e.g. the Raspberry Pi and then wondering
why things don't work as expected (since structs are packed differently
there).
2013-04-22 23:55:03 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 3cb3d3c to 5edcd85
2013-04-18 22:07:28 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomxaudioenc.c:
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: more printf format fixes
Fix printf formats again, so that gst-omx compiles warning-
free on the Raspberry Pi as well. Unfortunately OMX_UINT32
maybe be typedefed to uint32_t or unsigned long, which
doesn't work well with our debugging printf format strings,
so just use %u for those and cast to guint.
2013-04-18 16:40:06 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomx.c:
omx: fixes unused variable 'comp' when GStreamer is built without debug
2013-04-18 16:03:56 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: don't use 'self->dec_out_port' anymore and use just 'port'
Fixes some criticals.
2013-04-18 15:21:32 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: fixes 'port' may be used uninitialized in this function
2013-04-18 12:03:31 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: silence warnings building for RPI related to 'vcos_*'
2013-04-18 11:19:52 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: Use new type from libgstvideo
2013-04-16 14:50:49 +0530 jitendra <jvarshney20@gmail.com>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Disable output port before transition to idle state
https://bugzilla.gnome.org/show_bug.cgi?id=698109
2012-10-24 12:19:41 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
gst: Add better support for static plugins
2013-04-14 17:57:34 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From aed87ae to 3cb3d3c
2013-04-12 17:58:30 +0100 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* configure.ac:
configure: add --disable-fatal-warnings for disabling -Werror
2013-04-09 21:02:09 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From 04c7a1e to aed87ae
2013-04-08 17:02:32 +0100 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomxaudioenc.c:
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: fix printf formats in debug messages
OMX_U32 is typedefed to an unsigned long,
OMX_TICKS to a 64-bit integer.
2013-04-08 16:52:19 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: use the correct printf format in a debug message
2013-04-08 16:31:33 +0200 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: use the correct OMX_IndexParam value
Fixes playback is not smooth in the EGL path.
2013-04-05 13:45:24 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't use API that is not in master yet
It's not really needed here yet, will be needed in future versions
2013-02-25 11:55:04 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Add support for egl_render on RPi
2013-03-22 19:26:54 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* configure.ac:
Back to development
2013-03-22 19:23:14 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
omx: fix compiler warnings when compiling with -DG_DISABLE_ASSERT
As we do for releases. Fixes 'variable may be used uninitialized'
warnings.
=== release 1.0.0 ===
2013-03-22 17:16:33 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* AUTHORS:
* ChangeLog:
* Makefile.am:
* NEWS:
* RELEASE:
* configure.ac:
* gst-omx.doap:
Release 1.0.0
2013-03-19 16:40:09 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomxtheoradec.h:
* omx/gstomxvp8dec.h:
omx: fix typo in copyright headers
2013-03-19 13:46:33 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
rpi: Fix commit that added the VC1 decoder
2013-03-19 13:27:35 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
* omx/gstomxh263dec.c:
* omx/gstomxh264dec.c:
* omx/gstomxmjpegdec.c:
* omx/gstomxmpeg2videodec.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxtheoradec.c:
* omx/gstomxvideodec.c:
* omx/gstomxvp8dec.c:
* omx/gstomxwmvdec.c:
omx: Add more constraints to the default sink template caps
2013-03-19 13:10:39 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
rpi: Add VC1/WMV3 decoder
WMV2 and WMV1 (aka WMV 1-8) are not supported by RPi.
2013-03-19 12:59:20 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
rpi: Add MJPEG decoder
2013-03-19 12:56:50 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
rpi: Add VP8 decoder
2013-03-19 12:55:09 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Set ENDOFFRAME flag for the end of frames
2013-03-19 12:28:50 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
rpi: Add Theora decoder to the config
2013-03-19 09:36:18 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxtheoradec.c:
* omx/gstomxtheoradec.h:
omx: Add Theora decoder
2013-03-18 16:43:24 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Remove additional comma
2013-03-18 16:34:21 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxmpeg2dec.c:
* omx/gstomxmpeg2dec.h:
* omx/gstomxmpeg2videodec.c:
* omx/gstomxmpeg2videodec.h:
omx: Rename MPEG2 decoder for consistency everywhere
2013-03-18 16:30:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxmjpegdec.c:
* omx/gstomxmjpegdec.h:
omx: Add MJPEG decoder support
2013-03-18 16:06:54 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxvp8dec.c:
* omx/gstomxvp8dec.h:
omx: Add VP8 decoder support
2013-03-18 15:44:23 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
rpi: Add h263 decoder and rename MPEG2 decoder for consistency
2013-03-16 13:20:27 +0000 Tim-Philipp Müller <tim@centricular.net>
* omx/gstomxmpeg2dec.c:
omxmpeg2dec: mpeg-2 decoder should be able to handle mpeg-1 too
https://bugzilla.gnome.org/show_bug.cgi?id=695879
2013-03-16 10:13:06 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomx.c:
omx: minor stylistic change for consistency with other similar code
2013-03-16 10:00:24 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Clarify that loop task is also paused in EOS
2013-03-16 09:59:01 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideoenc.c:
omxvideoenec: Don't forget propagate flow return value upstream
2013-03-15 13:16:39 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
omx: improve debug logging some more
2013-03-15 14:09:45 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Make sure that the first frame we pass to OpenMAX is a sync frame
2013-03-15 11:46:34 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Stop output port task after draining
2013-03-15 10:58:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Reset EOS flag in more places
2013-03-15 10:38:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Deallocate output buffers with the right function
2013-03-15 01:06:05 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: log commands as strings
Makes logs easier to read.
2013-03-15 00:47:47 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: log states as strings
2013-03-15 00:28:02 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: log component name in debug messages
Useful when we have more different components
active at the same time.
2013-03-15 09:51:42 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't interpolate timestamps
We will get exactly one frame per input buffer and assigning
timestamps between frames if more than one OMX buffer is required
per frame easily confuses timestamp tracking in OMX.
2013-03-15 09:32:42 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Give the codec_data the timestamp of the first frame and no duration
2013-03-14 17:31:17 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
omx: The MPEG4 encoder is not available on RPi and probably never will
2013-03-14 17:26:30 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Reset some more buffer fields as required
2013-03-14 17:01:08 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
* omx/gstomx.c:
omx: The hack to disable usage of EOS buffers is not necessary anymore on RPi
2013-03-14 17:00:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Reset the flags for output ports when releasing a buffer, not for input ports
2013-03-14 15:03:02 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
omx: Only unref caps after usage of its fields
2013-03-14 14:51:32 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Simplify bufferpool implementation
2013-03-13 13:23:35 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Improve min/max buffer counts handling
2013-03-14 12:49:42 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Handle the OMX_EventBufferFlag to detect EOS too
2013-03-13 10:29:23 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Mark OpenMAX buffers as EGLImage if they contain one
Needs special handling in some places, e.g. because nFilledLen
will always be 0.
2013-03-13 10:21:49 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Properly check the nVersion field
2013-03-13 09:34:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: RPi returns garbage for OMX_IndexParamVideoBitrate, work around that
2013-03-12 20:02:53 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Make sure to always get the right buffer
2013-03-12 19:35:39 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Make sure the buffer is released to the pool if it's not the one we wanted
2013-03-12 19:17:08 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Drop too late frames instead of finishing them
2013-03-12 19:16:46 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omx: Release buffers to the correct port
2013-03-13 09:37:02 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Always load the OpenMAX IL cores with G_MODULE_BIND_LOCAL
2013-03-12 18:20:22 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Lazy-load symbols of libbcm_host.so
It exports eglIntOpenMAXILDoneMarker(), which is also
exported by libopenmaxil.so... but we need the version
from libopenmaxil.so as the other one is just a stub.
2013-03-11 13:59:15 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaacenc.c:
* omx/gstomxh263enc.c:
* omx/gstomxmpeg4videoenc.c:
omx: Don't set profile/level in other encoders if downstream caps don't specify any
2013-03-11 13:49:38 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264enc.c:
omxh264enc: If caps specify no profile/level use the component's defaults
2013-03-11 13:45:04 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Always allocate output buffers from the loop function
2013-03-11 13:12:57 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264enc.c:
omxh264enc: The h264 encoders are supposed to output byte-stream/au
2013-03-11 11:47:42 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Wait until the Executing state is reached before passing buffers to the component
2013-03-11 10:39:25 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't provide buffers to downstream
This only works reliable if we have a way to tell downstream to
release all our buffers for reconfiguration.
2013-03-11 10:29:44 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Disable output port when setting a new format
2013-03-11 10:29:30 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Disable output port when setting a new format
2013-03-11 10:22:07 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Disable output port when setting a new format
Based on a patch by Josep Torra <n770galaxy@gmail.com>
2013-03-11 10:04:10 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Catch errors when releasing buffers to a port and handle them
2013-03-10 12:09:23 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Use the correct video codec state when filling an input buffer
2013-03-10 12:05:50 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Store correct input state
2013-03-10 11:27:34 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Allocate output buffers as early as possible
2013-03-10 11:01:57 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Log unknown events
2013-03-09 14:14:40 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Fix deadlock in encoders and add explainatory comments.
2013-03-09 13:27:08 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: fix printf format identifier
2013-03-09 13:07:59 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omx: Minor changes on debuging info
2013-03-09 13:00:33 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: avoid a deadlock
2013-03-08 15:56:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't forget to populate output port
2013-03-08 15:11:27 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Flush and stop srcpad when configuring new caps
2013-03-07 17:40:21 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
* omx/gstomx.c:
Revert "omx: use no-component-reconfigure hack on the Raspberry PI"
This reverts commit e123b2089f69a413241f30a2428ea6edd8f231e7.
It's not required anymore after the fix from the last commit.
2013-03-07 17:38:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Only negotiate a color format with downstream on the initial caps
2013-03-07 17:29:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Make sure the output port is disabled while we allocate buffers
2013-03-07 17:27:05 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Also wait for disabled output ports to be reconfigured
2013-03-07 14:10:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Add buffer pool for sharing OpenMAX memory with downstream
2013-03-07 11:11:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Add timeout to the flush operation and move buffer populating to a separate function
2013-03-06 17:33:23 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
* omx/gstomx.c:
* omx/gstomx.h:
omx: Remove min buffer count hack for RPi again
It's not necessary anymore
2013-03-06 17:05:51 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Do number of buffers configuration explicitely
2013-03-07 11:24:54 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: fixes reconfiguration
Avoid having fixed fields from previous caps on reconfiguration.
2013-03-07 11:02:39 +0100 Josep Torra <n770galaxy@gmail.com>
* config/rpi/gstomx.conf:
* omx/gstomx.c:
omx: use no-component-reconfigure hack on the Raspberry PI
2013-03-07 00:03:28 +0000 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 2de221c to 04c7a1e
2013-03-01 15:32:47 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideoenc.h:
omxvideoenc: drop unused data member
2013-03-01 12:23:54 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
omxvideoenc: And set it actually on the right port
2013-03-01 12:18:08 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
omxvideoenc: Set the coding type in the subclasses to the specific codec
2013-03-01 11:49:53 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: gst_omx_port_update_port_definition() returns a OMX_ERRORTYPE, not a gboolean
2013-03-01 11:44:17 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omxvideo{dec,enc}: Don't use the input state if it wasn't set yet
2013-03-01 11:25:04 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Only enable the output port after we know the output format
2013-03-01 11:24:56 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Only enable the output port after we know the output format
2013-02-28 17:02:31 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Only enable the output port after we know the output format
2013-03-01 11:18:18 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Handle errors more gracefully
2013-02-28 15:48:53 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxh263dec.c:
* omx/gstomxh264dec.c:
* omx/gstomxmpeg2dec.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxvideodec.c:
* omx/gstomxwmvdec.c:
omx: Return the OMX_ERRORTYPE from gst_omx_port_update_port_definition
2013-02-28 15:37:53 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Return port definition update errors
2013-02-28 13:57:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/rpi/gstomx.conf:
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add hack for RPi for the minimum number of buffers required for a port
The value in the port definition is invalid and the initial actual
buffer count should be used.
2013-02-28 13:26:56 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Always tell the component about the right number of buffers that we're going to allocate
2013-02-28 13:07:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Invert assertion to let it express what was intended
2013-02-28 11:19:07 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Add API for allocating a specific number of buffers and using EGLImages or buffers allocated elsewhere
2013-02-27 16:55:16 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Refactor code flow a bit if output port settings have changed
2013-02-27 15:49:56 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Clean up port settings change handling
2013-02-27 11:30:14 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: initialize param structure before using it
2013-02-27 10:21:39 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideoenc.c:
omxvideoenc: prevent a NULL pointer access
2013-02-26 17:25:49 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideodec.c:
omxvideodec: prevent a NULL pointer access
2013-02-25 13:11:16 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Fix deadlock during reconfiguration
2013-02-25 12:38:27 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Auto-detect the port indizes if possible
2013-02-25 11:42:38 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Refactor querying of component supported caps into its own function
2013-02-25 10:41:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Refactor waiting for buffers to be released by the component to a separate function
2013-01-11 17:44:13 +0000 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add methods to set up and close a tunnel between components
2013-02-25 09:15:53 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaacenc.c:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Rename component variable
2013-02-25 09:15:46 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Rename component variable
2013-02-25 09:12:22 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Rename component variable
2013-02-22 16:27:33 +0100 Josep Torra <n770galaxy@gmail.com>
* omx/gstomxvideoenc.c:
omxvideoenc: remove duplicated line
2013-02-22 10:42:08 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
Retry loading libbcm_host.so without an absolute path if that failed
2013-02-21 20:32:42 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/bellagio/Makefile.am:
Add missing file from last commit
2013-02-21 11:01:28 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/Makefile.am:
* config/bellagio/gstomx.conf:
* configure.ac:
* omx/Makefile.am:
* omx/gstomx.conf:
Add OpenMAX IL target for Bellagio
Not tested since a very long time though.
2013-02-21 10:59:29 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/Makefile.am:
Allow using external OpenMAX IL headers
2013-02-21 10:14:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* .gitignore:
Update .gitignore
2013-02-21 10:13:16 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/Makefile.am:
* config/raspberry-pi.conf:
* config/rpi/Makefile.am:
* config/rpi/gstomx.conf:
* configure.ac:
Install the RPI config when the RPI target is selected
2013-02-21 10:08:07 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
Set default hacks for the RPI target and always initialize bcm_host
2013-02-21 10:05:37 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
Add configure parameter for setting the OpenMAX IL target
2013-02-12 11:55:39 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Add FIXME for the future
2013-02-12 11:49:21 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omx: Some minor refactoring and cleanup
2013-02-12 11:45:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Don't access the port's buffers array if it wasn't allocated yet
2013-02-12 11:44:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Mark an array as const
2013-02-12 11:41:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Split enabling/disabling of port into sending the command and waiting for it
This allows to do anything necessary after sending the command to actually let it finish
2013-02-12 11:37:38 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Flushing is also allowed in Paused state
2013-02-12 11:28:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Set stride, slice height and buffer size
2013-02-12 11:09:30 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* config/raspberry-pi.conf:
config: Add h264 and mpeg2 encoders to the raspberry pi config
Not completely working yet though.
2013-02-12 11:03:32 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Properly negotiate OMX color format with the component
2013-02-12 10:53:24 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Implement getcaps() vfunc
2013-01-29 21:32:53 +0000 Tim-Philipp Müller <tim@centricular.net>
* configure.ac:
configure: use 1.0 gstconfig.h to detect disabled subsystems
Update unused configure check for GStreamer core subsystem
features from 0.10 to 1.0.
2013-01-28 20:44:41 +0100 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From a942293 to 2de221c
2013-01-24 14:02:36 +0100 Julian Scheel <julian@jusst.de>
* config/raspberry-pi.conf:
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxmpeg2dec.c:
* omx/gstomxmpeg2dec.h:
omx: add mpeg2 video decoder
This adds a decoder class for mpeg2, as well as an extended
configuration for raspberry pi.
https://bugzilla.gnome.org/show_bug.cgi?id=692446
Signed-off-by: Julian Scheel <julian@jusst.de>
2013-01-18 16:47:04 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Minimize the time when the messages lock is held
Fixes a deadlock if any OMX functions are called when the
messages are handled.
Thanks to Nicolas Dufresne for noticing.
2013-01-18 15:28:20 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomx.c:
omx: improve debug message when we can't find the config file
Mention where we looked for the config file.
2013-01-18 12:34:38 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* configure.ac:
build: fix autogen.sh with automake 1.13
AM_CONFIG_HEADER -> AC_CONFIG_HEADERS
2013-01-17 18:07:41 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.h:
* omx/gstomxaudioenc.h:
* omx/gstomxvideodec.h:
* omx/gstomxvideoenc.h:
omx: Fix includes to properly work with the 1.0 releases
2013-01-15 15:08:28 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* common:
Automatic update of common submodule
From a72faea to a942293
2013-01-15 14:34:45 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Update port definition when changing some port setting
2013-01-14 11:41:57 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
omx: Rename from libgstopenmax.so to ligstomx.so for consistency
2013-01-11 15:32:22 +0000 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* omx/gstomx.c:
omx: Add a method to send message
2013-01-11 15:44:38 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Atomic ops are not required anymore for the reconfiguration
2013-01-11 12:52:10 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Fix some memory leaks and suboptimal locking
2013-01-11 12:34:04 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Don't forget to unmap frame in error cases
2013-01-11 12:29:20 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Fix copying of the video frames to the OMX buffers
2013-01-11 12:24:13 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix copying of the video frames from the OMX buffers
2013-01-10 14:44:33 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
omx: Implement new approach for locking that should solve all deadlocks on RPi
No mutex is locked while calling any OpenMAX functions anymore
and everything from the OpenMAX callbacks is inserted into a message
queue and handled from outside the callbacks.
Also there's only a single mutex and condition variable per component
now for handling anything from OpenMAX callbacks and a single mutex
for keeping our component/port state sane.
2012-12-20 19:30:38 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Set the OMX buffer nFilledLength field properly
2012-12-20 18:48:21 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
omxrecmutex: Fix another race condition when two threads are trying to lock for recursion at the same time
2012-12-20 18:16:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
omxrecmutex: Fix yet another race condition that resulted in deadlocks
2012-12-20 17:46:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
omx: Fix another race condition in the recursive mutex
Between lock() and begin_recursion() it was possible for another thread to
try to do a recursive_lock(). This would block because the mutex was already
locked(), but not ready for recursive locking yet. unlock() would never
happen in the original thread because it was waiting for the other thread
to finish first.
Happened on the Raspberry Pi.
2012-12-20 14:45:18 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
omxrecmutex: Fix a small race condition when unlocking a non-recursive lock
2012-12-20 12:30:05 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Fix ununsed variable compiler warning
2012-12-20 12:27:47 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: No need to start the srcpad task in ::start() already
It will be started properly after the caps are set.
2012-12-20 12:23:49 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: OMX_ErrorNoMore is no error and just means we ended iteration
2012-12-20 12:20:31 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Improve debug output
2012-12-20 12:02:30 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't forget to free a GList
2012-12-20 11:56:29 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Map OMX_COLOR_FormatYUV420PackedPlanar to I420 too
This is used on the Raspberry Pi.
2012-12-20 11:55:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: During negotiation of the output format make sure we use the correct OpenMAX format
2012-12-20 11:42:17 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: If negotiation fails this could also mean that the component can't do it at this point yet
2012-12-20 11:40:13 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Improve format negotiation a bit
Don't leak caps and make sure to fixate caps.
2012-12-19 13:05:28 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.h:
omx: Also initialize nStep field of the OMX structures
2012-12-19 13:03:37 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.h:
omx: Initialize struct version with the OMX version we compiled with
2012-12-19 12:44:31 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Extract data from the input buffer, not the codec data
2012-12-19 12:19:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* tools/listcomponents.c:
omx: Use has_suffix() instead of has_prefix() for the Broadcom hack
2012-12-19 12:08:35 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* Makefile.am:
* configure.ac:
* tools/Makefile.am:
* tools/listcomponents.c:
tools: Add tool to list all components and their roles
2012-12-19 11:31:51 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Add hack to load and initialize libbcm_host.so
Needed on the Raspberry Pi. Patch based on a patch by
George Kiagiadakis <george.kiagiadakis@collabora.com>
2012-12-19 11:22:16 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/gstomx.h:
configure: Add configure option to pack OpenMAX structures
This is required to set to 4 for the Raspberry Pi for example.
2012-12-19 11:07:44 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
configure: Require GStreamer 1.0.0
2012-04-20 17:13:52 +0300 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.h:
omx: Initialize structures to version 1.1.2
2012-12-19 09:51:22 +0000 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* Makefile.am:
* config/Makefile.am:
* config/raspberry-pi.conf:
* configure.ac:
* omx/gstomx-raspberry.conf:
config: Add raspberry-pi configuration in a different directory
2012-05-20 20:11:59 +0300 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx-raspberry.conf:
raspberry: Add a gstomx.conf for the Raspberry Pi
2012-12-12 17:45:39 +0000 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.h:
* omx/gstomxvideoenc.h:
omx: Fix some compilation errors caused by circular includes
2012-11-19 11:29:44 +0000 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 6bb6951 to a72faea
2012-11-12 15:14:09 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Fix refcount problem with frames being dropped because of decoder bugs
2012-11-12 11:29:48 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omx: Update to new GLib thread API
2012-10-22 14:34:53 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Use open/close vfuncs
2012-10-22 14:28:04 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Handle video meta correctly
2012-06-20 13:11:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideodecoder.h:
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
* omx/gstbasevideoutils.c:
* omx/gstbasevideoutils.h:
* omx/gstomxh263dec.c:
* omx/gstomxh263enc.c:
* omx/gstomxh264dec.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
* omx/gstomxwmvdec.c:
omx: Port to video base classes from -base
2012-10-17 17:57:43 +0100 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstomxaacenc.c:
* omx/gstomxh263dec.c:
* omx/gstomxh263enc.c:
* omx/gstomxh264dec.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxwmvdec.c:
omx: gst_element_class_set_details_simple() -> set_static_metadata()
2012-10-06 15:01:11 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 6c0b52c to 6bb6951
2012-09-22 16:10:38 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 4f962f7 to 6c0b52c
2012-06-21 20:22:13 +0300 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.c:
omx: fix debug statement
2012-06-21 20:21:03 +0300 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.c:
omx: use recursive_lock inside set_last_error(), since this function may be called from an event handler
2012-08-22 13:31:59 +0200 Stefan Sauer <ensonic@users.sf.net>
* common:
Automatic update of common submodule
From 668acee to 4f962f7
2012-08-05 16:42:43 +0100 Tim-Philipp Müller <tim@centricular.net>
* common:
Automatic update of common submodule
From 94ccf4c to 668acee
2012-08-03 19:32:13 +0100 Tim-Philipp Müller <tim@centricular.net>
* omx/gstomx.c:
omx: fix plugin name for new GST_PLUGIN_DEFINE API
2012-07-23 08:47:32 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From 98e386f to 94ccf4c
2012-07-10 09:57:09 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
omx: Update for allocation query API changes
2012-06-20 11:09:13 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Fix compilation after gst_pad_start_task() API changes
2012-06-08 15:06:35 +0200 Edward Hervey <edward.hervey@collabora.co.uk>
* common:
Automatic update of common submodule
From 03a0e57 to 98e386f
2012-06-06 18:20:18 +0200 Edward Hervey <edward.hervey@collabora.co.uk>
* common:
Automatic update of common submodule
From 1fab359 to 03a0e57
2012-06-01 10:30:27 +0200 Edward Hervey <edward.hervey@collabora.co.uk>
* common:
Automatic update of common submodule
From f1b5a96 to 1fab359
2012-05-31 13:10:33 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From 92b7266 to f1b5a96
2012-05-30 12:47:59 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From ec1c4a8 to 92b7266
2012-05-30 11:26:30 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From 3429ba6 to ec1c4a8
2012-05-13 15:58:10 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
From dc70203 to 3429ba6
2012-05-08 16:13:32 +0300 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.c:
omx: Fix spelling mistake found by lintian: s/Seperate/Separate/
2012-04-30 23:58:43 +0300 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxrecmutex.c:
* omx/gstomxrecmutex.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
Implement a new custom recursive mutex type and fix locking in callbacks so that in-context calls are allowed.
According to the OMX specification, implementations are allowed to call
callbacks in the context of their function calls. However, our callbacks
take locks and this causes deadlocks if the unerlying OMX implementation
uses this kind of in-context calls.
A solution to the problem would be a recursive mutex. However, a normal
recursive mutex does not fix the problem because it is not guaranteed
that the callbacks are called from the same thread. What we see in Broadcom's
implementation for example is:
- OMX_Foo is called
- OMX_Foo waits on a condition
- A callback is executed in a different thread
- When the callback returns, its calling function
signals the condition that OMX_Foo waits on
- OMX_Foo wakes up and returns
The solution I came up with here is to take a second lock inside the callback,
but only if recursion is expected to happen. Therefore, all calls to OMX
functions are guarded by calls to gst_omx_rec_mutex_begin_recursion() / _end_recursion(),
which effectively tells the mutex that at this point we want to allow calls
to _recursive_lock() to succeed, although we are still holding the master lock.
2012-04-20 14:51:34 +0000 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add hack to disable setting roles to components.
Conflicts:
omx/gstomx.c
2012-04-30 23:20:24 +0000 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omxvideodec: Implement no-empty-eos-buffer hack, as in omxvideoenc.
Conflicts:
omx/gstomxvideodec.c
2012-04-30 23:19:55 +0000 George Kiagiadakis <george.kiagiadakis@collabora.com>
* omx/gstomxvideodec.c:
omxvideodec: Fix coding style in the drain-may-not-return hack code
2012-04-25 19:03:48 +0530 Arun Raghavan <arun.raghavan@collabora.co.uk>
* omx/gstomx.c:
omx: Fix trivial debug print bug
2012-04-25 19:01:32 +0530 Arun Raghavan <arun.raghavan@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omxvideodec: Add hack for Ducati components not returning from drain
This happens on the Galaxy Nexus, and causes the pipeline to hang waiting
endlessly for a drain. The hack replaces the wait with a wait + 500ms timeout.
2012-04-25 16:35:40 +0530 Arun Raghavan <arun.raghavan@collabora.co.uk>
* omx/gstomx.c:
omx: Fix deadlock between ending a flush and the event handler
gst_omx_port_set_flushing() calls OMX_FillThisBuffer at the end of a flush
without releasing the port lock, and this can cause a deadlock with the
EventHandler. This patches fixes this by dropping the lock for the duration of
the fill buffer call.
2012-04-24 15:41:38 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
* omx/gstbasevideoencoder.c:
omx: Update video encoder/decoder base classes from gst-plugins-bad
2012-04-16 09:16:10 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
configure: Modernize autotools setup a bit
Also we now only create tar.bz2 and tar.xz tarballs.
2012-04-16 09:12:37 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* common:
Automatic update of common submodule
2012-04-16 08:34:56 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Use gst_buffer_extract() to copy the input buffer data to the OpenMAX buffer
2012-04-13 17:16:42 -0400 Alessandro Decina <alessandro.decina@collabora.com>
* omx/Makefile.am:
Fix relative/absolute path glitch
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
2012-04-12 15:57:32 -0400 Olivier Crête <olivier.crete@collabora.com>
* common:
* configure.ac:
* omx/Makefile.am:
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideodecoder.h:
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaacenc.c:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
* omx/gstomxh263dec.c:
* omx/gstomxh263enc.c:
* omx/gstomxh264dec.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
* omx/gstomxwmvdec.c:
Port to Gst 0.11
2012-01-18 16:53:16 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
* Android.mk:
* omx/Makefile.am:
Enable building with Android's buildsystem
This change adds prelimary buildsystem hooks to
build gst-omx with the Android buildsystem. Like
the rest of GStreamer's Android hooks, the process
relies on the availability of androgenizer. A tool
developed by Collabora to automatically generate
Android.mk files from within the auto* setup.
Androgenizer is currently available at:
http://cgit.collabora.com/git/user/derek/androgenizer.git/
2011-12-13 10:17:41 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
basevideocodec: Don't use G_TYPE_REGISTER_BOXED() yet
This would require GLib 2.26.
2011-12-14 10:09:34 +0100 Jonas Larsson <Jonas.Larsson@palm.com>
* omx/gstomxaudioenc.c:
omxaudioenc: Add hack for encoder components that don't allow empty EOS buffers
2011-12-14 10:07:29 +0100 Jonas Larsson <Jonas.Larsson@palm.com>
* omx/gstomxvideoenc.c:
omxvideoenc: Fix deadlock when using the EOS hack
2011-12-12 14:26:48 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Remove workaround for basevideocodec bug
2011-12-12 14:26:34 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Remove workaround for basevideocodec bug
2011-12-05 17:57:01 +0000 Matej Knopp <matej.knopp@gmail.com>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideoencoder.c:
basevideo: Make GstVideoFrame a reference counted boxed object
...and also clear all existing frames when resetting the decoder or encoder.
2011-12-09 12:17:29 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideoenc.c:
omx: Add hack for encoder components that don't allow empty EOS buffers
2011-12-09 10:21:47 +0100 Dake Gu <Dake.Gu@palm.com>
* omx/gstomxaacenc.c:
omxaacenc: Generate and set codec_data on the caps for raw AAC
2011-10-31 11:36:06 +0100 Alessandro Decina <alessandro.decina@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: handle failures in start() and stop()
2011-08-26 10:50:38 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoenc: do not try to calculate latency from an unknown framerate
It'll divide by zero, and latency is unknown for an unknown framerate.
Fixes an assert in the schroenc test.
https://bugzilla.gnome.org/show_bug.cgi?id=657419
2011-12-08 11:50:49 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Only make the header buffer metadata writable, not the buffer
2011-12-08 10:18:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Fix handling of force-keyunit events
2011-12-06 13:28:41 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Don't forward EOS events immediately but let all other events be handled by the base class
Previously this logic was inversed, which did not make any sense at all.
2011-12-06 12:47:25 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Use correct timestamp, duration and filled length for the EOS buffers
2011-12-06 12:47:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Use correct timestamp, duration and filled length for the EOS buffers
2011-12-06 12:46:51 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Use correct timestamp, duration and filled length for the EOS buffers
2011-12-05 13:18:09 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Improve debugging of buffer handling
2011-12-05 08:12:48 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Drop EOS events in ::finish()
The event will be forwarded downstream from the srcpad
loop function after the last buffer was generated by the
component. Forwarding it after ::finish() will use the
sinkpad streaming thread and does not guarantee that
the encoder is completely drained.
2011-12-01 16:20:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Properly drop frames due to QoS
Instead of finishing them they should be passed to drop(), which
will then send QoS messages.
2011-11-29 12:21:32 +0100 Jonas Larsson <jonas@hallerud.se>
* omx/gstomxh264enc.c:
omxh264enc: Add support for resending headers after a forced-keyframe
2011-11-29 12:12:33 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.h:
* omx/gstbasevideoencoder.c:
basevideoencoder: Pass the all-headers field of the force-key-unit event to the subclass
2011-11-29 12:12:04 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Implement full support for the new force-key-unit event
Including support for the running-time and count fields.
2011-11-29 09:31:11 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Use new force-keyunit event API from gst-plugins-base
2011-11-29 09:18:19 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Adjusting padding is not required for -bad libraries
2011-11-28 19:48:01 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.h:
basevideoencoder: Move some fields to the private part of the instance struct
2011-11-28 19:36:56 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Make headers metadata writable before pushing downstream
The timestamp, duration, etc of the headers has to be changed.
2011-11-28 19:35:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Push the downstream force-keyframe event after the next keyframe
Even if the corresponding GstVideoFrame doesn't have the is_sync_point
flag set.
2011-11-28 19:29:13 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Don't push an upstream force-keyunit event downstream
2011-11-25 11:48:08 +0100 Jonas Larsson <jonas@hallerud.se>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Add initial support for the all-headers field of the force-keyframe event
See bug #607742.
2011-11-25 11:37:39 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: some more debug logging
2011-11-23 20:03:32 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstbasevideodecoder.c:
* omx/gstbasevideodecoder.h:
basevideodecoder: add API to drop a frame and post a QoS message on the bus
https://bugzilla.gnome.org/show_bug.cgi?id=640017
API: gst_base_video_decoder_drop_frame()
2011-11-22 23:04:49 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstbasevideodecoder.c:
docs: fix comment in gst_base_video_decoder_get_max_decode_time() docs
2011-11-22 19:57:07 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: fix weird event list handling
Get rid of weird code that copies a list manually, taking
ownership of the elements and then frees the old list. Instead,
just take over the old list entirely. (If the intent was to
reverse the list, one could use g_list_reverse() instead).
Then, push events in the list out from last to first (since they
were prepended as they came in) instead of just pushing out the
last in the list and leaking the others.
2011-11-25 11:31:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/Makefile.am:
* omx/gstbaseaudiodecoder.c:
* omx/gstbaseaudiodecoder.h:
* omx/gstbaseaudioencoder.c:
* omx/gstbaseaudioencoder.h:
* omx/gstbaseaudioutils.c:
* omx/gstbaseaudioutils.h:
* omx/gstomxaacenc.c:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Use audio base classes from gst-plugins-base instead of having our own copies
2011-11-18 10:00:31 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: First set ports to flushing before waiting for the srcpad streaming thread to finish
2011-11-18 09:59:43 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: First set ports to flushing before waiting for the srcpad streaming thread to finish
2011-11-18 09:58:58 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: First set ports to flushing before waiting for the srcpad streaming thread to finish
2011-11-17 14:38:54 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Only disabling of a port is like flushing, enabling is like unflushing
2011-11-17 13:33:35 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Enabling/disabling a port is also like flushing
The component returns all buffers to us and shouldn't get any
new buffers passed anymore.
2011-11-17 11:26:33 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Signal the drain GCond even if downstream returned an error
2011-11-17 11:26:20 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Signal the drain GCond even if downstream returned an error
2011-11-17 11:25:52 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Signal the drain GCond even if downstream returned an error
2011-11-17 10:34:19 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Only call ::reset once in READY->PAUSED
2011-11-17 10:19:35 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Shutdown component in PAUSED->READY and deallocate buffers
2011-11-17 10:19:30 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Shutdown component in PAUSED->READY and deallocate buffers
2011-11-17 10:19:10 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Shutdown component in PAUSED->READY and deallocate buffers
2011-11-16 12:02:08 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Set force_keyframe to FALSE after handling it
There's no reason why the base class should forward the event
further downstream if we already handled it and will insert a
keyframe.
2011-11-16 11:21:25 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Always push buffers downstream, even if we didn't find a corresponding GstVideoFrame
2011-11-15 09:47:55 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Fix debug level for flushing in wrong state from ERROR to DEBUG
It's not really an error and doesn't matter at all if flush is called
when the component is not running.
2011-11-15 08:40:07 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264enc.c:
omxh264enc: Detect bytestream stream format and don't put SPS/PPS into the caps for this format
2011-11-15 08:28:32 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Add vfunc for handling the output frames
This can be used by subclasses to override the buffer flags
or to handle some frames differently than the default behaviour.
2011-11-14 12:50:26 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't release buffers twice if dropping because of QoS
2011-11-14 09:13:06 -0800 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Add XXX to the nOffset reset hack comment for QCOM
2011-11-10 15:18:08 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Make srcpad caps setting threadsafe
2011-11-10 15:17:56 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Make srcpad caps setting threadsafe
2011-11-10 15:17:41 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Make srcpad caps setting threadsafe
2011-11-10 15:10:14 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Make the srcpad task and the sinkpad streaming thread handling threadsafe
2011-11-10 15:03:05 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Always flush the ports and make sure no processing is happening in ::flush
This fixes a race condition that happened when seeking
very often in a short period of time.
2011-11-10 15:02:22 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Always flush the ports and make sure no processing is happening in ::reset
This fixes a race condition that happened when seeking
very often in a short period of time.
2011-11-10 15:01:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Fix minor race condition when draining after upstream signalled EOS
2011-11-10 14:56:19 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Improve EOS handling
If downstream return UNEXPECTED we should still signal the
drain cond because nothing will trigger this again later.
2011-11-10 14:56:11 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Improve EOS handling
If downstream return UNEXPECTED we should still signal the
drain cond because nothing will trigger this again later.
2011-11-10 14:54:33 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Improve debugging of EOS and draining
2011-11-10 14:54:17 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Improve debugging of EOS and draining
2011-11-10 14:51:06 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Log if acquiring buffer for EOS failed
2011-11-10 14:42:13 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: The component is not started in READY
2011-11-10 14:39:40 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: No need to signal the drain cond when going from READY to PAUSED
Also the component is not started in READY
2011-11-10 14:40:56 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: No need to signal the drain cond when going from READY to PAUSED
Also the component is not started in READY.
2011-11-09 15:46:02 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Always flush the ports and make sure no processing is happening in ::reset
This fixes a race condition that happened when seeking
very often in a short period of time.
2011-11-09 15:45:20 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix minor race condition when draining after upstream signalled EOS
2011-11-09 15:44:11 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Improve EOS handling
If downstream return UNEXPECTED we should still signal the
drain cond because nothing will trigger this again later.
2011-11-09 15:43:32 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Improve debugging of EOS and draining
2011-11-09 15:42:46 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: The component is not started already when going from READY to PAUSED
2011-11-09 15:42:13 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: No need to signal the drain cond when going from READY to PAUSED
2011-11-09 15:41:02 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Always reset buffer flags for output ports, even in flushing/error state
2011-11-09 09:00:57 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Improve debugging in case of QoS-related frame drops
2011-11-08 12:46:31 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Release the video codec stream lock before acquiring an input buffer
Otherwise the srcpad task might block on this lock and
no buffers ever become available again.
2011-11-08 12:45:16 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Release the audio encoder stream lock before acquiring an input buffer
Otherwise the srcpad task might block on this lock and
no buffers ever become available again.
2011-11-08 12:42:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Release the video codec stream lock before acquiring an input buffer
Otherwise the srcpad task might block on this lock and
no buffers ever become available again.
2011-11-08 11:07:01 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Don't try to drain the component after EOS
And don't send EOS twice in any case. This most likely
will cause the component to not output it again and
is not necessary anyway.
2011-11-08 11:03:29 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Don't try to drain the component after EOS
And don't send EOS twice in any case. This most likely
will cause the component to not output it again and
is not necessary anyway.
2011-11-08 10:46:36 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Don't try to drain the component after EOS
And don't send EOS twice in any case. This most likely
will cause the component to not output it again and
is not necessary anyway.
2011-11-08 09:09:28 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Implement dropping of too late frames via QoS
2011-11-08 08:31:58 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Minor code refactoring
2011-11-08 08:31:43 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Minor code refactoring
2011-11-08 08:31:32 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Make sure to always release buffers back to OMX
2011-11-08 08:24:19 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Also properly release buffers when in error state
2011-11-08 08:22:08 +0100 Jonas Larsson <Jonas.Larsson@palm.com>
* omx/gstomx.c:
omx: Properly release buffers during flushing
We can't pass them back to OMX_FillThisBuffer() or OMX_EmptyThisBuffer()
but instead of doing nothing we have to put them back into our queue.
Otherwise the buffer is leaked and we will have too few buffers in
the future.
2011-11-07 14:00:47 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Free pending frames after draining component
2011-11-07 14:00:35 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Free pending frames after draining the component
2011-11-07 11:07:01 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Make handling and usage of the base video codec frames threadsafe
2011-11-07 11:05:29 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Fix deadlock between srcpad stream lock and ::reset()
2011-11-07 11:04:27 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideoenc: Make handling and usage of the base video codec frames threadsafe
2011-11-07 10:58:44 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Free all pending frames after draining the component
2011-11-07 10:58:24 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Always free all pending frames when caps changes require reconfiguration
2011-11-04 09:43:48 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Only drain the component a single time and only after processing started
2011-11-04 09:43:32 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Only drain the component a single time and only after processing started
2011-11-04 09:43:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Only drain the component a single time and only after processing started
2011-11-04 09:04:16 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Reset buffer flags to 0 after it was consumed by the component or the element
Some implementations don't reset the flags and the standard is not
really clear on the expected behaviour. Let's just always reset the
flags as they're not valid at this point anymore.
2011-11-02 13:50:14 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Better handling of encoder parameters
Only set them if necessary and allow to use the component
defaults.
2011-11-02 13:22:50 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Make unsupported bitrate/quantizer settings less fatal
2011-11-02 10:39:50 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: If no stride was set for the OMX output port assume GStreamer stride
This is not really correct but there's nothing else we could do.
2011-11-02 10:39:10 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: If no stride was set for the OMX input port assume GStreamer stride
This is not really correct but there's nothing else we could do.
2011-11-01 16:46:09 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Implement draining of the component and use it
This makes sure that all buffers are encoded and pushed downstream
before flushing the ports and losing some buffers.
2011-11-01 16:41:46 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Implement draining of the component and use it
This makes sure that all buffers are encoded and pushed downstream
before flushing the ports and losing some buffers.
2011-11-01 16:08:59 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Implement draining of the component and use it
This makes sure that all buffers are decoded and pushed downstream
before flushing the ports and losing some buffers.
2011-10-20 14:32:40 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix deadlock if ::reset is called before finding the corresponding frame of a decoded buffer
2011-11-01 15:10:12 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
* omx/gstomxvideoenc.h:
omxaudioenc: Forward downstream flow returns to upstream
2011-11-01 15:10:01 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Forward downstream flow returns to upstream
2011-11-01 13:58:38 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Forward downstream flow returns to upstream
2011-10-25 14:23:38 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* README:
omx: Add minimal README file
2011-10-20 15:21:07 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix deadlock caused by calling reset while the loop function does something with the base video codec stream lock
2011-10-20 15:20:47 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Fix deadlock caused by calling reset while the loop function does something with the base video codec stream lock
2011-10-20 14:30:38 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Move locking at the correct place
2011-10-14 10:27:47 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Remove QCOM hack to reset nOffset in EmptyBufferDone
This is now done in a generic way that does not require any
hacks because it will work without any side effects on any
OMX implementation.
2011-10-14 10:26:00 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Reset nOffset to 0 in EmptyBufferDone if nFilledLen is 0
Some OMX implementations don't reset nOffset when the complete
buffer is emptied but instead only reset nFilledLen. We reset
nOffset to 0 if nFilledLen == 0, which is safe to do because
the offset *must* be 0 if the buffer is not filled at all.
Seen in QCOM's OMX implementation.
2011-10-04 10:56:33 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: If one parameter/configuration is not supported don't skip the next
2011-10-03 09:12:44 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264dec.c:
omxh264dec: Require stream-format=byte-stream
Other stream-formats are unlikely to be supported by OMX components.
2011-09-29 10:37:32 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Add API for subclasses to prepare/convert frames
2011-09-27 15:08:54 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Switch to Idle first and wait before switching to Loaded and deallocating buffers
Allocating buffers before the Idle state is reached can lead to crashes.
2011-09-27 15:08:44 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Switch to Idle first and wait before switching to Loaded and deallocating buffers
Allocating buffers before the Idle state is reached can lead to crashes.
2011-09-27 15:05:19 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Switch to Idle first and wait before switching to Loaded and deallocating buffers
Allocating buffers before the Idle state is reached can lead to crashes.
2011-09-27 14:15:06 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omxvideodec: New hack for QCOM to recreate the component instead of reconfiguring it on caps changes
2011-09-27 12:13:56 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Change a g_assert() into a GST_WARNING_OBJECT()
2011-09-26 13:04:18 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add hack for Qualcomm's OMX implementation to manually reset nOffset in EmptyBufferDone
2011-09-23 17:02:49 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Add a check to prevent a zero-sized OMX buffer
2011-09-23 17:02:19 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Add some more checks for correct OMX buffer sizes
2011-09-23 15:53:49 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Add some more checks for OMX buffer sizes
2011-09-14 10:15:38 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxaudioenc.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omx: Wait until the Executing state is reached before calling OMX_FillThisBuffer()
This correctly works around the QCOM race condition that happens when calling
FTB after setting the new state and before reaching it.
2011-09-02 14:43:43 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Negotiate video format with downstream and what the component claims to support
2011-08-25 19:56:58 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: fix element leak
and this concludes an hour of yelling at the bloody test failing,
only to track down the problem not being in the test.
https://bugzilla.gnome.org/show_bug.cgi?id=657368
2011-08-19 09:20:39 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Release basevideocodec stream lock while waiting for a buffer
This prevents deadlocks if no empty input buffers are available and
releasing input buffers requires the loop function to handle some
output buffers first.
2011-08-19 09:19:22 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Release basevideocodec stream lock while waiting for a buffer
This prevents deadlocks if no empty input buffers are available and
releasing input buffers requires the loop function to handle some
output buffers first.
2011-08-18 10:24:26 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: Fix deadlock
2011-08-18 10:03:20 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudiodecoder.c:
baseaudiodecoder: Don't take the stream lock in the seek handler
This will lead to deadlocks
2011-08-18 10:02:50 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideoencoder.c:
basevideo: Fix locking, especially if both pads have different streaming threads
2011-08-18 09:42:02 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
* omx/gstbasevideoencoder.c:
basevideo: Don't call g_type_class_peek_parent() in class_init
This is already done by the GObject boilerplate macro
2011-08-18 09:40:46 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudiodecoder.c:
baseaudiodecoder: Don't call g_type_class_peek_parent() in class_init
This is already done by the boilerplate macro
2011-08-18 09:34:38 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudiodecoder.c:
* omx/gstbaseaudiodecoder.h:
baseaudiodecoder: Fix thread safety issues if both pads have different streaming threads
2011-08-18 09:17:04 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudiodecoder.c:
baseaudiodecoder: Delay sending of serialized events to finish_frame()
2011-08-17 14:33:31 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Always require at least OMX_MIN_PCMPAYLOAD_MSEC per input buffer
2011-08-17 14:28:44 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudioencoder.c:
* omx/gstbaseaudioencoder.h:
baseaudioencoder: Add support for requesting a minimum and maximum number of samples per frame
This extends the special case of a fixed number of samples per frame
that was supported before already.
2011-08-17 14:17:18 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Handle inbuf==NULL properly in ::handle_frame()
2011-08-17 13:04:19 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaacenc.c:
omxaacenc: Implement ::get_num_samples() vfunc
2011-08-17 13:03:50 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Add vfunc to get the number of samples inside a buffer
2011-08-17 11:34:31 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Release baseaudioencoder stream lock while waiting for a buffer in ::handle_frame()
This prevents deadlocks if no empty input buffers are available and
releasing input buffers requires the loop function to handle some
output buffers first.
2011-08-17 11:34:04 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudioencoder.c:
* omx/gstbaseaudioencoder.h:
baseaudioencoder: Fix thread safety issues if both pads have different streaming threads
2011-08-17 09:58:01 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudioencoder.c:
baseaudioencoder: Taking the OBJECT lock in reset() is not needed
2011-08-16 11:03:24 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxaudioenc.c:
omxaudioenc: Remove hack that only applies to the video encoder class
2011-08-16 10:49:21 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomx.conf:
* omx/gstomxaacenc.c:
* omx/gstomxaacenc.h:
omxaacenc: Add initial version of OpenMAX AAC encoder element
2011-08-15 15:10:04 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomxaudioenc.c:
* omx/gstomxaudioenc.h:
omxaudioenc: Add initial version of audio encoder base class
2011-08-15 14:14:11 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudioencoder.c:
baseaudioencoder: Delay sending of serialized events to finish_frame()
2011-08-15 13:06:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstbaseaudiodecoder.c:
* omx/gstbaseaudiodecoder.h:
* omx/gstbaseaudioencoder.c:
* omx/gstbaseaudioencoder.h:
audio: Integrate audio base classes into the build system and fixup
2011-08-15 12:56:00 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbaseaudiodecoder.c:
* omx/gstbaseaudiodecoder.h:
* omx/gstbaseaudioencoder.c:
* omx/gstbaseaudioencoder.h:
* omx/gstbaseaudioutils.c:
* omx/gstbaseaudioutils.h:
audio: Add audio decoder/encoder base classes
Taken from http://cgit.collabora.com/git/user/manauw/gst-plugins-bad.git/log/?h=baseaudio
2011-08-12 12:25:03 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Proxy the width/height/framerate/PAR constraints of downstream caps to upstream
This allows to specify constraints on the compressed downstream caps
by muxers or capsfilters, which will then be forwarded to upstream
and allows video converters to fulfill the constraints.
Code based on Mark Nauwelaerts audio encoder base class.
2011-08-12 12:13:45 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.h:
basevideoencoder: Remove old ::getcaps() comment
2011-08-12 12:06:23 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Remove ::get_caps() vfunc
Subclasses can set the caps more efficiently and this only
caused additional indirections.
2011-08-10 10:24:21 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideoenc.c:
omxvideoenc: Use "video/x-raw-yuv" as sink template caps instead of strict I420 caps
2011-08-10 10:23:39 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxmpeg4videodec.c:
omxmpeg4videodec: Don't require width/height on sink pad caps
2011-08-10 10:11:37 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263dec.c:
* omx/gstomxh264dec.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxvideodec.c:
* omx/gstomxwmvdec.c:
omxvideodec: Use "video/x-raw-yuv" as src template caps instead of strict I420 caps
2011-08-10 09:56:30 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Set the state back to StateLoaded even if an error happened
2011-08-10 09:49:57 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Don't hold any locks while calling OMX_SendCommand()
It might call into one of the callbacks and lead to deadlocks, e.g.
with the Qualcomm OMX implementation.
2011-08-10 09:32:01 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Move some code
2011-08-10 09:23:10 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Reset pending reconfigure output ports when changing the state from Executing to any lower state
2011-08-10 09:08:00 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Fix crash when setting last error after the ports were freed
2011-08-10 09:03:52 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Free component structure
2011-08-10 09:02:52 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Make component destruction safer
2011-08-10 08:53:05 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Set pAppPrivate of buffers to NULL when deallocating buffers
This prevents usage of freed memory later if the OMX component
has weird behaviour.
2011-08-10 08:52:25 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Set the state back to StateLoaded even if an error happened
2011-08-10 08:51:54 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Add some assertions to check if the buffer pAppPrivate is still correct
2011-08-08 13:04:30 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.h:
omx: Add parenthesis at correct places in the struct init macro
2011-08-08 12:12:58 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Only prevent setting a higher state if the component is in an error state
2011-08-03 16:02:01 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: Use the cached video frame size instead of recalculating it
2011-08-03 15:35:01 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Improve debugging in param/config getter/setter wrappers
2011-08-03 13:10:33 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't abort if the color format is not supported but give a useful error message
2011-08-02 15:14:37 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh263enc.c:
* omx/gstomxh264enc.c:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxvideoenc.c:
omxvideoenc: Don't fail if setting the bitrate or profile is not supported by the component
Also always set/get the profile, even if there are no peer caps.
2011-08-02 15:14:24 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Make access to the list of frames threadsafe
2011-08-01 13:22:05 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add a hacks flag for the Qualcomm 7x30 OMX_FillThisBuffer() race and make it optional
2011-07-29 13:56:59 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Add workaround for QCOM 7x30 race condition
2011-07-29 12:06:21 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxh263enc.c:
* omx/gstomxh263enc.h:
omxh263enc: Add H.263 encoder element
2011-07-29 11:26:39 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxmpeg4videoenc.c:
omxmpeg4videoenc: Add support for setting profile/level via caps
2011-07-28 14:14:45 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264enc.c:
omxh264enc: Add support for setting profile/level via caps
2011-07-28 12:58:25 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Add support for forcing the next frame to be a keyframe
2011-07-28 11:54:16 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Add support for setting bitrate/quantization related parameters
2011-07-28 10:23:08 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add wrapper functions for OMX_[GS]et{Config,Parameter}
2011-07-28 09:54:53 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Add macro to initialize OpenMAX structures
2011-07-28 09:08:38 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Don't output 0-byte buffers
2011-07-25 15:05:08 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Ensure that the pAppPrivate pointer in OMX buffers is set correctly
2011-07-25 13:19:06 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideoenc.c:
omxvideo{enc,dec}: Only set/unset flushing state on ports if they were created already
2011-07-25 12:01:05 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxwmvdec.c:
* omx/gstomxwmvdec.h:
omxwmvdec: Add WMV video decoder element
2011-07-25 11:44:56 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxh263dec.c:
* omx/gstomxh263dec.h:
omxh263dec: Add H.263 decoder element
2011-07-25 11:32:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxh264enc.c:
* omx/gstomxh264enc.h:
omxh264enc: Add H.264 encoder element
2011-07-25 10:48:58 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Try harder to deallocate the buffers after errors happened
2011-07-25 10:47:28 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Try harder to deallocate the buffers after errors happened
2011-07-25 10:46:49 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Deallocate port buffers before freeing the component
They should be deallocated by the caller before reaching the
Loaded state but to be on the safe side we will make sure
they're really deallocated here.
2011-07-21 11:15:14 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Add initial support for stride conversion
2011-07-21 10:38:26 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264dec.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxmpeg4videoenc.c:
omx: Set default roles for the components if none were set from the config file
2011-07-21 10:36:19 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Failure to set the component role is fatal
2011-07-21 07:53:25 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Add support for setting codec_data on the srcpad caps
2011-07-21 07:44:34 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Free/drop GstVideoFrames that resulted in an empty buffer
2011-07-21 07:44:10 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Allow finishing of frames with no src_buffer to drop/free the GstVideoFrame
2011-07-21 07:31:05 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideoenc.c:
omxvideoenc: Remove obsolete TODO comment
2011-07-20 11:09:54 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
omx: Use libgstopenmax.so for the plugin filename and openmax for the plugin name
Resolves conflicts with gst-openmax.
2011-07-20 08:34:33 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomx.conf:
* omx/gstomx.h:
* omx/gstomxmpeg4videoenc.c:
* omx/gstomxmpeg4videoenc.h:
* omx/gstomxvideoenc.c:
* omx/gstomxvideoenc.h:
omxvideoenc: Add video encoder base class and MPEG4 video encoder
Unfortunately requires lots of hacks again to work properly with
Bellagio.
2011-07-20 10:39:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Only get caps from the subclass if they were not set yet by the subclass
2011-07-20 09:25:28 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Delay sending of serialized sink events until finish_frame()
2011-07-20 09:09:25 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
basevideoencoder: Add ::reset vfunc and handle ::reset/::finish the same way as in the decoder
2011-07-19 12:50:43 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideoencoder.c:
basevideoencoder: Use a temporary GstVideoState until the subclass accepted the caps
Also store the caps in the GstVideoState and assume a PAR of 1/1 instead
of 0/1 if no PAR is specified in the caps.
2011-07-19 12:29:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomxvideodec.c:
omx: Improve debug output a bit
2011-07-19 10:33:54 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omx: Rework port reconfiguration again and only use the Bellagio specific hacks with Bellagio
We only reconfigure ports that need to be reconfigured now instead of
always all ports.
2011-07-19 10:33:15 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.conf:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omx: Add infrastructure to enable special hacks for broken OpenMAX implementations
2011-07-18 13:10:49 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: When acquiring a buffer from an input port always wait until all output ports are reconfigured
2011-07-18 08:41:20 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Add support for converting between omx and gst rowstrides
2011-07-14 10:34:09 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Provide all buffers to output ports after enabling them
2011-07-14 08:29:03 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Add support for NV12 / OMX_COLOR_FormatYUV420SemiPlanar
2011-07-14 07:58:41 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Only flush the component ports after we passed input to them
2011-07-13 21:19:34 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Only change states downwards if an upper state was reached
2011-07-13 20:37:02 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omx: Add support for setting the component-role
2011-07-13 20:22:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omx: Improve error reporting by formatting the error codes better and also providing their string representation
2011-07-13 14:36:14 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* Makefile.am:
build: Dist autogen.sh
2011-07-13 14:35:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
* omx/gstomx.c:
build: Only require GStreamer >= 0.10.29 and GLib >= 2.16
2011-07-13 14:04:47 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
build: Dist gstomx.conf
2011-07-13 14:04:20 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* Makefile.am:
build: Clean _stdint.h on "make distclean"
2011-07-13 14:02:50 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix typo
2011-07-13 13:59:50 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
omx: Dist gstomx.h
2011-07-13 12:46:50 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Set SYNCFRAME flag on the OMX buffers for non-delta units
2011-07-13 12:37:44 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Free all pending frames when resetting the decoder
Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=654529
2011-07-13 09:59:49 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Handle output buffers without a corresponding GstVideoFrame more gracefully
This can happen on EOS in some cases and when the input is not
properly framed.
2011-07-13 09:31:22 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix deadlock when finishing old frames that are left over by the decoder
2011-07-12 11:37:28 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264dec.c:
omxh264dec: It's called H.264, not H264
2011-07-12 11:36:42 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264dec.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Make sink/src pad template caps configurable
2011-07-12 11:13:50 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Allow to set a preferred configuration directory with the GST_OMX_CONFIG_DIR environment variable
2011-07-12 10:55:57 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264dec.c:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxvideodec.c:
omxvideodec: Make core/component-name and in/outport index configurable
2011-07-12 10:05:31 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.conf:
* omx/gstomx.h:
omx: Add initial version of configuration system
This now only registers elements that are specified in the
configuration file.
The configuration file is a keyfile in the first XDG configuration
directory with the name gstomx.conf.
2011-07-12 08:53:15 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxh264dec.c:
* omx/gstomxh264dec.h:
* omx/gstomxh264videodec.c:
* omx/gstomxh264videodec.h:
omxh264dec: Rename from omxh264videodec to omxh264dec
2011-07-12 08:40:48 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxh264videodec.c:
omxh264videodec: Require alignment=au and stream-format={avc,bytestream}
2011-07-11 12:59:07 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: First inform subclass about resetting before resetting/freeing all internal state
The subclass might want to access the old state.
2011-07-11 12:36:42 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: Track present position on discont before resetting it
2011-07-11 11:52:33 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: Also protect the list of pending frames from concurrent access when pushing all pendings events
2011-07-11 11:28:40 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
basevideocodec: Protect access to the list of pending frames with the object lock
This is required if ::finish_frame() and all buffer output happens
on a different thread than the sinkpad streaming thread.
2011-07-11 09:35:25 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: Set the correct lists to NULL after freeing
2011-07-11 08:54:53 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideodecoder.c:
basevideodecoder: Work with a copy of the GstVideoState in setcaps until the caps are accepted
Also fix a refcount problem with the codec_data.
2011-07-12 08:34:44 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomxh264videodec.c:
* omx/gstomxh264videodec.h:
omxh264videodec: Add h.264 video decoder
2011-07-12 08:29:15 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxmpeg4videodec.c:
omxmpeg4videodec: Fix debug category name
2011-07-09 11:41:42 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoutils.c:
* omx/gstbasevideoutils.h:
basevideo: Move the utils from the codec header to its own header
2011-07-09 11:32:06 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideodecoder.c:
basevideo: Use GSlice for allocating GstVideoFrame and don't duplicate code in the decoder base class
2011-07-09 11:05:37 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Use the destroy notify to free the coder_hook
2011-07-09 10:57:52 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
basevideo: Add destroy notify for the coder_hook to prevent memory leaks
Fixes bug #654293.
2011-07-09 10:44:16 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
basevideo: Fix GType names to not conflict with the public video base classes
It's still not possible to include headers of both in the same file
or compile/link both into the same plugin but that shouldn't be
necessary anyway.
2011-07-08 15:42:56 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Fix some minor memory leaks
2011-07-08 15:25:07 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omx: Rework port reconfiguration
We always reconfigure all ports now if the settings of one
port changes to prevent lots of race conditions, dropped
frames and similar issues.
2011-07-08 13:16:45 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Use the frames storage of the base class instead of implementing our own
They could get out of sync and we could store already destroyed frames.
2011-07-07 12:51:03 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.h:
omx: Clarify GQueue/GPtrArray element types
2011-07-07 12:23:24 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxvideodec.c:
omx: Add more checks to acquire_buffer() and return the current state additional to the buffer
Also refactor the code flow in the video decoder for this. This makes
the usage of acquire_buffer() easier and more atomic.
2011-07-07 12:22:57 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Also flush/unflush the input port when changing the state PAUSED<->READY
2011-07-07 12:21:31 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Don't broadcast port->port_cond after allocating buffers successfully
Allocating buffers must happen while no thread is waiting for the
cond and especially must happen from the thread that would acquire
buffers from the port.
2011-07-07 11:27:15 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Don't leak the codec_data after sending it
2011-07-07 10:27:31 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Always check if the component is in an error state before waiting for a condition variable to be signalled
Otherwise we might wait forever because nothing is going to signal
the condition variable anymore.
2011-07-07 10:22:12 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Always hold port->port_lock before signalling port->port_cond when notifying about errors
Otherwise a port might be in the critical section, has checked the error state
already but waits after port->port_cond is signalled, which will lead
to a deadlock.
2011-07-07 10:07:43 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Remove reconfiguration test hack
2011-07-06 13:27:12 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Improve debug output a bit
2011-07-06 13:26:51 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Always try to deallocate buffers, even if there's a component error
2011-07-06 13:26:01 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
omx: Use G_USEC_PER_SEC for clarity instead of 1000000
2011-07-06 13:19:15 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Error out if the GStreamer allocated buffer is smaller than the OpenMAX output buffer
Usually this must never happen but currently it happens during reconfigurations
because of a race condition. Still it's better than crashing.
2011-07-06 10:40:13 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Don't use port_def.bEnabled to check if the Enable/Disable command is finished
bEnabled should be set immediately after sending the command, it's only
Bellagio that waits until the command is finished before setting it.
2011-07-06 10:30:11 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxvideodec.c:
omxvideodec: Remove obsolete FIXME comment
2011-07-06 10:29:54 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomx.c:
* omx/gstomx.h:
omx: Improve error handling and reporting
2011-07-06 08:48:37 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstomxmpeg4videodec.c:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omxvideodec: Make the inport and outport index configurable by the subclass
2011-06-28 08:51:23 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/Makefile.am:
* omx/gstomx.c:
* omx/gstomx.h:
* omx/gstomxmpeg4videodec.c:
* omx/gstomxmpeg4videodec.h:
* omx/gstomxvideodec.c:
* omx/gstomxvideodec.h:
omx: Add initial version of OpenMAX framework, video decoder base class and MPEG4 video decoder
This currently hardcodes a lot of stuff but works at least.
Also adds a generic framework for handling OpenMAX cores, components
and ports.
2011-06-28 11:47:25 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideodecoder.h:
basevideodecoder: Don't reorder serialized src events
And allow to drop EOS by the subclass if ::finish returns
DROPPED.
Fixes bug #653544.
2011-06-27 09:41:40 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
basevideo: Add the caps to the GstVideoState and clean up caps/codec_data properly
2011-06-27 09:37:03 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/gstbasevideocodec.c:
* omx/gstbasevideocodec.h:
* omx/gstbasevideodecoder.c:
* omx/gstbasevideodecoder.h:
* omx/gstbasevideoencoder.c:
* omx/gstbasevideoencoder.h:
* omx/gstbasevideoutils.c:
basevideo: Add video encoder/decoder base classes from gst-plugins-bad
2011-06-21 11:17:35 +0200 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* omx/openmax/OMX_Audio.h:
* omx/openmax/OMX_Component.h:
* omx/openmax/OMX_ComponentExt.h:
* omx/openmax/OMX_ContentPipe.h:
* omx/openmax/OMX_Core.h:
* omx/openmax/OMX_CoreExt.h:
* omx/openmax/OMX_IVCommon.h:
* omx/openmax/OMX_Image.h:
* omx/openmax/OMX_Index.h:
* omx/openmax/OMX_IndexExt.h:
* omx/openmax/OMX_Other.h:
* omx/openmax/OMX_Types.h:
* omx/openmax/OMX_Video.h:
* omx/openmax/OMX_VideoExt.h:
openmax: Add OpenMAX IL 1.1.2 headers
|