summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 89cc319e517583fa12538f563a5fa3f13295d99b (plain)
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
2006-12-12  David Schleef  <ds@schleef.org>

	* gst/mpegstream/gstmpegparse.c: Use the GST_READ macro I meant
	  to in the previous checkin.  see #385192.  You can have your
	  cheese back now.

2006-12-12  David Schleef  <ds@schleef.org>

	* gst/mpegstream/gstmpegparse.c: Fix unaligned load that loads
	  from the dereferenced integer, not the pointer itself.  Fixes
	  #385192.

	  I'm takin ur cheese!

2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>

	Based on patch by: Roland Kay  <roland.kay at ox compsoc net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
	  For version 4 streams, read the extra codec data size from the
	  header instead of assuming it is always 16 (also read it from the
	  right position) (#384989). For version 4 and 5 streams, check that
	  the specified extra codec data size doesn't make us read beyond the
	  chunk boundary (#384996).

2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_sized_buf):
	  Cosmetic changes: fix misleading debug statement, update
	  comment, add cast.

2006-11-21  Wim Taymans  <wim@fluendo.com>

	Patch by: Sebastian Dröge  <slomo@circular-chaos.org>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
	(gst_mpeg2dec_reset), (gst_mpeg2dec_alloc_sized_buf),
	(gst_mpeg2dec_alloc_buffer), (init_dummybuf), (handle_slice):
	* ext/mpeg2dec/gstmpeg2dec.h:
	Align buffers to a 16 byte boundary so the altivec optimisations
	don't crash. Fixes #327350.

2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream):
	  The availability of extra codec data isn't something that
	  warrants debug messages at WARNING level (see #376958).

2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
	(gst_dvd_demux_class_init), (gst_dvd_demux_combine_flows),
	(gst_dvd_demux_send_subbuffer):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
	(gst_mpeg_demux_init_stream), (gst_mpeg_demux_parse_packet),
	(gst_mpeg_demux_parse_pes), (gst_mpeg_demux_combine_flows),
	(gst_mpeg_demux_send_subbuffer):
	* gst/mpegstream/gstmpegdemux.h:
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
	(gst_mpeg_parse_chain):
	  Fix flow value combination; this fixes playbin/totem locking up if
	  a VobSub file is specified as subtitle file (#334322). Flow value
	  combination should only happen once we are fairly sure we've got all
	  pads that are available for now. Since there isn't a well-specified
	  time when this is the case in MPEG, we'll just assume this is the
	  case once there has been a certain number of packets for each
	  stream we've found so far.

2006-11-15  Wim Taymans  <wim@fluendo.com>

	Patch by: Jan Arne Petersen <jpetersen at jpetersen dot org>

	* ext/mpeg2dec/gstmpeg2dec.c: (handle_sequence), (handle_slice):
	Simplify the framerate code and support more framerates. Fixes #361584.

2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Sebastian Dröge  <slomo@circular-chaos.org>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init):
	  Fix minor memleak when creating pads from static pad templates (#369627).

	* tests/check/Makefile.am:
	* tests/check/elements/.cvsignore:
	* tests/check/elements/mpeg2dec.c: (setup_mpeg2dec),
	(cleanup_mpeg2dec), (GST_START_TEST), (mpeg2dec_suite), (main):
	  Add unit tests for mpeg2dec (#369627).

2006-11-14  Wim Taymans  <wim@fluendo.com>

	Patch by: Mark Nauwelaerts <manauw at skynet be>

	* ext/lame/gstlame.c: (gst_lame_sink_event), (gst_lame_chain),
	(gst_lame_change_state):
	* ext/lame/gstlame.h:
	Make lame timestamp flushed eos buffer by some additional timestamp
	accounting. Fixes #374760.

2006-11-13  Michael Smith  <msmith@fluendo.com>

	* gst/mpegaudioparse/gstmpegaudioparse.c:
	(mp3_type_frame_length_from_header), (gst_mp3parse_reset),
	(gst_mp3parse_init), (gst_mp3parse_dispose),
	(gst_mp3parse_sink_event), (gst_mp3parse_chain), (head_check),
	(gst_mp3parse_change_state):
	* gst/mpegaudioparse/gstmpegaudioparse.h:
	  Make timestamp handling in mp3parse saner; now works for at least
	  simple cases.

2006-11-13  Michael Smith  <msmith@fluendo.com>

	* gst/mpegaudioparse/Makefile.am:
	* gst/mpegaudioparse/gstmpegaudioparse.c:
	(mp3_type_frame_length_from_header), (gst_mp3parse_class_init),
	(gst_mp3parse_reset), (gst_mp3parse_init), (gst_mp3parse_dispose),
	(gst_mp3parse_sink_event), (gst_mp3parse_chain), (head_check),
	(gst_mp3parse_change_state), (plugin_init):
	* gst/mpegaudioparse/gstmpegaudioparse.h:
	  Bring mp3parse into the 21st century.
	  Use its own debug category, use gstadapter, format nicely to 80
	  columns, and fix incorrect handling of 32 kHz and less files.

2006-11-03  Wim Taymans  <wim@fluendo.com>

	Patch by: Sebastian Droege <slomo at ubuntu dot com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_finalize),
	(gst_mpeg2dec_alloc_buffer), (init_dummybuf), (handle_slice):
	* ext/mpeg2dec/gstmpeg2dec.h:
	libmpeg2 requires its output buffers to start at a 16byte aligned
	address or the altivec optimizations will explode.

2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_read):
	  Use dsi_pack.dsi_gi.vobu_ea correctly, add some more debugging
	  information (fixes #340433).

2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Josep Torra Valles  <josep at fluendo com>

	* gst/iec958/ac3_padder.c: (ac3p_init):
	* gst/mpegstream/gstmpegparse.c:
	* gst/realmedia/rmdemux.c: (gst_rmdemux_parse__rmf),
	(gst_rmdemux_parse_prop), (gst_rmdemux_parse_mdpr),
	(gst_rmdemux_parse_indx), (gst_rmdemux_parse_indx_data),
	(gst_rmdemux_parse_data), (gst_rmdemux_parse_cont),
	(gst_rmdemux_parse_packet):
	  Misc. fixes for problems discovered by Forte (different return types
	  in function declaration and definition, pointer arithmetics with
	  void pointers). Fixes #362639.

2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_goto_title):
	  Don't announce audio or subtitle streams that aren't really present,
	  it makes dvddemux create pads that will never carry any data, which
	  is not good.

2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_set_property):
	  Round up not allowed bitrates to the next higher allowed one
	  (Closes: #361140).

2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>

	* docs/plugins/Makefile.am:
	* docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
	* docs/plugins/gst-plugins-ugly-plugins-sections.txt:
	* ext/lame/gstlame.c: (gst_lame_class_init):
	* ext/lame/gstlame.h:
	  Add docs for lame and lame to docs. Specify allowed bitrates
	  in the properties description (#361140). Canonicalise object
	  property names (ie. use hyphen instead of underscore).

	* docs/plugins/inspect/plugin-a52dec.xml:
	* docs/plugins/inspect/plugin-amrnb.xml:
	* docs/plugins/inspect/plugin-asf.xml:
	* docs/plugins/inspect/plugin-dvdlpcmdec.xml:
	* docs/plugins/inspect/plugin-dvdread.xml:
	* docs/plugins/inspect/plugin-dvdsub.xml:
	* docs/plugins/inspect/plugin-iec958.xml:
	* docs/plugins/inspect/plugin-lame.xml:
	* docs/plugins/inspect/plugin-mad.xml:
	* docs/plugins/inspect/plugin-mpeg2dec.xml:
	* docs/plugins/inspect/plugin-mpegaudioparse.xml:
	* docs/plugins/inspect/plugin-mpegstream.xml:
	* docs/plugins/inspect/plugin-siddec.xml:
	  Update version to CVS.

2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_sink_setcaps),
	(gst_lame_set_property), (gst_lame_get_property), (gst_lame_chain),
	(plugin_init):
	* po/POTFILES.in:
	  Add i18n magic to lame plugin. Throw decent error message when we
	  fail to setup the encoder (#361140, 361151); misc. minor clean-ups.

2006-10-10  Wim Taymans  <wim@fluendo.com>

	* gst/realmedia/rdtdepay.c: (gst_rdt_depay_base_init),
	(gst_rdt_depay_init), (gst_rdt_depay_setcaps),
	(gst_rdt_depay_chain), (gst_rdt_depay_change_state):
	Change caps to x-rdt, because it's not x-rtp.

	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_packet),
	(gst_rmdemux_plugin_init):
	Activate pad before adding to the element.
	Return the combined stream return values after pad_alloc.

2006-10-10  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (handle_slice):
	* ext/mpeg2dec/gstmpeg2dec.h:
	Add some debugging to timestamp handling.
	Make sure we don't convert invalid timestamps.

2006-10-09  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event),
	(gst_asf_demux_setup_pad), (gst_asf_demux_process_segment):
	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
	(gst_dvd_demux_get_subpicture_stream):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
	(gst_mpeg_demux_get_audio_stream),
	(gst_mpeg_demux_get_private_stream):
	  Active pads before adding them to the running element. Don't assert
	  on non-BYTE format newsegment events in asfdemux.

2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_goto_title),
	(gst_dvd_read_src_handle_seek_event):
	* ext/mad/gstid3tag.c: (gst_id3_tag_chain):
	* ext/mad/gstmad.c: (gst_mad_src_query), (gst_mad_chain):
	* ext/sidplay/gstsiddec.cc:
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_parse_data):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_loop),
	(gst_rmdemux_parse_packet):
	  Printf format fixes.

2006-10-03  Wim Taymans  <wim@fluendo.com>

	* gst/realmedia/Makefile.am:
	* gst/realmedia/rdtdepay.c: (gst_rdt_depay_base_init),
	(gst_rdt_depay_class_init), (gst_rdt_depay_init),
	(gst_rdt_depay_setcaps), (gst_rdt_depay_chain),
	(gst_rdt_depay_set_property), (gst_rdt_depay_get_property),
	(gst_rdt_depay_change_state), (gst_rdt_depay_plugin_init):
	* gst/realmedia/rdtdepay.h:
	Added RDT depayloader.

	* gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr),
	(gst_rmdemux_plugin_init), (plugin_init):
	Remove unused function.
	Added some more mime-types.

2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (update_timestamps):
	  If an incoming timestamp is within one sample of our current
	  timestamp, then keep it. This prevents imprecision in the
	  PTS (which only has 90khz granularity) from affecting our stream.

2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_handle_src_query):
	  Reflow code so that compiler doesn't complain about possible use
	  of uninitialised variable any longer; but just in case, initialise
	  it anyway; also take object ref in query function and do peer pad
	  stuff in a more thread-safe way.

2006-09-27  Wim Taymans  <wim@fluendo.com>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_do_convert_query):
	Init a variable to make compilers happy.

2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Martin Zlomek <martin dot zlomek at itonis dot tv>

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_reset),
	(gst_dvd_demux_sync_stream_to_time):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer),
	(gst_mpeg_demux_synchronise_pads),
	(gst_mpeg_demux_sync_stream_to_time):
	  Send newsegment updates for sparse streams (#350778).
	
2006-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_do_convert_query):
	  fix compile warning

2006-09-20  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	As another attempt, synaesthesia can be enabled by passing
	--with-plugins="synaesthesia" to configure

2006-09-20  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	   Don't build synaesthesia by default, until someone confirms that it
	   is okay (filed as #356882)

2006-09-18  Stefan Kost  <ensonic@users.sf.net>

	* configure.ac:
	* gst/synaesthesia/Makefile.am:
	* gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_init),
	(gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_getcaps),
	(gst_synaesthesia_src_setcaps), (gst_synaesthesia_chain),
	(gst_synaesthesia_change_state), (plugin_init):
	   Port synaesthesia.

2006-09-17  Stefan Kost  <ensonic@users.sf.net>

	* ext/mad/gstid3tag.c:
	* gst/mpegstream/gstrfc2250enc.h:
	* gst/synaesthesia/gstsynaesthesia.c:
	  More G_OBJECT macro fixing.

2006-09-15  Wim Taymans  <wim@fluendo.com>

	Patch by: Yves Lefebvre <ivanohe at abacom dot com>

	* ext/mpeg2dec/gstmpeg2dec.c: (init_dummybuf):
	Fix initialisation dummy buffer, the offsets are relative to the start
	of the buffers. Fixes #356004.

2006-09-09  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_read):
	  Add convert query (needed for later when we just operate in time
	  format and let the base source class handle all the seeking stuff).

2006-09-07  Stefan Kost  <ensonic@users.sf.net>

	* gst/asfdemux/gstasfdemux.c:
	(gst_asf_demux_get_gst_tag_from_tag_name),
	(gst_asf_demux_process_ext_content_desc):
	  Erm, lets properly fix it. The only non-text tag that we support is
	  the track-number and that is an UINT. asfdemux was returning a GValue
	  initialized as INT. Further the Track and not the TrackNumber tag
	  (the latter is a string too).

2006-09-07  Stefan Kost  <ensonic@users.sf.net>

	* gst/asfdemux/gstasfdemux.c:
	(gst_asf_demux_get_gst_tag_from_tag_name),
	(gst_asf_demux_process_ext_content_desc):
	  Skip tags that are unknown (was producing an uninialized GValue).	  

2006-09-01  Michael Smith  <msmith@fluendo.com>

	Patch by: Michal Benes <michal.benes@itonis.tv>:

	* ext/a52dec/gsta52dec.c: (gst_a52dec_mode_get_type),
	(gst_a52dec_class_init), (gst_a52dec_init), (gst_a52dec_channels),
	(gst_a52dec_handle_frame), (gst_a52dec_change_state),
	(gst_a52dec_set_property), (gst_a52dec_get_property):
	* ext/a52dec/gsta52dec.h:
	  Add two things to a52dec: configure the exact output format for ac3
	  decoding through properties, if desired.
	  By default, configure an output format preferred by downstream. Now
	  that audioconvert lists caps by preference, this means that a52dec
	  can do downmixing (iff required) rather than audioconvert, so it can
	  use the ac3 downmix levels from the bitstream.

2006-08-31  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/lame/Makefile.am:
	* ext/mpeg2dec/Makefile.am:
	* gst/dvdlpcmdec/Makefile.am:
	* gst/dvdsub/Makefile.am:
	* gst/mpegaudioparse/Makefile.am:
	  Add missing GST_LIBS to the link flags

2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	  Up requirements to core 0.10.6 for gst_event_new_new_segment_full().

2006-08-27  Stefan Kost  <ensonic@users.sf.net>

	* gst/mpegstream/gstmpegpacketize.c: (gst_mpeg_packetize_new):
	  Fix build for debug disabled

2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
	(gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
	  Use static pad templates with ANY caps for the source pads for
	  simplicity and to avoid warnings when creating pads for unhandled
	  codec IDs (#351795).

2006-08-16  Wim Taymans  <wim@fluendo.com>

	Patch by: Michal Benes <michal dot benes at itonis dot tv>

	* ext/mad/gstmad.c: (gst_mad_chain):
	Fix timestamping in mad by only activating a new timestamp when the
	previous frame has been decoded. Fixes #350723.
	Also clean up some of the non fatal warnings when the input buffer is
	too small to decode a header.

=== release 0.10.4 ===

2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>

	* configure.ac:
	  releasing 0.10.4, "Metal Molly"

2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	Patch by: Wim Taymans <wim at fluendo dot com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_sink_event):
	  Instead of forwarding the event in the wrong format, unref it and set
	  a boolean that we still need to send it in the streaming thread.
	  Fixes #350554

2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	Patch by: Edward Hervey <edward at fluendo dot com>

	* ext/dvdread/dvdreadsrc.c: (plugin_init):
	Put debug category initialization before use of GST_DEBUG, in order
	to remove a fatal warning.  Fixes #350895

2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/dvdsub/gstdvdsubdec.c: (plugin_init):
	  Set rank to NONE for the time being until we make playbin handle
	  subtitle pictures again (dvdsubdec seems to be a bit shaky at
	  times when seeking, so it's probably better if it doesn't get
	  autoplugged for the time being).

2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_mdpr):
	  Handle audio streams with stream_version 3 properly; warn about 
	  unknown stream versions; handle unknown fourccs a tad more
	  gracefully (setting bogus caps). Also, use GST_FOURCC_ARGS
	  with GST_FOURCC_FORMAT.

2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_goto_title):
	  Error out properly if this is an interactive DVD (fixes #345694).

2006-08-07  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_chain):
	  When the first_access is 1 or 0, we should copy the timestamp from 
	  the incoming buffer if there is one.

2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
	(gst_a52dec_reneg), (gst_a52dec_handle_frame), (gst_a52dec_chain):
	  Use GST_ELEMENT_ERROR for error reporting; post errors in some
	  more places; remove superfluous newlines from debug statements.

2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Frédéric Riss  <frederic.riss at gmail com>

	* gst/dvdsub/gstdvdsubdec.c: (gst_send_subtitle_frame):
	  Don't set negative durations on outgoing buffers (#350044),
	  which happens when you use macros that got changed during
	  the last unstable cycle because they were thought not to
	  be used anywhere.
	  
2006-08-06  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_stop),
	(gst_dvd_read_src_goto_chapter),
	(gst_dvd_read_src_get_chapter_starts),
	(gst_dvd_read_src_goto_title), (gst_dvd_read_src_get_next_cell),
	(gst_dvd_read_src_get_time_for_sector),
	(gst_dvd_read_src_get_sector_from_time), (gst_dvd_read_src_read),
	(gst_dvd_read_src_handle_seek_event), (gst_dvd_read_src_do_seek),
	(gst_dvd_read_src_goto_sector):
	* ext/dvdread/dvdreadsrc.h:
	  Add basic support for time-based seeking; set timestamps on
	  outgoing buffers if we have them; create table with
	  chapter to time mapping when opening a title; rename
	  gst_dvd_read_src_get_next_cell_for() to _get_next_cell() and
	  make it take an explicit pgc argument; fix up some debugging
	  messages so that title/chapter numbers are printed as starting
	  from 1 for easier readability.

2006-08-04  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/Makefile.am:
	* gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr),
	(gst_rmdemux_parse_cont):
	* gst/realmedia/rmutils.c: (gst_rm_utils_read_string8),
	(gst_rm_utils_read_string16), (gst_rm_utils_read_tags):
	* gst/realmedia/rmutils.h:
	  Factor out some code into rmutils.[ch]; when reading
	  strings, don't read beyond the available data; read
	  metadata strings correctly (string length is 16 bits
	  here, not just 8).
	  
2006-07-31  Jan Schmidt  <thaytan@mad.scientist.com>

	* Makefile.am:
	* configure.ac:
	* gst/asfdemux/gstasfdemux.c:
	Fix dist by including gst-libs/

2006-07-29  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (plugin_init):
	* po/POTFILES.in:
	  Make custom error messages translatable.

	* gst/asfdemux/gstasf.c: (plugin_init):
	  Remove setlocale() call, doesn't seem to be needed or recommended for
	  plugins, at least not according to gstreamer/docs/random/i18n.

2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/Makefile.am:
	* gst/asfdemux/asfheaders.c:
	* gst/asfdemux/asfheaders.h:
	* gst/asfdemux/gstasf.c: (plugin_init):
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_object):
	  Error out when the stream is encrypted (rather than feeding
	  garbage to the decoders). Fixes #349025.

2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* po/POTFILES.in:
	  Add/enable autofoo magic for translations.

2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_reset),
	(gst_rmdemux_change_state), (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_cont), (gst_rmdemux_descramble_cook_audio),
	(gst_rmdemux_handle_scrambled_packet), (gst_rmdemux_parse_packet):
	  Don't leak streams, strings or caps. Get rid of unnecessary
	  getcaps() function.

2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
	(gst_rmdemux_init), (gst_rmdemux_chain), (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_data),
	(gst_rmdemux_stream_clear_cached_subpackets),
	(gst_rmdemux_descramble_cook_audio),
	(gst_rmdemux_descramble_dnet_audio),
	(gst_rmdemux_handle_scrambled_packet), (gst_rmdemux_parse_packet):
	  Descramble cook audio streams before sending them to the
	  decoder. Fixes #347292.
	  Also miscellaneous clean-ups and log-level changes.

2006-07-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* ext/lame/gstlame.c: (gst_lame_setup):
	Fix lame putting lots of 0's at start of mp3.  Fixes bug #348786.

2006-07-21  Wim Taymans  <wim@fluendo.com>

	* ext/sidplay/gstsiddec.cc:
	* ext/sidplay/gstsiddec.h:
	Remove old metadata thing.

2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c:
	(gst_asf_demux_get_ext_stream_props_for_stream),
	(gst_asf_demux_add_audio_stream), (gst_asf_demux_change_state):
	  Find language codes for audio streams if they are available.

2006-07-14  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/asfheaders.h:
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_obj_stream),
	(gst_asf_demux_process_stream),
	(gst_asf_demux_process_language_list),
	(gst_asf_demux_process_ext_stream_props),
	(gst_asf_demux_process_queued_extended_stream_objects),
	(gst_asf_demux_process_object), (gst_asf_demux_change_state):
	* gst/asfdemux/gstasfdemux.h:
	  Parse extended stream properties objects and stream objects
	  hidden inside them (but delay creation of the appropriate
	  pads until after all the 'normal' stream objects have been
	  dealt with) (#343763). Also parse language list object.

2006-07-13  Wim Taymans  <wim@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
	(gst_rmdemux_finalize), (gst_rmdemux_src_event),
	(find_seek_offset_time), (gst_rmdemux_perform_seek),
	(gst_rmdemux_src_query), (gst_rmdemux_change_state),
	(gst_rmdemux_loop), (gst_rmdemux_chain), (gst_rmdemux_send_event),
	(gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr),
	(gst_rmdemux_combine_flows), (gst_rmdemux_parse_packet):
	* gst/realmedia/rmdemux.h:
	Cleanups, use GstSegment for seeking.
	Fix error handling.
	Combine flow return from all streams.

2006-07-10  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer), (handle_slice):
	Fix refcounting when cropping. Fixes #341677.

2006-07-09  Wim Taymans  <wim@fluendo.com>

	Patch by: Grzegorz Lukasik <hauserx at gmail dot com>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_video_stream),
	(gst_asf_demux_process_segment):
	Fix typo. Closes #347029.

2006-07-08  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
	  Skip chunks for unknown streams properly. Fixes broken sound
	  and/or video for files that have additional streams that
	  we don't recognise yet (e.g. if they are embedded in extended
	  stream properties). Partly fixes #343763.

2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/asfheaders.c:
	* gst/asfdemux/asfheaders.h:
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_identify_guid),
	(gst_asf_demux_process_header), (gst_asf_demux_push_obj),
	(gst_asf_demux_pop_obj), (gst_asf_demux_process_object),
	(gst_asf_demux_change_state):
	* gst/asfdemux/gstasfdemux.h:
	  Add some more GUIDs and make debug log more readable
	  and easier to follow when parsing the headers.

2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_init),
	(gst_dvd_read_src_is_seekable), (gst_dvd_read_src_class_init),
	(gst_dvd_read_src_stop), (gst_dvd_read_src_goto_title),
	(gst_dvd_read_src_create), (gst_dvd_read_src_handle_seek_event),
	(gst_dvd_read_src_do_seek), (gst_dvd_read_src_src_event):
	* ext/dvdread/dvdreadsrc.h:
	  Rewrite seeking code and make seeking in DVDs work (#337834).

2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>

	* autogen.sh:
	  Check for automake-1.9 as well.

2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_is_nav_pack):
	  Make check stronger.

2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_setup_pad),
	(gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
	(gst_asf_demux_push_buffer):
	* gst/asfdemux/gstasfdemux.h:
	  Handle unknown codec IDs/fourccs properly (#345879); send tag
	  events after newsegment event; fix use of GST_FOURCC_FORMAT
	  macro.

2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/a52dec/gsta52dec.c: (plugin_init):
	  Call the channel positions get_type() method in plugin_init 
	  to ensure that it isn't simultaneously called later from 
	  multiple threads.

2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegpacketize.c:
	(gst_mpeg_packetize_flush_cache), (gst_mpeg_packetize_put):
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_chain):
	  Also flush packetizer cache when we get a buffer that has the
	  DISCONT flag set; update current byte position from buffer
	  offset after a flush.

2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegpacketize.c: (gst_mpeg_packetize_new),
	(gst_mpeg_packetize_flush_cache), (gst_mpeg_packetize_destroy),
	(gst_mpeg_packetize_read):
	* gst/mpegstream/gstmpegpacketize.h:
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
	(gst_mpeg_parse_change_state):
	  Flush packetizer cache when we get a FLUSH_STOP event;
	  remove unused source pad member from packetizer; add debug
	  category for packetizer.

2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (plugin_init):
	  Treat dual-mono as stereo. It should really be output on 2 separate
	  pads, but isn't for now.

2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
	  Assume 4:3 DAR rather than 4:3 PAR (#345184).

2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
	  Assume pixel-aspect-ratio of 4:3 if libmpeg2dec doesn't give us
	  any PAR whatsoever (rather than using 0/0, which will lead to
	  an abort later on). Fixes #345184.

2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Michael Dominic K.  < mdk at mdk org pl>

	* ext/mad/gstmad.c: (gst_mad_chain):
	  Send newsegment event before calling
	  gst_pad_alloc_buffer_and_set_caps(), makes mad behave better
	  in connection with pad blocking (#342594). While we're at it,
	  do some minor clean-ups.

2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	  Fix --disable-external (can't set conditionals conditionally,
	  #343602).

2006-06-15  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/a52dec/Makefile.am:
	  ... and then he said "When you go and fix the build you
	  better make sure you have some spare backslashes in your
	  pocket".

2006-06-13  Wim Taymans  <wim@fluendo.com>

	* ext/sidplay/gstsiddec.cc:
	Fix copyright, email addresses and descriptions.
	Use saner defaults for arguments. Fixes #344667.
	constify some stuff.
	Fix memleaks.
	Add tags.
	Fix negotiation to do mono/44100 by default.
	Post error messages.
	Use _scale_int where possible.

2006-06-12  Wim Taymans  <wim@fluendo.com>

	* ext/dvdnav/.cvsignore:
	More ignore

2006-06-12  Wim Taymans  <wim@fluendo.com>

	* tests/check/elements/amrnbenc.c: (push_data):
	Init memory before feeding it to the encoder to make
	the valgrind test succeed.

2006-06-12  Edward Hervey  <edward@fluendo.com>

	* gst/asfdemux/.cvsignore:
	More ignore

2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>

	* .cvsignore:
	  Ignore files generated by 'make dist'.

2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* autogen.sh:
	* configure.ac:
	* ext/a52dec/Makefile.am:
	* ext/dvdnav/Makefile.am:
	* ext/dvdread/Makefile.am:
	* ext/lame/Makefile.am:
	* ext/mad/Makefile.am:
	* ext/mpeg2dec/Makefile.am:
	* ext/sidplay/Makefile.am:
	  update build files

2006-06-07  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_finalize),
	(gst_mpeg2dec_reset), (clear_buffers), (handle_picture),
	(gst_mpeg2dec_sink_convert), (gst_mpeg2dec_src_convert),
	(gst_mpeg2dec_change_state):
	* ext/mpeg2dec/gstmpeg2dec.h:
	Simplify and don't leak our buffer pool.
	Use _scale_int.
	Remove unfixed bug number from previous ChangeLog entry.

2006-06-07  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
	(gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
	(gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
	(gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
	(gst_mpeg2dec_negotiate_format), (init_dummybuf),
	(handle_sequence), (handle_picture), (handle_slice),
	(gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
	(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
	* ext/mpeg2dec/gstmpeg2dec.h:
	Fix padtemplate as we can now do fractional framerates.
	Small cleanups.
	Use GstSegment.
	Add simple frame dropping QoS.
	Precalc buffer output sizes and UV offsets.
	Always give libmpeg2 a valid fbuf when it wants one.
	don't trust libmpeg to discard our buffers but manage it
	ourselves.
	Fixes #343627, #335288

2006-06-05  Sebastien Moutte  <sebastien@moutte.net>

	* win32/MANIFEST:
	Add a manifest for futures ugly win32 releases.
	* gst/iec958/ac3iec.c: (ac3iec_chain_raw):
	Move bufcaps declaration at the beginning of the instructions 
	block.
	
2006-06-02  Stefan Kost  <ensonic@users.sf.net>

	* ext/a52dec/gsta52dec.h:
	* ext/amrnb/amrnbdec.h:
	* ext/amrnb/amrnbenc.h:
	* ext/amrnb/amrnbparse.h:
	* ext/mpeg2dec/gstmpeg2dec.h:
	* ext/sidplay/gstsiddec.h:
	* gst/ac3parse/gstac3parse.h:
	* gst/asfdemux/gstasfdemux.h:
	* gst/asfdemux/gstasfmux.h:
	* gst/dvdlpcmdec/gstdvdlpcmdec.h:
	* gst/iec958/ac3iec.h:
	* gst/mpegaudioparse/gstmpegaudioparse.h:
	* gst/mpegstream/gstdvddemux.h:
	* gst/mpegstream/gstmpegclock.h:
	* gst/mpegstream/gstmpegdemux.h:
	* gst/mpegstream/gstmpegparse.h:
	Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass

2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>

	* README:
	  Replace current README (containing the release notes from
	  some 0.9.x version) with a proper README taken from the core.

2006-05-24  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbdec.c: (gst_amrnbdec_event), (gst_amrnbdec_chain):
	* ext/amrnb/amrnbparse.c: (gst_amrnbparse_init),
	(gst_amrnbparse_sink_event), (gst_amrnbparse_chain),
	(gst_amrnbparse_sink_activate), (gst_amrnbparse_state_change):
	* ext/amrnb/amrnbparse.h:
	Sortof first quick cleanup of all this mess... 
	Don't crap out on empty and invalid FTs but treat them as
	empty packets, the decoder handles them fine.
	Fixes #342222.

2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasf.c: (plugin_init):
	  Call gst_riff_init() so the riff debug category gets set up
	  before it is being used.

2006-05-19  Michael Smith  <msmith@fluendo.com>

	* gst/iec958/ac3_padder.c: (ac3p_parse):
	* gst/iec958/ac3_padder.h:
	* gst/iec958/ac3iec.c: (ac3iec_init), (ac3iec_set_property),
	(ac3iec_chain_raw), (ac3iec_change_state):
	* gst/iec958/ac3iec.h:
	  Write rate into the caps, for the allowed ac3 rates. Some minor
	  cleanups.

2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: James "Doc" Livingston  <doclivingston gmail com>

	* ext/mad/gstid3tag.c: (gst_id3_tag_get_tag_to_render):
	  Do tag merging correctly (#339918). Output taglists
	  properly in debug statements too while we're at it.

2006-05-11  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_chain):
	  Add more debug

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
	(gst_dvdlpcmdec_init), (update_timestamps),
	(gst_dvdlpcmdec_chain_dvd), (gst_dvdlpcmdec_chain_raw),
	(dvdlpcmdec_sink_event):
	* gst/dvdlpcmdec/gstdvdlpcmdec.h:
	  If we have a first_access offset but no current timestamp (might
	  happen after a seek), then calculate a start time for the first
	  portion so that it will align with the timestamp given for the
	  first_access portion.

	  If a new-segment arrives with format time, store the start
	  time as a failsafe timestamp in case we never get any further
	  timestamp info (unlikely)
	
	  Mask out the 'frame number' section of the incoming header so
	  that we don't consider it to be changing on every buffer and
	  reset the caps constantly.

	  Use gst_util_uint64_scale for duration calculation

2006-05-11  Michael Smith  <msmith@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
	  Fix timestamping for cases where the first_access parameter is 4.
	  Ensure we don't overrun buffers in other cases.

2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_string):
	  Fix silly bug when reading metadata (#341254).

2006-05-08  Edward Hervey  <edward@fluendo.com>

	* autogen.sh: (CONFIGURE_DEF_OPT): 
	libtoolize on Darwin/MacOSX is called glibtoolize

2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_get_type),
	(gst_lame_release_memory), (gst_lame_init), (gst_lame_sink_event),
	(gst_lame_setup), (gst_lame_change_state):
	* ext/lame/gstlame.h:
	  Remove tag writing from lame (which was completely broken
	  anyway, #329184). Leaving GstTagSetter interface around for
	  now, albeit non-functional. Should be removed completely
	  in 0.11. Use the 'id3v2mux' plugin from -good for writing
	  tags.

2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>

	* ext/dvdread/dvdreadsrc.c:
	* gst/asfdemux/gstasfdemux.c:
	Add semicolons after GST_BOILERPLATE[_FULL] so that
	indent doesn't mess up following lines.
	
2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Andres Salomon  <dilinger at debian org>

	* ext/lame/gstlame.c: (gst_lame_sink_event):
	  Fix typo (comma vs. semicolon) (#340710).

2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Lutz Müller <lutz at topfrose de>

	* ext/mad/gstmad.c: (gst_mad_init), (gst_mad_src_query):
	  Make mad the second element to support the highly useful
	  FORMATS query (#340594)

2006-05-02  Edward Hervey  <edward@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_sink_convert),
	(gst_mpeg2dec_src_query):
	Remember the query duration format before passing it upstream since it
	could have been modified.
	Add GST_WARNING_OBJECT in sink convert function to detail why the
	conversion didn't work.

2006-04-26  Stefan Kost  <ensonic@users.sf.net>

	* ext/mad/gstid3tag.c:
	* ext/mad/gstmad.c:
	* gst/ac3parse/gstac3parse.c:
	* gst/dvdlpcmdec/gstdvdlpcmdec.c:
	* gst/synaesthesia/gstsynaesthesia.c:
	  Define GstElementDetails as const and also static (when defined as
	  global)

2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_push_titlelang_event):
	  Fix name of custom event (use same as dvdreadsrc).

	* gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_chain),
	(gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event):
	  Fix event parsing (the event name is in the structure, not the
	  name of the structure itself); also fix indentation after
	  boilerplate macro.

2006-04-23  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstid3tag.c: (plugin_init):
	  Change debug category to 'id3mux'.

2006-04-22  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Alexander Lancaster  <alexl at users sourceforge net>

	* ext/mad/gstid3tag.c: (gst_id3_tag_get_caps), (gst_id3_tag_init),
	(gst_id3_tag_sink_event), (gst_id3_tag_src_link),
	(gst_id3_tag_chain):
	  When acting as a muxer, set caps on outgoing buffers and set caps
	  on source pad (fixes #323658). Remove unused application/x-gst-tags
	  cruft from the 0.6 days.

2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_convert_sink), (gst_mad_convert_src),
	(gst_mad_src_query), (gst_mad_chain):
	  .. and DEFAULT queries should work too. Use magic gst util scale
	  functions in some places.

2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_src_query):
	  Fix duration query in BYTES format (#336824).

2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Ed Catmur  <ed at catmur dot co dot uk>

	* ext/lame/gstlame.c: (gst_lame_sink_event):
	  Don't crash if we get an EOS event before the encoder
	  has been set up (#339287).

2006-04-21  Wim Taymans  <wim@fluendo.com>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_start),
	(gst_dvd_read_src_goto_title), (gst_dvd_read_src_read),
	(gst_dvd_read_src_create), (gst_dvd_read_src_goto_sector):
	Move errors out of the normal code flow.
	Don't send eos, basesrc will do that for us when needed.

2006-04-21  Wim Taymans  <wim@fluendo.com>

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_change_state):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_change_state):
	* gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_change_state):
	Do state changes correctly

2006-04-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_sized_buf),
	(gst_mpeg2dec_alloc_buffer):
	  Can't use gst_pad_alloc_buffer*() when we are going to crop
	  the image before sending it out. Downstream basetransform-based
	  elements will complain about the wrong unit size otherwise
	  (when not operating in passthrough-mode at least).
	  Const-ify some static variables and do some minor clean-ups.
	  Use I420 macros for size/offsets (not really necessary in this
	  particular context, but this kind of code gets copy'n'pasted).

2006-04-13  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegpacketize.c: (gst_mpeg_packetize_put),
	(read_cache):
	* gst/mpegstream/gstmpegpacketize.h:
	  g_malloc() can't fail, we don't need to handle this. Same for
	  gst_buffer_new_and_alloc().

	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_chain):
	  klass->send_buffer() should have the same semantics as
	  gst_pad_push(), ie. ownership of the buffer is transfered,
	  so we never have to unref the buffer no matter what the flow
	  return value was.

2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* common/check.mak:
	  allow for specifying more than one suppressions file in SUPPRESSIONS
	* Makefile.am:
	* tests/Makefile.am:
	* tests/check/.cvsignore:
	* tests/check/Makefile.am:
	* tests/check/elements/.cvsignore:
	* configure.ac:
	  add tests/check
	* tests/check/gst-plugins-ugly.supp:
	  add suppressions for libs used by -ugly
	* tests/check/elements/amrnbenc.c: (buffer_new), (buffer_unref),
	(setup_amrnbenc), (cleanup_amrnbenc), (push_data),
	(GST_START_TEST), (amrnbenc_suite), (main):
	  add a simple test for encoding amr
	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_init):
	  fix pad template leaks

2006-04-10  Michael Smith  <msmith@fluendo.com>

	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_chain):
	  Plug big leak in AMR encoder.

2006-04-09  Sebastien Moutte  <sebastien@moutte.net>

	* ext/mad/gstmad.c: (index_seek):
	  move GstIndexEntry *entry variable declaration before 
	  the first instruction
	* ext/mad/gstmad.c: 
	  remove debug macros with variable number of parameter by using 
	  GST_DEBUG for WIN32
	* gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_parse_subpic):
	  use gst_guint64_to_gdouble for conversions
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_sync_stream_to_time):
	  replace __FUNCTION__ which is not supported by MSVC by the current
	  function name
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset):
	  remove LL suffix by using G_GINT64_CONSTANT
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead),
	  (gst_mpeg_parse_get_rate):
	  use gst_guint64_to_gdouble for conversions
	* gst/mpegstream/gstmpegparse.h:
	  remove LL suffix by using G_GINT64_CONSTANT
	* win32/vs6:
	  add project files for tagac3parse, asfdemux, dvdlpcmdec, dvdsub,
	  iec958, lame, mad, mpegaudioparse, mpegstream, realmedia, synaesthesia
	
2006-04-08  Stefan Kost  <ensonic@users.sf.net>

	* ext/amrnb/amrnbdec.c: (gst_amrnbdec_class_init):
	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_class_init):
	* ext/amrnb/amrnbparse.c: (gst_amrnbparse_class_init):
	* ext/mad/gstmad.c: (gst_mad_class_init):
	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_class_init):
	* gst/ac3parse/gstac3parse.c: (gst_ac3parse_class_init):
	* gst/asfdemux/gstasfmux.c: (gst_asfmux_class_init):
	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_class_init):
	* gst/iec958/ac3iec.c: (ac3iec_class_init):
	* gst/mpegaudioparse/gstmpegaudioparse.c:
	(gst_mp3parse_class_init):
	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init):
	* gst/mpegstream/gstmpegclock.c: (gst_mpeg_clock_class_init):
	* gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_class_init):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_class_init):
	* gst/synaesthesia/gstsynaesthesia.c:
	(gst_synaesthesia_class_init):
	Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)

2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event),
	(gst_asf_demux_push_buffer):
	  Send newsegment event only once per pad, fixes #336550.

2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
	* docs/plugins/inspect/plugin-siddec.xml:
	  add siddec
	* ext/dvdnav/dvdnavsrc.c:
	  doc fixes

2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  rework similarly to other modules
	* ext/a52dec/gsta52dec.c:
	* ext/amrnb/amrnb.c:
	* ext/dvdnav/dvdnavsrc.c:
	* ext/dvdread/dvdreadsrc.c:
	* ext/lame/gstlame.c:
	* ext/mad/gstid3tag.c:
	* ext/mpeg2dec/gstmpeg2dec.c:
	* ext/sidplay/gstsiddec.cc:
	* gst/asfdemux/gstasf.c:
	* gst/dvdlpcmdec/gstdvdlpcmdec.c:
	* gst/dvdsub/gstdvdsubdec.c:
	* gst/iec958/ac3iec.c:
	* gst/mpegaudioparse/gstmpegaudioparse.c:
	* gst/mpegstream/gstmpegstream.c:
	* gst/realmedia/rmdemux.c: (plugin_init):
	  use the correct defines

2006-03-31  Thomas Vander Stichele <thomas at apestaart dot org>

	* configure.ac:
	  back to HEAD

=== release 0.10.3 ===

2006-03-31  Thomas Vander Stichele <thomas at apestaart dot org>

	* configure.ac:
	  releasing 0.10.3, "Late Plane"

2006-03-29  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_handle_src_event):
	  Don't unref event unconditionally after giving away ownership
	  (gst_pad_push_event(), gst_pad_send_event() and
	  gst_pad_event_default() take ownership of the event
	  passed to them). Fixes warnings/crashes caused by
	  navigation events.

2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
	  Don't ref NULL caps (private streams have NULL caps) (#336387);
	  also, no need to set caps on the same buffer twice.

2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event),
	(gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_get_audio_stream),
	(gst_dvd_demux_get_subpicture_stream):
	* gst/mpegstream/gstmpegdemux.c:
	(gst_mpeg_demux_sync_stream_to_time):
	  Don't leak element and pad names in error messages, use
	  GST_DEBUG_PAD_NAME instead. Add some more debug code.

2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_init),
	(gst_dvd_read_src_goto_title), (gst_dvd_read_src_read):
	  Name the structure in the custom event with the
	  language codes for the audio and subtitle streams
	  actually like dvddemux expects it to be named.
	  Set caps on source pad and outgoing buffers.

2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_init), (gst_lame_set_property),
	(gst_lame_get_property), (gst_lame_setup):
	* ext/lame/gstlame.h:
	  Make xingheader property non-functional, it's broken anyway
	  after all (use xingmux instead).

2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_sink_event):
	  On EOS, flush encoder and send remaining data. Fix
	  return value handling in sink event function.

2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Jürg Billeter  <j at bitron dot ch>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_set_property):
	  Fix wrong check for started flag when setting the 'device' property.
	  We want to allow it when the source is NOT started yet and ignore it
	  when the source is running.

2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_setup_pad),
	(gst_asf_demux_process_chunk):
	* gst/asfdemux/gstasfdemux.h:
	  Subtract first timestamp from timestamps, so that
	  stream starts from 0; makes live streams that don't
	  start at 0 work again (fixes #317310, #336097).

2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Christian Kirbach

	* configure.ac:
	  Remove CXX tag from AS_LIBTOOL_TAGS, just like we did for
	  -good. Fixes build on some systems (#331838).

2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_cont):
	  Extract more tags and also post codec name tag on the
	  bus so this shows up in totem and nautilus.

2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
	(gst_rmdemux_fill_audio_packet), (gst_rmdemux_parse_packet):
	  Extra data usually goes into the caps as 'codec_data', not
	  as first buffer into the stream.
	  Need to byte swap AC3 content in realmedia files for some
	  reason (fixes #331588).

2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_init),
	(gst_rmdemux_validate_offset), (gst_rmdemux_loop),
	(gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_packet):
	  When operating in pull mode, post an error message on the
	  bus when all source pads are unlinked or some other fatal
	  error occured (#323023). Regrade some recurring debug messages
	  to LOG level. Convert c++-style comments into C-style ones.

2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_perform_seek),
	(gst_rmdemux_loop), (gst_rmdemux_chain), (gst_rmdemux_send_event),
	(gst_rmdemux_all_source_pads_unlinked),
	(gst_rmdemux_at_least_one_stream_flowok), (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_packet):
	* gst/realmedia/rmdemux.h:
	  Handle unlinked source pads properly and stop if all source pads
	  are unlinked (#323023).

2006-03-23  Wim Taymans  <wim@fluendo.com>

	Patch by: Michal Benes <michal dot benes at xeris dot cz>

	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_init),
	(gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes),
	(gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_reset):
	* gst/mpegstream/gstmpegdemux.h:
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
	Timestamps in mpeg stream are 32-bit numbers. Therefore, with a
	clock_freq of 90kHz this timestamp overflows every ~13 hours. This 
	situation really happens when grabbing DVB streams. Current 
	mpegdemuxer can not handle this situation correctly and it 
	restarts counting gstreamer timestamps from zero.
	Fixes #326598.

2006-03-15  Michael Smith  <msmith@fluendo.com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_sink_event),
	(gst_a52dec_chain_raw), (gst_a52dec_change_state):
	* ext/a52dec/gsta52dec.h:
	  Fix #334550: failure to play raw AC3 files due to segment problems.

2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Christophe Fergeau  <teuf gnome org>

	* ext/lame/gstlame.c: (gst_lame_release_memory),
	(gst_lame_finalize), (gst_lame_class_init),
	(gst_lame_sink_setcaps), (gst_lame_init), (gst_lame_sink_event),
	(gst_lame_change_state):
	  Fix some memory leaks (#333345), use GST_DEBUG_FUNCPTR more often.

2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_convert_sink), (gst_mad_update_info),
	(gst_mad_sink_event), (gst_mad_change_state):
	  Include AUDIO_CODEC tag with tags posted if input is not
	  framed (#334258). Use _scale() util functions in more places.

2006-03-12  Christophe Fergeau  <teuf@gnome.org>

	Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_class_init): mark the xing-header
	property as BROKEN (see
	http://bugzilla.gnome.org/show_bug.cgi?id=330317#c19 for an
	explanation why it's broken).

2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Alex Lancaster
	* ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
	  Add support for writing the GST_TAG_ALBUM_VOLUME_NUMBER
	  tag (#333683)
	  
2006-03-02  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbdec.c: (gst_amrnbdec_init),
	(gst_amrnbdec_setcaps), (gst_amrnbdec_chain),
	(gst_amrnbdec_state_change):
	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_init),
	(gst_amrnbenc_setcaps), (gst_amrnbenc_chain),
	(gst_amrnbenc_state_change):
	* ext/amrnb/amrnbenc.h:
	* ext/amrnb/amrnbparse.c: (gst_amrnbparse_init),
	(gst_amrnbparse_query):
	Further fancyfication.
	Use _take to get writable data from the adapter.
	Precalc packet duration.
	Handle disconts.
	Forward _push to upstream.
	Post error messages when something goes wrong.
	Remove old code in amrnbparse.
	Don't ignore query results from upstream.

2006-03-02  Michael Smith  <msmith@fluendo.com>

	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_chain):
	  The AMR encoder writes into the audio buffers it processes, so
	  use gst_buffer_make_writable() on buffers we might (they go through
	  an adapter, so there can be copying going on later anyway) be
	  encoding.

2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Jens Granseuer

	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_pad_added),
	(gst_mpeg_parse_handle_src_query):
	  Declare variables at the beginning of a block and make
	  gcc-2.9x happy (fixes #328957)

2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>

	Patch by: Fabrizio Gennari

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
	  Read packet size, sequence and padsize in right order again
	  (fixes #332796)

2006-02-28  Edward Hervey  <edward@fluendo.com>

	* gst/iec958/ac3iec.c:
	Set a proper klass (Codec/Muxer/Audio) for the ElementDetails.

2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>

	* configure.ac:
	  Make the id3tag and mad checks check for both a header and the
	  appropriate library if the pkg-config is missing. (Closes #331842)
	  Split the id3tag and mad checks into 2 pieces. Sometime soon I might
	  do the same for the plugins themselves.
	  
2006-02-27  Luca Ognibene  <luogni at tin dot it>

	Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
	(gst_mpeg2dec_reset), (gst_mpeg2dec_chain):
	* ext/mpeg2dec/gstmpeg2dec.h:
	  Don't treat STATE_INVALID as fatal error; throw an error
	  only after five consecutive decoding errors. Makes decoding
	  mpeg streams more robust and fixes playback of joined clips
	  (#300682).

2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdnav/dvdnavsrc.h:
	  Oops. forgot to add this one.

2006-02-26  Julien MOUTTE  <julien@moutte.net>

	* ext/Makefile.am: Fix dist-check.

2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	  Disable dvdnavsrc for now.

2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	* ext/Makefile.am:
	* ext/dvdnav/Makefile.am:
	* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
	(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
	(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
	(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
	(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
	(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
	(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
	(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
	(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
	(gst_dvd_nav_src_make_dvd_event),
	(gst_dvd_nav_src_structure_set_uint64),
	(gst_dvd_nav_src_push_dvd_nav_packet_event),
	(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
	(gst_dvd_nav_src_push_titlelang_event),
	(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
	(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
	(gst_dvd_nav_src_handle_navigation_event),
	(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
	(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
	(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
	(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
	(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
	(gst_dvd_nav_src_do_init), (plugin_init):
	  dvdnavsrc ported to 0.10, for the most part at least. Not quite
	  ready for prime time yet though.

2006-02-22  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	* gst/dvdsub/Makefile.am:
	* gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_base_init),
	(gst_dvd_sub_dec_class_init), (gst_dvd_sub_dec_init),
	(gst_dvd_sub_dec_finalize), (gst_dvd_sub_dec_src_event),
	(gst_dvd_sub_dec_get_event_delay), (gst_dvd_sub_dec_parse_subpic),
	(gst_get_nibble), (gst_setup_palette), (gst_get_rle_code),
	(gst_draw_rle_line), (gst_dvd_sub_dec_merge_title),
	(gst_send_empty_fill), (gst_send_subtitle_frame),
	(gst_dvd_sub_dec_advance_time), (gst_dvd_sub_dec_chain),
	(gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event),
	(plugin_init):
	* gst/dvdsub/gstdvdsubdec.h:
	  Port dvdsubdec to 0.10

2006-02-21  Jan Schmidt  <thaytan@mad.scientist.com>

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
	 Push the rank up to SECONDARY+1 so that dvddemux is preferred over
	 mpegdemux for MPEG-2 video streams.

2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>

	* configure.ac:
	  Bump nano back to CVS

=== release 0.10.2 ===

2006-02-20  Jan Schmidt <thaytan@mad.scientist.com>

	* configure.ac:
	  releasing 0.10.2, "Season to Taste"

2006-02-19  Jan Schmidt <thaytan@mad.scientist.com>

	* configure.ac:
	  releasing 0.10.1.3 prelease for 0.10.2

2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event):
	  In sink event handler, release object lock again
	  _before_ sending EOS event downstream (#313838).

2006-02-17  Christian Schaller  <christian@fluendo.com>
	
	* gst/asfdemux/gstasf.c: (plugin_init):
	  Set asfdemux rank to secondary (fixes #331579).

2006-02-17  Jan Schmidt <thaytan@mad.scientist.com>

	* configure.ac:
	  releasing 0.10.1.2 prelease for 0.10.2

2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (crop_copy_i420_buffer),
	(crop_copy_i422_buffer), (crop_buffer):
	  When we need to crop the output buffer, make sure we
	  create a buffer of the right size and respect the implicit
	  striding used for I420 elsewhere in GStreamer (#331301).

2006-02-17  Edward Hervey  <edward@fluendo.com>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream):
	Do not error out on non-recognized streams. Ignore them and allow
	playback of the other streams.

2006-02-17  Jan Schmidt  <thaytan@mad.scientist.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
	Add a small sanity check for LPCM reading.

2006-02-17  Edward Hervey  <edward@fluendo.com>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_file):
	Take into account the file properties preroll value for
	timestamping/newsegment. It's weird this value was commented out.

2006-02-16  Wim Taymans  <wim@fluendo.com>

	* gst/asfdemux/Makefile.am:
	More asf makefile fixing.

2006-02-16  Wim Taymans  <wim@fluendo.com>

	* ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain),
	(gst_lame_change_state):
	Fix up lame a bit.
	Apply patch #319782 by Gautier Portet.

2006-02-16  Edward Hervey  <edward@fluendo.com>

	* gst/asfdemux/Makefile.am:
	But we do need to link against the riff libraryr.

2006-02-16  Edward Hervey  <edward@fluendo.com>

	* gst/asfdemux/Makefile.am:
	We don't want asfmux.c yet.

2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mad/gstmad.c: (gst_mad_init), (scale), (gst_mad_update_info),
	(gst_mad_sink_event), (gst_mad_check_caps_reset), (gst_mad_chain),
	(gst_mad_change_state):
	  Port fixes for bugs 314771, 308772, 140237, and 302625
	  from 0.8 (Patch by Jonathan Matthew, Fixes #329575)
	  Use GST_EVENT_FLUSH_STOP to clear data from the current input
	  buffer, to avoid using it for any future decoding.

2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	* gst/asfdemux/asfheaders.c: (gst_asf_identify_guid),
	(gst_asf_get_guid_nick):
	* gst/asfdemux/asfheaders.h:
	* gst/asfdemux/gstasf.c: (plugin_init):
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
	(gst_asf_demux_class_init), (gst_asf_demux_init),
	(gst_asf_demux_sink_event), (gst_asf_demux_handle_seek_event),
	(gst_asf_demux_handle_src_event),
	(gst_asf_demux_get_current_offset), (gst_asf_demux_chain),
	(gst_asf_demux_skip_bytes), (gst_asf_demux_identify_guid),
	(gst_asf_demux_get_uint8), (gst_asf_demux_get_uint16),
	(gst_asf_demux_get_uint32), (gst_asf_demux_get_uint64),
	(gst_asf_demux_get_var_length), (gst_asf_demux_get_buffer),
	(gst_asf_demux_get_bytes), (gst_asf_demux_get_string),
	(gst_asf_demux_get_guid), (gst_asf_demux_get_obj_file),
	(gst_asf_demux_get_bitrate_record),
	(gst_asf_demux_get_obj_comment), (gst_asf_demux_get_obj_header),
	(gst_asf_demux_get_obj_header_ext), (gst_asf_demux_get_obj_stream),
	(gst_asf_demux_get_replicated_data), (gst_asf_demux_get_obj_data),
	(gst_asf_demux_get_obj_data_correction),
	(gst_asf_demux_get_stream_audio),
	(gst_asf_demux_get_stream_correction),
	(gst_asf_demux_get_stream_video),
	(gst_asf_demux_get_stream_video_format),
	(gst_asf_demux_get_stream), (gst_asf_demux_setup_pad),
	(gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
	(gst_asf_demux_process_stream),
	(gst_asf_demux_get_gst_tag_from_tag_name),
	(gst_asf_demux_commit_taglist),
	(gst_asf_demux_process_ext_content_desc),
	(gst_asf_demux_get_object_header), (gst_asf_demux_process_data),
	(gst_asf_demux_process_header), (gst_asf_demux_process_file),
	(gst_asf_demux_process_comment),
	(gst_asf_demux_process_bitrate_props_object),
	(gst_asf_demux_process_header_ext), (gst_asf_demux_process_object),
	(gst_asf_demux_descramble_segment),
	(gst_asf_demux_element_send_event),
	(gst_asf_demux_send_event_unlocked), (gst_asf_demux_push_buffer),
	(gst_asf_demux_process_chunk), (gst_asf_demux_process_segment),
	(gst_asf_demux_handle_data), (gst_asf_demux_parse_data),
	(gst_asf_demux_get_src_query_types),
	(gst_asf_demux_handle_src_query), (gst_asf_demux_change_state):
	* gst/asfdemux/gstasfdemux.h:
	  asfdemux ported to 0.10. Does still need a bit of work (seems like
	  there's something funky going on when timestamping video frames).
	  The seeking code is likely to make Wim cry, but hey, at least it
	  compiles.

2006-02-15  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbdec.c: (gst_amrnbdec_setcaps),
	(gst_amrnbdec_chain), (gst_amrnbdec_state_change):
	Some more comments.

	* ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer), (handle_slice):
	Applied patch from Fabrizio Gennari, fixes #330844.

2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_init),
	(gst_dvd_read_src_class_init), (gst_dvd_read_src_start),
	(gst_dvd_read_src_stop), (gst_dvd_read_src_goto_title),
	(gst_dvd_read_src_set_property), (gst_dvd_read_src_get_property),
	(gst_dvd_read_src_uri_get_uri), (gst_dvd_read_src_uri_set_uri):
	* ext/dvdread/dvdreadsrc.h:
	  Let's try to play the title the user set via the URI handler or
	  via properties instead of always playing the first title. Also,
	  Also, count title/chapter/angle number in URI and properties
	  from 1 rather than 0.

2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_class_init),
	(gst_dvd_read_src_get_size), (gst_dvd_read_src_do_seek),
	(gst_dvd_read_src_do_duration_query):
	  Don't implement GstBaseSrc::get_size or GstBaseSrc::is_seekable,
	  otherwise GstBaseSrc will think we can operate pull_range based,
	  which we don't really, and typefinding will fail miserably.
	  Also, make seeking work somewhat (only works with flumpegdemux
	  at the moment, mpegstream needs fixing for that first).

2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_read),
	(gst_dvd_read_src_create), (gst_dvd_read_src_src_event):
	  Only allocate buffer once we know exactly how much we need,
	  rather than gratuitously allocating 2MB-buffers all the time
	  even if we usually need much less than that. Also, demote
	  a debug message from DEBUG to LOG level.

2006-02-10  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_class_init),
	(gst_dvd_read_src_seekable), (gst_dvd_read_src_get_size),
	(gst_dvd_read_src_do_seek), (gst_dvd_read_src_do_duration_query),
	(gst_dvd_read_src_do_position_query):
	  Add some more debugging and fix duration query in BYTES.

2006-02-09  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	* ext/Makefile.am:
	* ext/dvdread/Makefile.am:
	* ext/dvdread/dvdreadsrc.c:
	* ext/dvdread/dvdreadsrc.h:
	  Half-baked port to 0.10. Needs some love
	  in the seeking department, but at least
	  it does something.

	* ext/dvdread/stream_labels.c:
	* ext/dvdread/stream_labels.h:
	  Remove these (we use ISO-639 language codes internally; applications
	  that want to translate those into language names for display to the
	  user should rely on the iso-codes package for that).

2006-02-06  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbdec.c: (gst_amrnbdec_init),
	(gst_amrnbdec_setcaps), (gst_amrnbdec_event), (gst_amrnbdec_chain),
	(gst_amrnbdec_state_change):
	* ext/amrnb/amrnbdec.h:
	Fix amrnbdec, handle events, take copy from adapter since the decoder
	apparently writes in the source data.
	Use some _scale_int, and precalc duration.
	Fix some leaks, post ERROR messages.

2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
	  One source pad not being linked is not an error condition when we're
	  still parsing the header. In this case (e.g. where we don't have a
	  suitable decoder installed) just pretend everything is fine, so that
	  the demuxer will actually go on to signal no-more-pads when done
	  parsing the header, otherwise  decodebin/playbin will never post the
	  appropriate error message if decoders are not available.

2006-02-03  Edgard Lima <edgard.lima@indt.org.br>

	* ext/mad/gstid3tag.c:
	* gst/realmedia/rmdemux.c:
	Just make it compile with --disable-gst-debug.

2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mad/gstmad.c: (gst_mad_convert_src), (scale),
	(gst_mad_check_caps_reset), (gst_mad_chain):
	  Merge patch from Radoslaw Szkodzinski (bug 326734)

2006-01-31  Stefan Kost  <ensonic@users.sf.net>

	* ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach),
	(gst_id3_tag_get_tag_to_render), (gst_id3_tag_sink_event),
	(gst_id3_tag_src_link), (gst_id3_tag_send_tag_event),
	(gst_id3_tag_chain):
	  fixing Gdate handling
	  enabling mux/demux mode switching
	  adding better debug output

2006-01-30  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_buffer):
	  If we haven't set caps on a source pad yet, the caps on the
	  pad are NULL, not un-fixed. Set caps on outgoing buffers.

2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (gst_lame_finalize), (gst_lame_class_init),
	(gst_lame_init), (add_one_tag), (gst_lame_set_metadata):
	* ext/lame/gstlame.h:
	  Contrary to what the const char in the lame API might suggest,
	  lame expects us to keep the strings we pass to id3tag_set_foo()
	  around; it doesn't free them either though, so we have to store
	  them somewhere and free them later when we can be sure lame
	  doesn't need them any longer.

2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/lame/gstlame.c: (add_one_tag):
	  Fix handling of GST_TAG_DATE (#311679), don't pass an
	  uninitialised string pointer to lame if we don't know
	  how to handle the tag type, and fix minor memory leak.

2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_chain):
	  Fix debug message.

2006-01-22  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_process_event): 
	Erase spurious call to gst_segment_set_newsegment.
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event): Call
	the superclass method when handling NEWSEGMENT events.
	(gst_dvd_demux_handle_dvd_event): Get rid of dvd-audio-shutdown
	and dvd-audio-restart event handling. There are currently less
	hackish ways of handling the sparse audio stream problem.

2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/dvdnav/dvdnavsrc.c: (if):
	* ext/dvdread/stream_labels.c:
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_loop):
	  fix up error domains, error strings, and use of translation
	* po/POTFILES.in:
	  fix up this file, even though none of them are actually marked
	  for build yet.

2006-01-19  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse): 
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_reset) 
	(gst_mpeg_parse_process_event, gst_mpeg_parse_parse_packhead) 
	(gst_mpeg_parse_change_state): 
	Make timestamp adjustment somewhat milder. Actual timestamps are
	now sent unmodified unless an actual gap is found in the
	stream. This should fix time display when playing most MPEG
	files.

2006-01-18  Edward Hervey  <edward@fluendo.com>

	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer): 
	tss tss... always set caps on outgoing buffer.

2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  back to HEAD

=== release 0.10.1 ===

2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>

	* configure.ac:
	  releasing 0.10.1, "Peng"

2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  prerelease

2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/amrnb/amrnbparse.c: (gst_amrnbparse_query):
	* ext/mad/gstid3tag.c: (gst_id3_tag_src_query):
	* ext/mad/gstmad.c: (gst_mad_src_query):
	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_src_query):
	* ext/sidplay/gstsiddec.cc:
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_handle_src_query):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_src_query):
	  Pass unhandled queries upstream (useful e.g. for SEEKING query)
	  (fixes #325652; based on patch by: Philippe); make rmdemux return
	  FALSE for position queries, instead of setting -1 as value and
	  returning TRUE.

2006-01-05  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_adjust_ts) 
	(gst_mpeg_parse_process_event, gst_mpeg_parse_pad_added): Don't
	rewrite timestamps in the case segments are being set from
	upstream, but use timestamps unmodified. Also send proper position
	values. This allows for correct time display and makes queries
	work in sink elements.

	* gst/mpegstream/gstdvddemux.h: 
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
	(gst_dvd_demux_handle_dvd_event, gst_dvd_demux_send_subbuffer):
	Rename flush_filter to segment_filter, which is better represents
	what the arreibute does.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event):
	Activate segment filtering when a timestamp discontinuity is seen.

2006-01-04  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_chain):
	  Don't forget that we need to send out a newsegment event after a
	  restart even if we don't have enough data to decode a frame right
	  now.

2005-12-31  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event):
	Use the new "audio-shutdown" and "audio-restart" DVD events
	instead of the "spu-still-frame" event to shutdown and restart
	the audio pipeline.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_adjust_ts):
	Check for cases where the segment-based adjustment calculation
	would produce negative values (which result in an overflow) and
	return GST_CLOCK_TIME_NONE instead.

	* gst/mpegstream/gstdvddemux.h: 
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
	(gst_dvd_demux_process_event, gst_dvd_demux_send_subbuffer): 
	Add a mechanism to discard audio buffers with timestamps outside
	the currently set segment. This was causing (sometimes serious)
	synchronization problems after seeking in DVDs with LPCM audio,
	since VOBUs usually contain audio material that lies outside the
	timestamp range specified by the header.

2005-12-30  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mad/gstid3tag.c: (gst_id3_tag_get_type):
	  Remove lingering reference to GstID3Demux

	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
	  Don't output debug saying padding streams are unknown type,
	  because they're not

2005-12-27  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstdvddemux.c (AUDIO_CAPS) 
	(gst_dvd_demux_get_audio_stream): Use audio/x-lpcm as mimetype for
	LPCM.

	* gstmpegdemux.h: 
	* gstmpegdemux.c (gst_mpeg_demux_get_video_stream) 
	(gst_mpeg_demux_get_audio_stream): 
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_get_video_stream) 
	(gst_dvd_demux_get_audio_stream) 
	(gst_dvd_demux_get_subpicture_stream) 
	(gst_dvd_demux_send_subbuffer):
	Send current* pad buffers with appropriate caps.

2005-12-26  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/iec958/ac3iec.h:
	* gst/iec958/ac3iec.c:
	(NORMAL_CAPS_DEF, RAW_AUDIO_CAPS_DEF, ac3iec_class_init)
	(ac3iec_init, ac3iec_set_property, ac3iec_get_property): Add a
	raw-audio property to ac3iec958 that allows setting the source pad
	caps to raw audio instead of audio/x-iec958. This makes it
	possible to use ac3iec958 together with the normal alsasink
	element to drive an external receiver that autodetects AC3
	content.
	API addition: AC3IEC::raw-audio property

2005-12-23  Michael Smith  <msmith@fluendo.com>

	* gst/iec958/ac3iec.c: (ac3iec_init), (ac3iec_setcaps),
	(ac3iec_chain_dvd):
	* gst/iec958/ac3iec.h:
	  Accept audio/x-ac3 and audio/ac3 to ac3iec958 element.

2005-12-21  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_src_event):
	  When getting a seek event, first check if the upstream element
	  can handle it and only do our own seek stuff when it can't
	  (should fix #322856).

2005-12-21  Josef Zlomek  <josef dot zlomek at xeris dot cz>

	Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (normal_seek):
	  Really convert to BYTES format when we want to convert
	  to bytes (use right variable; fixes #322856).

2005-12-19  Martin Soto  <martinsoto@users.sourceforge.net>

	Big mpegparse clean up, second round:

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event):
	Send and EOS event down the audio pipeline when an still frame
	event arrives. This prevents the pipeline from locking when a
	still menu comes directly after a flush.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_reset): 
	Don't send a newsegment in reset.
	(gst_mpeg_parse_adjust_ts): Check for invalid timestamps.
	(gst_mpeg_parse_handle_newsegment, gst_mpeg_parse_process_event):
	Move the code of handle_newsegment to process_event. Send a
	NEWSEGMENT after FLUSH_STOP.
	(gst_mpeg_parse_change_state): Send a NEWSEGMENT right after
	moving to PAUSED.

	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_event) 
	(gst_mpeg_demux_class_init): Don't override send_event.
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_init) 
	(gst_mpeg_demux_send_event, gst_mpeg_demux_send_subbuffer) 
	(gst_mpeg_demux_reset):
	* gst/mpegstream/gstmpegdemux.h:  Get rid of just_flushed
	attribute.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_process_event):
	Reset the mpegparse element after a flush.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_newsegment): 
	Don't forward events.
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_process_event): 
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): 
	handle_newsegment is not a virtual method anymore.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_send_newsegment) 
	(gst_mpeg_parse_reset, gst_mpeg_parse_class_init): 
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): Get
	rid of send_newsegment virtual method.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event): Only
	handle DVD events and call the superclass method for other event
	types.
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_event): Don't
	override process_event anymore.
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_event)
	(gst_mpeg_parse_process_event): Move actual event processing to
	process event so that subclasses can properly override or extend
	it.
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass):
	Eliminate time parameter in process event.

	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_init) 
	(gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes) 
	(gst_mpeg_demux_send_subbuffer): 
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init) 
	(gst_mpeg_parse_parse_packhead, gst_mpeg_parse_event) 
	(gst_mpeg_parse_chain): Use the new adjust_ts method instead of
	adding the value of the adjust attribute.
	* gst/mpegstream/gstmpegdemux.h (struct _GstMPEGVideoStream): Get
	rid of the adjust attribute. Now all timestamp adjustments are
	performed by mpegparse using the current segment.
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_adjust_ts)
	(gst_mpeg_parse_class_init): Implement the adjust_ts method based
	on the adjust attribute for SCR values and the current segment.
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): New
	adjust_ts virtual method to adjust timestamps for outgoing
	buffers.
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_newsegment) 
	(gst_mpeg_demux_parse_packet): Don't override send_newsegment.
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_class_init) 
	(gst_dvd_demux_handle_newsegment): Don't override
	handle_newsegment.
	(gst_dvd_demux_process_event, gst_dvd_demux_handle_dvd_event):
	Check for DVD events in process_event instead of
	handle_dvd_event.

	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): 
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_newsegment) 
	(gst_mpeg_parse_send_newsegment, gst_mpeg_parse_send_event): 
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_process_event) 
	(gst_mpeg_demux_send_event): 
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event) 
	(gst_dvd_demux_handle_dvd_event): 
	Eliminate the time parameter in send_event.

2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind),
	(gst_id3_tag_do_caps_nego), (gst_id3_tag_chain), (plugin_init):
	  Fix typefinding in id3demux, and then remove it in favour
	  of the new LGPL id3demux in gst-plugins-good
	* ext/mad/gstmad.c: (gst_mad_dispose):
	  dispose can run more than once.

2005-12-16  Stefan Kost  <ensonic@users.sf.net>

	* gst/asfdemux/gstasfmux.c: (gst_asfmux_file_start):
	  change some char* into char[]

2005-12-15  Edward Hervey  <edward@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
	Remove memleak from unused GstRMDemuxStream

2005-12-12  Michael Smith  <msmith@fluendo.com>

	* ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
	(gst_id3_tag_do_typefind):
	  Use the correct function to free typefind factory list.

2005-12-09  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_src_query):
	  For position and duration queries in TIME format, try the peer
	  first (might be a demuxer).

2005-12-08  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_newsegment):
	Properly handle non contiguous VOBUs by adding the segment accum
	field to the adjust value.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_class_init)
	(gst_dvd_demux_init, gst_dvd_demux_handle_newsegment): Extend
	handle_newsegment to prevent sending actual newsegment events and
	use tiemstamp rewriting instead.
	(gst_dvd_demux_handle_dvd_event): Don't send a newsegment after
	dvd-lang-codes.
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_newsegment) 
	(gst_mpeg_parse_event): 
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): 
	Add a new parameter to handle_newsegment to allow controlling
	whether newsegment events are forwarded or not.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
	(gst_dvd_demux_handle_dvd_event, gst_dvd_demux_send_subbuffer) 
	(gst_dvd_demux_reset): 
	last_end_ptm and discont_time aren't necessary anymore, since
	timestamp adjustment is now replaced by newsegment events.
	(gst_dvd_demux_init): Prevent MPEGParse from adjusting
	timestamps.
	* gst/mpegstream/gstdvddemux.h: 
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event):
	Don't handle dvd-nav-packet events anymore, since the are now
	replaced by standard newsegment events.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
	(gst_dvd_demux_handle_dvd_event, gst_dvd_demux_send_subbuffer) 
	(gst_dvd_demux_change_state): 
	* gst/mpegstream/gstdvddemux.h: 
	Get rid of the ignore_next_newmedia_discont hack.
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_class_init) 
	(gst_dvd_demux_handle_newsegment): 
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_class_init) 
	(gst_mpeg_demux_handle_newsegment): Don't override
	handle_newsegment anymore. It was only necessary to handle
	NEWMEDIA events.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event) 
	(gst_dvd_demux_handle_dvd_event, gst_dvd_demux_set_cur_audio) 
	(gst_dvd_demux_set_cur_subpicture):
	Reactivate handling of DVD events.

	* gst/mpegstream/gstmpegparse.c (normal_seek) 
	(gst_mpeg_parse_handle_src_event) 
	(gst_mpeg_parse_handle_src_query): 
	First attempt at reenabling seek.

	* gst/mpegstream/gstmpegparse.h: 
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init) 
	(gst_mpeg_parse_update_streaminfo) 
	(gst_mpeg_parse_get_rate) 
	(gst_mpeg_parse_convert, gst_mpeg_parse_get_src_query_types) 
	(gst_mpeg_parse_handle_src_query): 
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_new_output_pad): 
	Make queries work again.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_reset) 
	(gst_mpeg_parse_handle_newsegment) 
	(gst_mpeg_parse_send_newsegment, gst_mpeg_parse_pad_added) 
	(gst_mpeg_parse_chain, gst_mpeg_parse_handle_src_event): 
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
	Get rid of the newsegment_pending attribute, and rely instead on
	proper timestamp adjustment.

	* gst/mpegstream/gstmpegparse.c
	(gst_mpeg_parse_get_src_event_masks): Erase.

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init):
	Initialize fields before creating pads to prevent the pad creation
	callback from failing.
	(gst_mpeg_parse_reset): Initialize new fields, and change
	initialization order to match the order in the structure.
	(gst_mpeg_parse_handle_newsegment): Forward new segment events
	whenever possible, and update the current segment.
	(gst_mpeg_parse_send_newsegment): Update the current segment and
	pending_newsegment.
	(gst_mpeg_parse_pad_added): Use the current segment to send
	newsegment events to new pads.
	(gst_mpeg_parse_chain): Properly add adjust time to sent buffers
	and events. Properly update newsegment_pending.
	* gst/mpegstream/gstmpegparse.h	(struct _GstMPEGParse):
	New fields do_adjust and current_segment.

	* gst/mpegstream/gstmpegdemux.c: 
	* gst/mpegstream/gstdvddemux.c: 
	* gst/mpegstream/gstmpegparse.h: 
	Rename handle_discont virtual method to handle_newsegment. Erase
	some (already commented out support) for old NEW_MEDIA events.

	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init) 
	(gst_mpeg_parse_reset, gst_mpeg_parse_handle_discont) 
	(gst_mpeg_parse_pad_added, gst_mpeg_parse_parse_packhead) 
	(gst_mpeg_parse_event, gst_mpeg_parse_chain): 
	Erase the "pending_scr" field, and replace it by a slightly
	different handling of the current SCR. Document code blocks in
	parse_packhead and chain.

2005-12-07  Edward Hervey  <edward@fluendo.com>

	* ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
	g_warning() are only for really fatal warnings. If we can't decode a
	tag, just ignore that tag and do a GST_WARNING.

2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/a52dec/gsta52dec.h:
	* ext/dvdread/dvdreadsrc.h:
	* ext/lame/gstlame.h:
	* ext/mad/gstid3tag.c:
	* ext/mad/gstmad.c: (gst_mad_update_info):
	* ext/mad/gstmad.h:
	* ext/mpeg2dec/gstmpeg2dec.h:
	* ext/sidplay/gstsiddec.h:
	* gst/ac3parse/gstac3parse.c:
	* gst/ac3parse/gstac3parse.h:
	* gst/asfdemux/gstasfdemux.c:
	* gst/asfdemux/gstasfdemux.h:
	* gst/iec958/ac3iec.h:
	* gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
	* gst/mpegaudioparse/gstmpegaudioparse.h:
	* gst/mpegstream/gstdvddemux.h:
	* gst/mpegstream/gstmpegclock.h:
	* gst/mpegstream/gstmpegdemux.h:
	* gst/mpegstream/gstmpegpacketize.h:
	* gst/mpegstream/gstmpegparse.c:
	* gst/mpegstream/gstmpegparse.h:
	* gst/mpegstream/gstrfc2250enc.c:
	* gst/mpegstream/gstrfc2250enc.h:
	* gst/realmedia/rmdemux.c:
	* gst/realmedia/rmdemux.h:
	* gst/synaesthesia/synaescope.c:
	  expand tabs

=== release 0.10.0 ===

2005-12-05   <thomas (at) apestaart (dot) org>

	* configure.ac:
	  releasing 0.10.0, "Brie"

2005-12-05  Andy Wingo  <wingo@pobox.com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_push):
	* ext/mad/gstmad.c: (gst_mad_chain):
	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_raw):
	* gst/iec958/ac3iec.c: (ac3iec_chain_raw):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_packet): Update for alloc_buffer changes.

2005-12-05  Andy Wingo  <wingo@pobox.com>

	* ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just
	id3demux and id3mux now. Fixes #323199.

2005-12-02  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>

	* ext/amrnb/Makefile.am:
	* gst/realmedia/Makefile.am:
	  fix silly Makefile.am bug so they link correctly again

=== release 0.9.7 ===

2005-12-01   <thomas (at) apestaart (dot) org>

	* configure.ac:
	  releasing 0.9.7, "Canis Meus Naso Non Habet"

2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/amrnb/Makefile.am:
	* gst/realmedia/Makefile.am:
	  Don't know how these escaped my eye before.  Fix link flags.

2005-11-29  Michal Benes  <michal dot benes at xeris dot cz>

	Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_event):
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_newsegment),
	(gst_mpeg_parse_send_event):
	  Ref events before sending them to multiple pads, after all
	  gst_pad_send_event() takes ownership of events. Don't leak
	  events that have not been handled (fixes #322745).

2005-11-28  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event)
	(gst_dvd_demux_handle_dvd_event): Erase code to prevent mpegparse
	from making timestamp adjustments. This will have to be re-added
	in some form in the near future, but in order to do that, some nav
	packet parsing will be necessary in mpegdemux.
	* gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init) 
	(g_value_set_int, gst_mpeg_parse_set_property)
	Get rid of do_adjust and use_adjust. Rename max_discont to
	max_src_gap.
	(gst_mpeg_parse_parse_packhead): When max_scr_gap has a value of
	-1, no adjustment is made.
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init): 
	Rename max_discont property to max_scr_gap. Erase "adjust"
	property.

	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_send_event): Don't
	override send_event anymore, base class does the job.
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_event):
	Base class now does most of the work.
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_send_event):
	Generalize to forwarding the event to all source pads in the
	element.

	* gst/mpegstream/gstmpegparse.h: 
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init) 
	(gst_mpeg_parse_init, gst_mpeg_parse_set_clock) 
	(gst_mpeg_parse_chain, gst_mpeg_parse_get_property) 
	(gst_mpeg_parse_set_property):
	Clock synchronization doesn't make sense anymore for a
	demultiplexer.

2005-11-28  Michael Smith  <msmith@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_loop):
	  Don't treat normal EOS as a fatal error.

2005-11-28  Edward Hervey  <edward@fluendo.com>

	* ext/mad/gstmad.c: (gst_mad_chain):
	Proper warning statements,
	Don't error if the src pad isn't linked when pushing.
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_change_state):
	Proper state_change, avoids borkage when going to READY

2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (handle_sequence):
	  Prime libmpeg2's pumps with some null custom buffers
	  to ensure it doesn't ask us to discard garbage later yay.

2005-11-25  Michael Smith  <msmith@fluendo.com>

	* ext/a52dec/gsta52dec.c: (gst_a52dec_init),
	(gst_a52dec_sink_setcaps), (gst_a52dec_chain),
	(gst_a52dec_chain_raw):
	* ext/a52dec/gsta52dec.h:
	  Accept AC3 in audio/x-private1-ac3 format, which includes
	  DVD-specific headers, as well as raw AC3, for compatibility with
	  some demuxers.

2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mad/gstmad.c: (gst_mad_chain):
        When pad_alloc returns other-than-GST_FLOW_OK and mad exits early,
	skip frame synthesis and consume input data as if we'd done the 
	decode. Makes mad not error when the src pad is not connected.
	(#319784)

2005-11-23  Martin Soto  <martinsoto@users.sourceforge.net>

	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init) 
	(gst_mpeg_parse_handle_discont, gst_mpeg_parse_send_newsegment) 
	(gst_mpeg_parse_chain): 
	* gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_class_init) 
	(gst_mpeg_demux_send_newsegment): 
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_send_subbuffer): 
	* gst/mpegstream/gstmpegparse.h: 
	Rename send_discont method to send_newsegment and add parameters
	to handle actual segments. Adapt code all around to run with the
	new name and signature.
	* gst/mpegstream/gstmpegdemux.c: 
	* gst/mpegstream/gstmpegparse.c: 
	* gst/mpegstream/gstdvddemux.c:
	Convert to GST_BOILERPLATE.

2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac: back to HEAD

=== release 0.9.6 ===

2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>

	* configure.ac:
	  releasing 0.9.6, "The Marshals Are Dead"

2005-11-23  Michael Smith <msmith@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_sink_event),
	(gst_rmdemux_src_event), (gst_rmdemux_validate_offset),
	(find_seek_offset_bytes), (find_seek_offset_time),
	(gst_rmdemux_perform_seek), (gst_rmdemux_src_query),
	(gst_rmdemux_loop), (gst_rmdemux_fourcc_isplausible),
	(gst_rmdemux_chain), (gst_rmdemux_send_event),
	(gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr),
	(gst_rmdemux_parse_packet):
	  Fractional framerates.

2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
	(gst_mpeg2dec_negotiate_format), (handle_sequence),
	(gst_mpeg2dec_sink_event):
	* ext/mpeg2dec/gstmpeg2dec.h:
	Use fractional framerates

2005-11-22  Wim Taymans  <wim@fluendo.com>

	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_set_clock):
	set_clock returns a boolean.

2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_chain):
	  Fix seeking even more by sending the newsegment event with the
	  right parameters. Should fix querying in playbin/totem after
	  a seek.

2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstmad.c: (gst_mad_mode_get_type), (gst_mad_src_query),
	(normal_seek), (gst_mad_sink_event), (gst_mad_chain):
	  Fix seeking in stand-alone mode. Fix nonexistant enum value 
	  introduced in previous commit. Improve debug messages here and 
	  there. Actually return a proper return value in the sink event
	  handler.

2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/lame/gstlame.c:
	* ext/mad/gstmad.c:
	* ext/sidplay/gstsiddec.cc:
	  fix up GValueEnum

2005-11-22  Andy Wingo  <wingo@pobox.com>

	* Update for gst_tag_setter API changes.

2005-11-22  Andy Wingo  <wingo@pobox.com>

	* ext/a52dec/gsta52dec.c (gst_a52dec_sink_event)
	* ext/mad/gstid3tag.c (gst_id3_tag_sink_event)
	* ext/mad/gstmad.c (gst_mad_chain)
	* gst/mpegaudioparse/gstmpegaudioparse.c
	(gst_mp3parse_sink_event)
	* gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event)
	* gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_discont)
	(gst_mpeg_parse_send_discont, gst_mpeg_parse_pad_added)
	* gst/realmedia/rmdemux.c (gst_rmdemux_perform_seek)
	(gst_rmdemux_chain, gst_rmdemux_add_stream): Run update-funcnames.

2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/Makefile.am:
	  libgsttagedit => libgsttag

2005-11-22  Edward Hervey  <edward@fluendo.com>

	* ext/lame/gstlame.c: (gst_lame_sink_event):
	Don't take the stream lock

2005-11-21  Andy Wingo  <wingo@pobox.com>

	* ext/sidplay/gstsiddec.cc (gst_siddec_sink_event): 
	* ext/mpeg2dec/gstmpeg2dec.c (gst_mpeg2dec_sink_event): 
	* ext/mad/gstmad.c (gst_mad_sink_event):
	* ext/a52dec/gsta52dec.c (gst_a52dec_sink_event): Don't take the
	stream lock.

	* gst/realmedia/rmdemux.c (gst_rmdemux_perform_seek): Update for
	stream lock changes.

	* *.h:
	* *.c: Ran scripts/update-macros. Oh yes.

2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_process_event):
	  Filler events have beem removed for now.

2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>

	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_video_stream):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_chain),
	(gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr):
	  Update for GST_FOURCC_FORMAT API change.

2005-11-21  Edward Hervey  <edward@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_raw):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_chain),
	(gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr),
	(gst_rmdemux_parse_packet):
	Modifications for disapearance of GST_PAD_IS_USABLE()

2005-11-18  Michael Smith <msmith@fluendo.com>

	* gst/iec958/ac3iec.c: (ac3iec_init), (ac3iec_chain_dvd):
	  Remove some setcaps brokenness.
	  Don't crash on bad input.

2005-11-15  Johan Dahlin  <johan@gnome.org>

	* ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): unset GValues after
	calling transform.
	(gst_id3_tag_do_typefind): Unref caps

	* ext/mad/gstmad.c (gst_mad_check_caps_reset): Ditto

2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mpeg2dec/gstmpeg2dec.c: (handle_slice),
	(gst_mpeg2dec_sink_event):
	  Set DELTA_UNIT flag on outgoing buffers if this is NOT a keyframe;
	  nice-ify debug message in event handler; add CHECKME.

	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event),
	(gst_dvd_demux_send_event), (gst_dvd_demux_process_private),
	(gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset),
	(gst_dvd_demux_sync_stream_to_time):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
	(gst_mpeg_demux_process_event), (gst_mpeg_demux_send_event),
	(gst_mpeg_demux_handle_discont), (gst_mpeg_demux_new_output_pad),
	(gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes),
	(gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_process_private),
	(gst_mpeg_demux_sync_stream_to_time),
	(gst_mpeg_demux_handle_src_event), (gst_mpeg_demux_reset):
	* gst/mpegstream/gstmpegdemux.h:
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
	(gst_mpeg_parse_handle_discont), (gst_mpeg_parse_send_buffer),
	(gst_mpeg_parse_process_event), (gst_mpeg_parse_send_discont),
	(gst_mpeg_parse_send_event), (gst_mpeg_parse_event),
	(gst_mpeg_parse_chain):
	* gst/mpegstream/gstmpegparse.h:
	  Get rid of GST_PAD_IS_USABLE and fix GstFlowReturn vs. gboolean
	  return value confusion (gst_pad_push vs. gst_pad_send_event and
	  gst_pad_push_event); pass flow return values to caller;
	  miscellaneous fixes and clean-ups.

2005-11-14  Martin Soto  <soto@localhost.localdomain>

	* gst/mpegstream/Makefile.am (noinst_HEADERS): Add
	gstrfc2250enc.h.

2005-11-14  Martin Soto  <martinsoto@users.sourceforge.net>

	* configure.ac:
	* gst/mpegstream/Makefile.am:
	* gst/mpegstream/gstdvddemux.c:
	* gst/mpegstream/gstdvddemux.h:
	* gst/mpegstream/gstmpegdemux.c:
	* gst/mpegstream/gstmpegdemux.h:
	* gst/mpegstream/gstmpegpacketize.c:
	* gst/mpegstream/gstmpegpacketize.h:
	* gst/mpegstream/gstmpegparse.c:
	* gst/mpegstream/gstmpegparse.h:
	* gst/mpegstream/gstmpegstream.c:
	* gst/mpegstream/gstrfc2250enc.c:
	* gst/mpegstream/gstrfc2250enc.h:
	Applied patch from Josef Zlomek <josef.zlomek@xeris.cz> to
	partially port the mpegstream plugin to GStreamer 0.9.

2005-11-14  Andy Wingo  <wingo@pobox.com>

	* configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better
	debugging, allows dll builds on windows. Fixes #316076.

2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac: back to HEAD

=== release 0.9.5 ===

2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>

	* configure.ac:
	  releasing 0.9.5, "Zero-Test Patching"

2005-10-27  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
	(gst_mpeg2dec_alloc_buffer), (gst_mpeg2dec_negotiate_format),
	(handle_sequence), (handle_picture), (handle_slice),
	(gst_mpeg2dec_chain), (gst_mpeg2dec_src_query), (normal_seek),
	(gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
	Forward GstFlowReturn about everywhere.
	Handle seeking correctly.

2005-10-27  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format),
	(handle_sequence), (handle_slice), (gst_mpeg2dec_chain),
	(gst_mpeg2dec_src_query), (gst_mpeg2dec_change_state):
	Small cleanups in refcounting.

2005-10-26  Wim Taymans  <wim@fluendo.com>

	* ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
	(gst_mpeg2dec_dispose), (gst_mpeg2dec_reset),
	(gst_mpeg2dec_alloc_buffer), (gst_mpeg2dec_negotiate_format),
	(handle_sequence), (handle_picture):
	* ext/mpeg2dec/gstmpeg2dec.h:
	Removed lots of dubious code.
	Handle flushing and seeking correctly. Still leaks though...

2005-10-24  Christian Schaller  <christian at fluendo dot com>

	* configure.ac: port over thomas plugin listing from base

2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  back to HEAD

=== release 0.9.4 ===

2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* NEWS:
	* RELEASE:
	* configure.ac:
	  Releasing 0.9.4, "Diplodocus"

2005-10-23  Julien MOUTTE  <julien@moutte.net>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_loop): STOPPED->FAILED

2005-10-21  Wim Taymans  <wim@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_validate_offset),
	(gst_rmdemux_perform_seek), (gst_rmdemux_src_query):
	Set correct stream time in newsegment event.

2005-10-21  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/Makefile.am:
	  fix distcheck

2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/a52dec/Makefile.am:
	* ext/a52dec/gsta52dec.c: (gst_a52dec_base_init),
	(gst_a52dec_class_init), (gst_a52dec_sink_event),
	(gst_a52dec_change_state):
	* ext/a52dec/gsta52dec.h:
	  Re-enable CPU flags, use liboil to get them.

2005-10-20  Josef Zlomek  <josef dot zlomek at xeris dot cz>

	Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	* ext/a52dec/Makefile.am:
	* ext/a52dec/gsta52dec.c:
	* ext/a52dec/gsta52dec.h:
	  Port AC3 decoder to 0.9 (#318849).

2005-10-20  Wim Taymans  <wim@fluendo.com>

	* ext/sidplay/gstsiddec.cc:
	Small fixes and more error messages.

2005-10-19  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbparse.c: (gst_amrnbparse_query),
	(gst_amrnbparse_state_change):
	* ext/mad/gstid3tag.c: (gst_id3_tag_src_query):
	* ext/mad/gstmad.c: (gst_mad_get_query_types), (gst_mad_src_query):
	* ext/mpeg2dec/gstmpeg2dec.c:
	* ext/sidplay/gstsiddec.cc:
	* gst/realmedia/rmdemux.c: (gst_rmdemux_validate_offset),
	(gst_rmdemux_src_query), (gst_rmdemux_src_query_types):
	API change fixen.

2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	  GST_DOC has been renamed to GST_DOCBOOK_CHECK

2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  some docs I had
	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_chain):
	  trivial fixes

2005-10-18  Wim Taymans  <wim@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_validate_offset),
	(gst_rmdemux_perform_seek):
	segment-start/done API change.

2005-10-17  Michael Smith <msmith@fluendo.com>

	* gst/iec958/ac3iec.c: (ac3iec_chain_raw):
	  Set buffer duration on IEC958 buffers.

2005-10-16  Tim-Philipp Müller  <tim at centricular dot net>

	* configure.ac:
	  Fix glib check

2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>

	* ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
	  Fix handling of GST_TAG_DATE, which is now of type GST_TYPE_DATE.

2005-10-13  Stefan Kost  <ensonic@users.sf.net>

	* examples/stats/mp2ogg.c:
	  yes, typo fixes

2005-10-12  Stefan Kost  <ensonic@users.sf.net>

	* examples/indexing/indexmpeg.c: (main):
	* ext/a52dec/gsta52dec.c: (gst_a52dec_init):
	* ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_is_open),
	(dvdnavsrc_set_property), (dvdnavsrc_open), (dvdnavsrc_close),
	(dvdnavsrc_event), (dvdnavsrc_convert), (dvdnavsrc_query):
	* ext/dvdread/dvdreadsrc.c: (dvdreadsrc_set_property),
	(dvdreadsrc_srcpad_query), (dvdreadsrc_get),
	(dvdreadsrc_open_file), (dvdreadsrc_close_file):
	* ext/dvdread/dvdreadsrc.h:
	* ext/lame/gstlame.h:
	* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init):
	* gst/asfdemux/gstasfmux.c: (gst_asfmux_init):
	* gst/iec958/ac3iec.h:
	* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init):
	* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_init):
	* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init):
	* gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_init):
	* gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_init):
	renamed GST_FLAGS macros to GST_OBJECT_FLAGS
	moved bitshift from macro to enum definition

2005-10-11  Wim Taymans  <wim@fluendo.com>

	* ext/mad/gstid3tag.c: (gst_id3_tag_sink_event):
	* ext/mad/gstmad.c: (gst_mad_chain):
	* gst/mpegaudioparse/gstmpegaudioparse.c:
	(gst_mp3parse_sink_event), (gst_mp3parse_chain):
	* gst/realmedia/rmdemux.c: (gst_rmdemux_perform_seek),
	(gst_rmdemux_chain), (gst_rmdemux_add_stream):
	newsegment API update.

2005-10-06  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbdec.c:
	Mark invalid frame sizes

	* ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
	UNUSABLE is not to be used here, just push out stuff so
	probes can continue linking or making the pad usable.

2005-10-05  Michael Smith <msmith@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_sink_event),
	(gst_rmdemux_src_event), (gst_rmdemux_validate_offset),
	(find_seek_offset_bytes), (find_seek_offset_time),
	(gst_rmdemux_perform_seek), (gst_rmdemux_src_query),
	(gst_rmdemux_loop), (gst_rmdemux_fourcc_isplausible),
	(gst_rmdemux_chain), (gst_rmdemux_send_event),
	(gst_rmdemux_add_stream), (gst_rmdemux_parse_packet):
	  Improve seeking error-resilience.
	  General improvements in error handling.

2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* configure.ac:
	  back to development

=== release 0.9.3 ===

2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* NEWS:
	* README:
	* configure.ac:
	  releasing 0.9.3, "Athos"

2005-09-30  Michael Smith <msmith@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_src_event),
	(gst_rmdemux_perform_seek), (gst_rmdemux_src_query),
	(gst_rmdemux_change_state), (gst_rmdemux_loop),
	(gst_rmdemux_fourcc_isplausible), (gst_rmdemux_chain),
	(gst_rmdemux_send_event), (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_packet):
	* gst/realmedia/rmdemux.h:
	  Sanity checking, and fix some minor memory leaks

2005-09-29  Michael Smith <msmith@fluendo.com>

	* gst/realmedia/rmdemux.c: (gst_rmdemux_src_event),
	(gst_rmdemux_perform_seek), (gst_rmdemux_loop),
	(gst_rmdemux_send_event), (gst_rmdemux_add_stream),
	(gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_packet):
	Real demuxer fixes. Make it more bulletproof against bad data,
	identify a few more stream types.
	Fix seeking so that it works (at least with the seek example program;
	it still fails with totem).

2005-09-26  Wim Taymans  <wim@fluendo.com>

	* gst/mpegaudioparse/gstmpegaudioparse.c:
	(gst_mp3parse_sink_event), (gst_mp3parse_chain):
	Set correct caps on buffers too.

2005-09-26  Wim Taymans  <wim@fluendo.com>

	* gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
	(gst_mp3parse_sink_event), (gst_mp3parse_chain):
	* gst/mpegaudioparse/gstmpegaudioparse.h:
	Put timestamps on buffers.

2005-09-21  Flavio Oliveira  <flavio.oliveira@indt.org.br>

	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_base_init):
	Changed amrnbenc description, it is an encoder, not decoder.

2005-09-21  Michael Smith <msmith@fluendo.com>

	* gst/ac3parse/gstac3parse.c: (gst_ac3parse_class_init),
	(gst_ac3parse_init), (gst_ac3parse_chain):
	* gst/iec958/ac3_padder.c: (ac3_crc_init), (ac3_crc_update),
	(ac3_crc_validate), (ac3p_init), (ac3p_parse):
	* gst/iec958/ac3_padder.h:
	* gst/iec958/ac3iec.c:
	  Various changes to AC3->IEC958 framer. Mostly to make our IEC958
	  headers more accurate, and to check AC3 checksums (both of them in
	  each frame), and dump the frame (as a probable sync failure) if they
	  don't match. General code cleanup, improved comments. Changed to not
	  construct the header backwards, and not byteswap everything else.
	  If we end up needing to do little-endian output, we should swap in
	  the element doing the output (AC3 is big-endian).

2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* docs/plugins/gst-plugins-ugly-plugins.args:
	* docs/plugins/gst-plugins-ugly-plugins.hierarchy:
	* docs/plugins/gst-plugins-ugly-plugins.interfaces:
	* docs/plugins/gst-plugins-ugly-plugins.prerequisites:
	  commit missing files
	* docs/plugins/inspect/plugin-lame.xml:
	  update

2005-09-19  Wim Taymans  <wim@fluendo.com>

	* ext/lame/gstlame.c: (gst_lame_chain):
	Set caps on outgoing buffers.

2005-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* ext/lame/gstlame.c:
	* ext/lame/gstlame.h:
	  clean up further so we don't try to set up five times for
	  a simple pipeline

2005-09-16  Michael Smith <msmith@fluendo.com>

	* gst/iec958/ac3iec.c: (ac3iec_init):
	  Set setcaps function on sink pad, not source pad. Produce correct
	  caps on output buffers.

2005-09-07  Stefan Kost  <ensonic@users.sf.net>

	* ext/mad/gstid3tag.c:
	  gsttaginterface.h -> gsttagsetter.h

=== release 0.9.1 ===

2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* README:
	* NEWS:
	* autogen.sh:
	* configure.ac:
	  releasing 0.9.1, "The Rat"

2005-09-06  Wim Taymans  <wim@fluendo.com>

	* ext/amrnb/amrnbdec.c: (gst_amrnbdec_state_change):
	* ext/amrnb/amrnbenc.c: (gst_amrnbenc_state_change):
	* ext/amrnb/amrnbparse.c: (gst_amrnbparse_state_change):
	State change function updates.

2005-09-05  Jan Schmidt  <thaytan@mad.scientist.com>

	* ext/mpeg2dec/gstmpeg2dec.c:
	GST_CAT_SEEK disappeared from the public API at some point

2005-09-02  Michael Smith <msmith@fluendo.com>

	* gst/iec958/ac3iec.c:
	  Use the right mime-type for AC3 input, audio/x-private1-ac3, as
	  output by demux

2005-09-02  Michael Smith <msmith@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
	* gst/iec958/ac3iec.c: (ac3iec_get_type), (ac3iec_base_init),
	(ac3iec_class_init), (ac3iec_init), (ac3iec_finalize),
	(ac3iec_setcaps), (ac3iec_set_property), (ac3iec_get_property),
	(ac3iec_chain_dvd), (ac3iec_chain_raw), (ac3iec_change_state),
	(plugin_init):
	  Changes to use the first_access parameter correctly in ac3 and lpcm
	  plugins. General cleanups in iec958 framer.

2005-09-01  Michael Smith <msmith@fluendo.com>

	* configure.ac:
	* gst/iec958/Makefile.am:
	* gst/iec958/ac3_padder.c: (ac3p_init), (ac3p_push_data),
	(ac3p_parse):
	* gst/iec958/ac3_padder.h:
	* gst/iec958/ac3iec.c: (ac3iec_get_type), (ac3iec_base_init),
	(ac3iec_class_init), (ac3iec_init), (ac3iec_finalize),
	(ac3iec_set_property), (ac3iec_get_property), (ac3iec_chain),
	(ac3iec_change_state), (plugin_init):
	* gst/iec958/ac3iec.h:
	  AC3 -> IEC958 (S/PDIF) framer, port of Martin Soto's 0.8 plugin.

2005-09-01  Wim Taymans  <wim@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_setcaps),
	(gst_dvdlpcmdec_chain_dvd), (gst_dvdlpcmdec_chain_raw),
	(gst_dvdlpcmdec_change_state):
	Cleanups, fixed header parsing and stripping.

2005-09-01  Michael Smith <msmith@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
	(gst_dvdlpcmdec_init), (gst_dvdlpcmdec_setcaps),
	(update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
	(gst_dvdlpcmdec_chain_raw):
	  Use the right bytes to parse the LPCM dvd header

2005-09-01  Michael Smith <msmith@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
	(gst_dvdlpcmdec_init), (gst_dvdlpcmdec_setcaps),
	(update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
	(gst_dvdlpcmdec_chain_raw):
	  Return the correct values from chain function.

2005-08-31  Michael Smith <msmith@fluendo.com>

	* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
	(gst_dvdlpcmdec_init), (gst_dvdlpcmdec_setcaps),
	(update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
	(gst_dvdlpcmdec_chain_raw):
	* gst/dvdlpcmdec/gstdvdlpcmdec.h:
	  Restructure LPCM decoder to not expect the demuxer to parse the LPCM
	  header; instead do this internally. Also support the old way, using
	  a different mime-type.

2005-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>

	* Makefile.am:
	* configure.ac:
	* docs/plugins/Makefile.am:
	* docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
	* docs/plugins/gst-plugins-ugly-plugins-sections.txt:
	* docs/plugins/gst-plugins-ugly-plugins.types:
	* ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_tca_seek):
	* ext/dvdread/dvdreadsrc.c: (_open), (_seek_title),
	(_seek_chapter), (_read):
	* gst/mpegaudioparse/gstmpegaudioparse.c:
	  add plugin documentation