File: libquicktime.pot

package info (click to toggle)
libquicktime 2%3A1.0.2%2Bdebian-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 6,496 kB
  • ctags: 6,233
  • sloc: ansic: 48,217; sh: 10,075; makefile: 425; sed: 16
file content (2931 lines) | stat: -rw-r--r-- 59,292 bytes parent folder | download
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: libquicktime-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2008-01-02 21:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: src/texttrack.c:50
msgid ""
"Cannot determine character set of text track, will copy the strings verbatim"
msgstr ""

#: src/texttrack.c:62
msgid "Unsupported charset in text track, will copy the strings verbatim"
msgstr ""

#: src/texttrack.c:246
msgid "Text track not supported for this file"
msgstr ""

#: src/texttrack.c:274
msgid "Need at least one audio or video stream for chapters"
msgstr ""

#: src/texttrack.c:298
msgid "Subtitles are not supported in AVI files"
msgstr ""

#: src/texttrack.c:314
msgid ""
"Subtitles character set could not be determined, string will be copied "
"verbatim"
msgstr ""

#: src/texttrack.c:326
msgid "Unsupported character set in text track, string will be copied verbatim"
msgstr ""

#: src/stco.c:133
#, c-format
msgid "quicktime_update_stco chunk must start at 1. chunk=%ld\n"
msgstr ""

#: src/lqt_codecinfo.c:460
#, c-format
msgid "dlopen failed for %s: %s"
msgstr ""

#: src/lqt_codecinfo.c:474
#, c-format
msgid "Module %s has no API version and is thus terribly old"
msgstr ""

#: src/lqt_codecinfo.c:485
#, c-format
msgid "Codec interface version mismatch of module %s: %d [module] != %d [lqt]"
msgstr ""

#: src/lqt_codecinfo.c:496
#, c-format
msgid "Symbol get_num_codecs not found in %s"
msgstr ""

#: src/lqt_codecinfo.c:505
#, c-format
msgid "Symbol get_codec_info not found in %s"
msgstr ""

#: src/lqt_codecinfo.c:516
#, c-format
msgid "No codecs found in %s"
msgstr ""

#: src/lqt_codecinfo.c:630
#, c-format
msgid "Cannot open plugin directory %s (forgot make install?)"
msgstr ""

#: src/lqt_codecinfo.c:908
#, c-format
msgid "Stringlist parameter %s has NULL options"
msgstr ""

#: src/lqt_codecinfo.c:967
#, c-format
msgid "Codec %s has no fourccs defined"
msgstr ""

#: src/lqt_codecinfo.c:1531
#, c-format
msgid "lqt_set_default_parameter: No %s codec %s found"
msgstr ""

#: src/lqt_codecinfo.c:1562
#, c-format
msgid "lqt_set_default_parameter: No parameter %s for codec %s found"
msgstr ""

#: src/lqt_codecinfo.c:1621
#, c-format
msgid "lqt_restore_default_parameters: dlopen failed for %s: %s"
msgstr ""

#: src/lqt_codecinfo.c:1629
#, c-format
msgid "Symbol %s not found in %s"
msgstr ""

#: src/lqt_codecinfo.c:1638
#, c-format
msgid "Couldn't get codec info for %s from_module %s"
msgstr ""

#: src/stsdtable.c:304
#, c-format
msgid "Skipping unknown atom \"%4s\" inside audio stsd"
msgstr ""

#: src/moov.c:107
#, c-format
msgid "read_cmov: compression '%c%c%c%c' not zlib."
msgstr ""

#: src/charset.c:95 src/charset.c:108 src/charset.c:132
#, c-format
msgid "Cannot open iconv for conversion to %s from %s"
msgstr ""

#: src/charset.c:167
msgid "Invalid Multibyte sequence"
msgstr ""

#: src/charset.c:171
msgid "Incomplete Multibyte sequence"
msgstr ""

#: src/lqt_qtvr.c:51 src/lqt_qtvr.c:117
msgid "lqt_qtvr_add_node only single node movies supported."
msgstr ""

#: src/audio.c:270
msgid "Cannot encode samples: Stream format undefined"
msgstr ""

#: src/audio.c:495
msgid "Cannot decode samples: Stream format undefined"
msgstr ""

#: src/avi_riff.c:130
msgid "file->total_riffs >= MAX_RIFFS"
msgstr ""

#: src/lqt_color.c:205
#, c-format
msgid "Unknown colormodel (%d)\n"
msgstr ""

#: src/lqt_color.c:239
msgid "Input colorspace is neither RGB nor YUV, can't predict conversion price"
msgstr ""

#: src/lqt_color.c:246
msgid ""
"Output colorspace is neither RGB nor YUV, can't predict conversion price"
msgstr ""

#: src/udta.c:148
#, c-format
msgid ""
"Unknown character set for language code %d, will copy the string verbatim"
msgstr ""

#: src/lqt_quicktime.c:112
msgid "quicktime_make_streamable: no moov atom"
msgstr ""

#: src/lqt_quicktime.c:119
msgid "quicktime_make_streamable: no mdat atom"
msgstr ""

#: src/lqt_quicktime.c:148
#, c-format
msgid "quicktime_make_streamable: cannot open output file: %s"
msgstr ""

#: src/lqt_quicktime.c:169
#, c-format
msgid ""
"quicktime_make_streamable: moov size changed from %lld to %lld (Pos: %lld, "
"start: %lld)"
msgstr ""

#: src/lqt_quicktime.c:527
msgid "quicktime_set_framerate shouldn't be called in read mode."
msgstr ""

#: src/lqt_quicktime.c:704
msgid "quicktime_set_audio_position: track >= file->total_atracks\n"
msgstr ""

#: src/lqt_quicktime.c:925
#, c-format
msgid "lqt_set_cmodel: No track No. %d"
msgstr ""

#: src/lqt_quicktime.c:1732
msgid "read/write mode is not supported"
msgstr ""

#: src/lqt_quicktime.c:1760
msgid "Opening failed (unsupported filetype)"
msgstr ""

#: src/lqt_quicktime.c:1918
#, c-format
msgid "Setting parameter %s to %d"
msgstr ""

#: src/lqt_quicktime.c:1925
#, c-format
msgid "Setting parameter %s to %f"
msgstr ""

#: src/lqt_quicktime.c:1933
#, c-format
msgid "Setting parameter %s to %s"
msgstr ""

#: src/lqt_codecs.c:38
msgid "quicktime_delete_vcodec_stub called"
msgstr ""

#: src/lqt_codecs.c:45
msgid "quicktime_delete_acodec_stub called"
msgstr ""

#: src/lqt_codecs.c:54
msgid "quicktime_decode_video_stub called"
msgstr ""

#: src/lqt_codecs.c:63
msgid "quicktime_encode_video_stub called"
msgstr ""

#: src/lqt_codecs.c:73
msgid "quicktime_decode_audio_stub called"
msgstr ""

#: src/lqt_codecs.c:83
msgid "quicktime_encode_audio_stub called"
msgstr ""

#: src/lqt_codecs.c:135
#, c-format
msgid "Could not find video %s for fourcc %4s"
msgstr ""

#: src/lqt_codecs.c:145 src/lqt_codecs.c:242
#, c-format
msgid "Loading module %s"
msgstr ""

#: src/lqt_codecs.c:152 src/lqt_codecs.c:249
#, c-format
msgid "Loading module %s failed: %s"
msgstr ""

#: src/lqt_codecs.c:178
#, c-format
msgid "Module %s contains no function get_video_codec"
msgstr ""

#: src/lqt_codecs.c:232
#, c-format
msgid "Could not find audio %s for fourcc %4s"
msgstr ""

#: src/lqt_codecs.c:272
#, c-format
msgid "Module %s contains no function get_audio_codec"
msgstr ""

#: src/lqt_codecs.c:538
msgid ""
"Audio codec and container are not known to be compatible. File might be "
"playable by libquicktime only."
msgstr ""

#: src/lqt_codecs.c:544
msgid ""
"Video codec and container are not known to be compatible. File might be "
"playable by libquicktime only."
msgstr ""

#: src/stsd.c:74
msgid "quicktime_stsd_init_qtvr invalid track type supplied."
msgstr ""

#: src/lqt_codecfile.c:148
msgid "no system-wide codec file. Looking in user's home."
msgstr ""

#: src/lqt_codecfile.c:954
#, c-format
msgid "%s could not be written, deleting imcomplete file"
msgstr ""

#: src/gmhd_text.c:75
msgid "More than 36 bytes in the gmhd text atom\n"
msgstr ""

#: src/lqt_bufalloc.c:114
#, c-format
msgid "malloc of %d bytes failed"
msgstr ""

#: src/lqt_bufalloc.c:120
#, c-format
msgid "could not allocate %d bytes aligned on a %d byte boundary"
msgstr ""

#: utils/qtinfo.c:49
#, c-format
msgid "Couldn't open %s\n"
msgstr ""

#: utils/qtinfo.c:64
#, c-format
msgid "Usage: %s filename...\n"
msgstr ""

#: utils/common.c:48
#, c-format
msgid "Type: %s\n"
msgstr ""

#: utils/common.c:54
#, c-format
msgid "    copyright: %s\n"
msgstr ""

#: utils/common.c:57
#, c-format
msgid "    name:      %s\n"
msgstr ""

#: utils/common.c:60
#, c-format
msgid "    info:      %s\n"
msgstr ""

#: utils/common.c:64
#, c-format
msgid "    author:    %s\n"
msgstr ""

#: utils/common.c:68
#, c-format
msgid "    artist:    %s\n"
msgstr ""

#: utils/common.c:72
#, c-format
msgid "    album:     %s\n"
msgstr ""

#: utils/common.c:76
#, c-format
msgid "    genre:     %s\n"
msgstr ""

#: utils/common.c:80
#, c-format
msgid "    track:     %s\n"
msgstr ""

#: utils/common.c:84
#, c-format
msgid "    comment:   %s\n"
msgstr ""

#: utils/common.c:88
#, c-format
msgid "  %d audio tracks.\n"
msgstr ""

#: utils/common.c:92
#, c-format
msgid "    %d channels, %d bits, sample rate %ld, length %ld samples, "
msgstr ""

#: utils/common.c:99
#, c-format
msgid "wav_id 0x%02x.\n"
msgstr ""

#: utils/common.c:103
#, c-format
msgid "compressor %s.\n"
msgstr ""

#: utils/common.c:105
#, c-format
msgid "    Sample format: %s.\n"
msgstr ""

#: utils/common.c:107
#, c-format
msgid "    Channel setup: "
msgstr ""

#: utils/common.c:114
#, c-format
msgid ", "
msgstr ""

#: utils/common.c:116
#, c-format
msgid "\n"
msgstr ""

#: utils/common.c:119 utils/common.c:124
#, c-format
msgid "Not available\n"
msgstr ""

#: utils/common.c:120
#, c-format
msgid "    Language: "
msgstr ""

#: utils/common.c:126 utils/common.c:157
#, c-format
msgid "    supported.\n"
msgstr ""

#: utils/common.c:128 utils/common.c:159
#, c-format
msgid "    not supported.\n"
msgstr ""

#: utils/common.c:132
#, c-format
msgid "  %d video tracks.\n"
msgstr ""

#: utils/common.c:137
#, c-format
msgid ""
"    %dx%d, depth %d\n"
"    rate %f [%d:%d] %s\n"
"    length %ld frames\n"
"    compressor %s.\n"
msgstr ""

#: utils/common.c:143
msgid "constant"
msgstr ""

#: utils/common.c:143
msgid "not constant"
msgstr ""

#: utils/common.c:147
#, c-format
msgid "    Native colormodel:  %s\n"
msgstr ""

#: utils/common.c:149
#, c-format
msgid "    Interlace mode:     %s\n"
msgstr ""

#: utils/common.c:152
#, c-format
msgid "    Chroma placement: %s\n"
msgstr ""

#: utils/common.c:154
#, c-format
msgid "    Pixel aspect ratio: %d:%d\n"
msgstr ""

#: utils/common.c:163
#, c-format
msgid "  %d text tracks.\n"
msgstr ""

#: utils/common.c:166
#, c-format
msgid "    timescale: %d, length: %lld, language: "
msgstr ""

#: utils/common.c:171
#, c-format
msgid "Not available, "
msgstr ""

#: utils/common.c:172
#, c-format
msgid "type: %s\n"
msgstr ""

#: utils/common.c:172
msgid "Chapters"
msgstr ""

#: utils/common.c:172
msgid "Subtitles"
msgstr ""

#: utils/lqtplay.c:245
#, c-format
msgid "can't handle visuals != TrueColor, sorry\n"
msgstr ""

#: utils/lqtplay.c:288
#, c-format
msgid "INFO: Xvideo port %ld: is busy, skipping\n"
msgstr ""

#: utils/lqtplay.c:302
#, c-format
msgid "INFO: Xvideo port %d: 0x%x (%c%c%c%c) %s"
msgstr ""

#: utils/lqtplay.c:396 utils/lqtplay.c:460
#, c-format
msgid "out of memory\n"
msgstr ""

#: utils/lqtplay.c:554
#, c-format
msgid "WARNING: gl: can't get visual (rgb,db)\n"
msgstr ""

#: utils/lqtplay.c:559
#, c-format
msgid "INFO: gl: DRI=%s\n"
msgstr ""

#: utils/lqtplay.c:560
msgid "Yes"
msgstr ""

#: utils/lqtplay.c:560
msgid "No"
msgstr ""

#: utils/lqtplay.c:562
#, c-format
msgid "WARNING: gl: Direct rendering missing\n"
msgstr ""

#: utils/lqtplay.c:568
#, c-format
msgid "INFO: gl: texture max size: %d\n"
msgstr ""

#: utils/lqtplay.c:571
#, c-format
msgid "WARNING: gl: Maximum texture size too small (got %dx%d, needed %dx%d)\n"
msgstr ""

#: utils/lqtplay.c:583
#, c-format
msgid "INFO: gl: frame=%dx%d, texture=%dx%d\n"
msgstr ""

#: utils/lqtplay.c:646
#, c-format
msgid "Error opening PCM device %s\n"
msgstr ""

#: utils/lqtplay.c:654
#, c-format
msgid "Can not configure this PCM device. (%s)\n"
msgstr ""

#: utils/lqtplay.c:659
#, c-format
msgid "Error setting access. (%s)\n"
msgstr ""

#: utils/lqtplay.c:668
#, c-format
msgid "Error setting format.(%s)\n"
msgstr ""

#: utils/lqtplay.c:674
#, c-format
msgid "Error setting channels. %i (%s)\n"
msgstr ""

#: utils/lqtplay.c:685 utils/lqtplay.c:691
#, c-format
msgid "Error setting sample rate (%s)\n"
msgstr ""

#: utils/lqtplay.c:695
#, c-format
msgid ""
"WARNING: Using %i Hz instead of requested rate %i Hz\n"
" "
msgstr ""

#: utils/lqtplay.c:706
#, c-format
msgid "Error setting periods.(%s)\n"
msgstr ""

#: utils/lqtplay.c:712
#, c-format
msgid "Unable to get buffer size for playback: %s\n"
msgstr ""

#: utils/lqtplay.c:719
#, c-format
msgid "Unable to get period size for playback: %s\n"
msgstr ""

#: utils/lqtplay.c:726
#, c-format
msgid "Error setting HW params.(%s)\n"
msgstr ""

#: utils/lqtplay.c:742
#, c-format
msgid "Error in pcm_prepare.(%s)\n"
msgstr ""

#: utils/lqtplay.c:777
#, c-format
msgid "ERROR: can't set sound format\n"
msgstr ""

#: utils/lqtplay.c:782
#, c-format
msgid "ERROR: can't set sound channels\n"
msgstr ""

#: utils/lqtplay.c:789
#, c-format
msgid "WARNING: sample rate mismatch (need %d, got %d)\n"
msgstr ""

#: utils/lqtplay.c:806
#, c-format
msgid "WARNING: open %s: %s\n"
msgstr ""

#: utils/lqtplay.c:869
#, c-format
msgid "ERROR: can't open file: %s\n"
msgstr ""

#: utils/lqtplay.c:874
#, c-format
msgid "INFO: playing %s\n"
msgstr ""

#: utils/lqtplay.c:881
#, c-format
msgid "'%s' is no QTVR file or an unsupported variant.\n"
msgstr ""

#: utils/lqtplay.c:889
#, c-format
msgid "startpos :%i\n"
msgstr ""

#: utils/lqtplay.c:890
#, c-format
msgid "movietype :%i\n"
msgstr ""

#: utils/lqtplay.c:891
#, c-format
msgid "panning :%f %f\n"
msgstr ""

#: utils/lqtplay.c:892
#, c-format
msgid "rows :%i\n"
msgstr ""

#: utils/lqtplay.c:893
#, c-format
msgid "colums :%i\n"
msgstr ""

#: utils/lqtplay.c:894
#, c-format
msgid "disp width :%i\n"
msgstr ""

#: utils/lqtplay.c:895
#, c-format
msgid "disp height :%i\n"
msgstr ""

#: utils/lqtplay.c:896
#, c-format
msgid "width :%i\n"
msgstr ""

#: utils/lqtplay.c:897
#, c-format
msgid "height :%i\n"
msgstr ""

#: utils/lqtplay.c:898
#, c-format
msgid "depth :%i\n"
msgstr ""

#: utils/lqtplay.c:909
#, c-format
msgid "oh_width verz :%i\n"
msgstr ""

#: utils/lqtplay.c:915
#, c-format
msgid "WARNING: no video stream\n"
msgstr ""

#: utils/lqtplay.c:917
#, c-format
msgid "WARNING: unsupported video codec\n"
msgstr ""

#: utils/lqtplay.c:923
#, c-format
msgid "Timescale: %d\n"
msgstr ""

#: utils/lqtplay.c:927
#, c-format
msgid "WARNING: no audio stream\n"
msgstr ""

#: utils/lqtplay.c:929
#, c-format
msgid "WARNING: unsupported audio codec\n"
msgstr ""

#: utils/lqtplay.c:946
#, c-format
msgid "ERROR: no playable stream found\n"
msgstr ""

#: utils/lqtplay.c:986 utils/lqtplay.c:989
#, c-format
msgid "INFO: using BC_RGB888 + %s\n"
msgstr ""

#: utils/lqtplay.c:987
msgid "OpenGL"
msgstr ""

#: utils/lqtplay.c:987 utils/lqtplay.c:990
msgid "plain X11"
msgstr ""

#: utils/lqtplay.c:1002
#, c-format
msgid "INFO: using BC_YUV422 + Xvideo extention\n"
msgstr ""

#: utils/lqtplay.c:1015
#, c-format
msgid "INFO: using BC_YUV420P + Xvideo extention (YV12)\n"
msgstr ""

#: utils/lqtplay.c:1025
#, c-format
msgid "INFO: using BC_YUV420P + Xvideo extention (I420)\n"
msgstr ""

#: utils/lqtplay.c:1036 utils/lqtplay.c:1239
#, c-format
msgid "ERROR: internal error at %s:%d\n"
msgstr ""

#: utils/lqtplay.c:1189
#, c-format
msgid "dropped %d frame(s)\r"
msgstr ""

#: utils/lqtplay.c:1321
#, c-format
msgid "Audio track finished (got %d samples, wanted %d)\n"
msgstr ""

#: utils/lqtplay.c:1346
#, c-format
msgid "Warning: buffer underrun\n"
msgstr ""

#: utils/lqtplay.c:1349
#, c-format
msgid "Warning: %s\n"
msgstr ""

#: utils/lqtplay.c:1384
#, c-format
msgid "write dsp: Huh? no data written?\n"
msgstr ""

#: utils/lqtplay.c:1446
#, c-format
msgid ""
"\n"
"Very simple quicktime movie player for X11.  Just playes\n"
"the movie and nothing else.  No fancy gui, no controls.\n"
"\n"
"You can quit with 'Q' and 'ESC' keys.\n"
"\n"
"usage: %s [ options ] <file>\n"
"options:\n"
"  -noxv   don't use the Xvideo extention\n"
"  -nogl   don't use OpenGL\n"
"  -noalsa don't use Alsa\n"
"\n"
msgstr ""

#: utils/lqtplay.c:1505
#, c-format
msgid "INFO: window size is %dx%d\n"
msgstr ""

#: utils/lqtplay.c:1699
#, c-format
msgid "Stream colormodel %s, "
msgstr ""

#: utils/lqtplay.c:1702
#, c-format
msgid "using %s\n"
msgstr ""

#: utils/lqtplay.c:1804
#, c-format
msgid "Decoded %lld samples\n"
msgstr ""

#: utils/gtk/libquicktime_config.c:84
msgid "Audio Codecs"
msgstr ""

#: utils/gtk/libquicktime_config.c:92
msgid "Video Codecs"
msgstr ""

#: utils/gtk/lqt_gtk.c:697
msgid "Installed codecs"
msgstr ""

#: utils/gtk/lqt_gtk.c:723
msgid "Up"
msgstr ""

#: utils/gtk/lqt_gtk.c:724
msgid "Down"
msgstr ""

#: utils/gtk/lqt_gtk.c:726 utils/gtk/lqt_gtk.c:1258
msgid "Parameters..."
msgstr ""

#: utils/gtk/lqt_gtk.c:727 utils/gtk/lqt_gtk.c:1257
msgid "Info..."
msgstr ""

#: utils/gtk/lqt_gtk.c:868
msgid "Encoding Options"
msgstr ""

#: utils/gtk/lqt_gtk.c:877
msgid "Decoding Options"
msgstr ""

#: utils/gtk/lqt_gtk.c:893
msgid "Restore defaults"
msgstr ""

#: utils/gtk/lqt_gtk.c:1017
msgid "Internal name: "
msgstr ""

#: utils/gtk/lqt_gtk.c:1026
msgid "Module: "
msgstr ""

#: utils/gtk/lqt_gtk.c:1100
msgid "Fourccs"
msgstr ""

#: utils/gtk/lqt_gtk.c:1108
msgid "WAV Id(s)"
msgstr ""

#: utils/lqt_transcode.c:91
#, c-format
msgid "Supported formats\n"
msgstr ""

#: utils/lqt_transcode.c:94
#, c-format
msgid "%8s: %s (default codecs: %s/%s)\n"
msgstr ""

#: utils/lqt_transcode.c:142
#, c-format
msgid ""
"Usage: lqt_transcode [[-avi]|[-f <format>]] [-floataudio] [-qtvr <obj|pano>] "
"[-qtvr_columns <columns>] [-qtvr_rows <rows>] [-ac <audio_codec>] [-vc "
"<video_codec>] <in_file> <out_file>\n"
msgstr ""

#: utils/lqt_transcode.c:143
#, c-format
msgid ""
"       Transcode <in_file> to <out_file> using <audio_codec> and "
"<video_codec>\n"
"\n"
msgstr ""

#: utils/lqt_transcode.c:144
#, c-format
msgid "       lqt_transcode -lv\n"
msgstr ""

#: utils/lqt_transcode.c:145
#, c-format
msgid ""
"       List video encoders\n"
"\n"
msgstr ""

#: utils/lqt_transcode.c:146
#, c-format
msgid "       lqt_transcode -la\n"
msgstr ""

#: utils/lqt_transcode.c:147
#, c-format
msgid "       List audio encoders\n"
msgstr ""

#: utils/lqt_transcode.c:148
#, c-format
msgid "       lqt_transcode -lf\n"
msgstr ""

#: utils/lqt_transcode.c:149
#, c-format
msgid "       List output formats\n"
msgstr ""

#: utils/lqt_transcode.c:221
#, c-format
msgid "Cannot open input file %s\n"
msgstr ""

#: utils/lqt_transcode.c:232
#, c-format
msgid "Need a file extension when autoguessing output format\n"
msgstr ""

#: utils/lqt_transcode.c:248
#, c-format
msgid ""
"Cannot detect output format. Specify a valid extension or use -f <format>\n"
msgstr ""

#: utils/lqt_transcode.c:268
#, c-format
msgid "Cannot open output file %s\n"
msgstr ""

#: utils/lqt_transcode.c:291
#, c-format
msgid "Unsupported video cocec %s, try -lv\n"
msgstr ""

#: utils/lqt_transcode.c:343
#, c-format
msgid "Unsupported audio codec %s, try -la\n"
msgstr ""

#: utils/lqt_transcode.c:562
#, c-format
msgid "Unsupported format %s, try -lf"
msgstr ""

#: utils/lqt_transcode.c:581
#, c-format
msgid "%6.2f%% Completed"
msgstr ""

#: plugins/x264/x264.c:504
msgid "Invalid log level from x264"
msgstr ""

#: plugins/x264/x264.c:606
msgid "Choosing interlaced encoding"
msgstr ""

#: plugins/x264/x264.c:642
msgid "x264_encoder_open failed"
msgstr ""

#: plugins/x264/x264.c:888
#, c-format
msgid "Unrecognized parameter %s"
msgstr ""

#: plugins/x264/lqt_x264.c:37
msgid "Frame-type options"
msgstr ""

#: plugins/x264/lqt_x264.c:42
msgid "Maximum GOP size"
msgstr ""

#: plugins/x264/lqt_x264.c:48
msgid "Minimum GOP size"
msgstr ""

#: plugins/x264/lqt_x264.c:54
msgid "Scenecut threshold"
msgstr ""

#: plugins/x264/lqt_x264.c:57
msgid "How aggressively to insert extra I-frames"
msgstr ""

#: plugins/x264/lqt_x264.c:61
msgid "B-Frames"
msgstr ""

#: plugins/x264/lqt_x264.c:66
msgid "Number of B-frames between I and P"
msgstr ""

#: plugins/x264/lqt_x264.c:70
msgid "Adaptive B-frame decision"
msgstr ""

#: plugins/x264/lqt_x264.c:78
msgid "B-frame bias"
msgstr ""

#: plugins/x264/lqt_x264.c:83
msgid "Influences how often B-frames are used"
msgstr ""

#: plugins/x264/lqt_x264.c:87
msgid "B-frame pyramid"
msgstr ""

#: plugins/x264/lqt_x264.c:92
msgid "Keep some B-frames as references"
msgstr ""

#: plugins/x264/lqt_x264.c:96
msgid "Ratecontrol"
msgstr ""

#: plugins/x264/lqt_x264.c:101
msgid "Ratecontrol method"
msgstr ""

#: plugins/x264/lqt_x264.c:104
msgid "Constant quality"
msgstr ""

#: plugins/x264/lqt_x264.c:105
msgid "Average bitrate"
msgstr ""

#: plugins/x264/lqt_x264.c:106
msgid "CRF based VBR"
msgstr ""

#: plugins/x264/lqt_x264.c:108
msgid ""
"Ratecontrol method:\n"
"Constant quality: Specify a quantizer parameter below\n"
"Average bitrate: Specify a bitrate below\n"
"CRF based VBR: Specify a rate factor below\n"
"Selecting 2-pass encoding will force Average bitrate."
msgstr ""

#: plugins/x264/lqt_x264.c:116
msgid "Bitrate"
msgstr ""

#: plugins/x264/lqt_x264.c:119
msgid "Bitrate in kbit/s. 0 means VBR (recommended)"
msgstr ""

#: plugins/x264/lqt_x264.c:124 plugins/x264/lqt_x264.c:136
msgid "Nominal Quantizer parameter"
msgstr ""

#: plugins/x264/lqt_x264.c:129 plugins/x264/lqt_x264.c:141
msgid ""
"This selects the nominal quantizer to use (1 to 51). Lower values result in "
"better fidelity, but higher bitrates. 26 is a good default value. 0 means "
"lossless."
msgstr ""

#: plugins/x264/lqt_x264.c:148
msgid "Quantizer parameter"
msgstr ""

#: plugins/x264/lqt_x264.c:153
msgid ""
"This selects the quantizer to use (1 to 51). Lower values result in better "
"fidelity, but higher bitrates. 26 is a good default value. 0 means lossless."
msgstr ""

#: plugins/x264/lqt_x264.c:159 plugins/x264/lqt_x264.c:164
msgid "Minimum quantizer parameter"
msgstr ""

#: plugins/x264/lqt_x264.c:168 plugins/x264/lqt_x264.c:173
msgid "Maximum quantizer parameter"
msgstr ""

#: plugins/x264/lqt_x264.c:177
msgid "Maximum QP step"
msgstr ""

#: plugins/x264/lqt_x264.c:182
msgid "Maximum quantizer step"
msgstr ""

#: plugins/x264/lqt_x264.c:186
msgid "Bitrate tolerance"
msgstr ""

#: plugins/x264/lqt_x264.c:192
msgid "Allowed variance of average bitrate"
msgstr ""

#: plugins/x264/lqt_x264.c:196
msgid "Maximum local bitrate"
msgstr ""

#: plugins/x264/lqt_x264.c:199
msgid "Sets a maximum local bitrate in kbits/s."
msgstr ""

#: plugins/x264/lqt_x264.c:203
msgid "VBV Buffer size"
msgstr ""

#: plugins/x264/lqt_x264.c:206
msgid "Averaging period for the maximum local bitrate. Measured in kbits."
msgstr ""

#: plugins/x264/lqt_x264.c:211
msgid "Initial VBV buffer occupancy"
msgstr ""

#: plugins/x264/lqt_x264.c:217
msgid "Sets the initial VBV buffer occupancy as a fraction of the buffer size."
msgstr ""

#: plugins/x264/lqt_x264.c:222
msgid "QP factor between I and P"
msgstr ""

#: plugins/x264/lqt_x264.c:229
msgid "QP factor between P and B"
msgstr ""

#: plugins/x264/lqt_x264.c:236
msgid "Partitions"
msgstr ""

#: plugins/x264/lqt_x264.c:241
msgid "8x8 transform"
msgstr ""

#: plugins/x264/lqt_x264.c:249
msgid "8x16, 16x8 and 8x8 P-frame search"
msgstr ""

#: plugins/x264/lqt_x264.c:257
msgid "8x16, 16x8 and 8x8 B-frame search"
msgstr ""

#: plugins/x264/lqt_x264.c:265
msgid "4x8, 8x4 and 4x4 P-frame search"
msgstr ""

#: plugins/x264/lqt_x264.c:273
msgid "8x8 Intra search"
msgstr ""

#: plugins/x264/lqt_x264.c:278
msgid "8x8 Intra search requires 8x8 transform"
msgstr ""

#: plugins/x264/lqt_x264.c:282
msgid "4x4 Intra search"
msgstr ""

#: plugins/x264/lqt_x264.c:290 plugins/ffmpeg/lqt_ffmpeg.c:112
msgid "Motion estimation"
msgstr ""

#: plugins/x264/lqt_x264.c:295
msgid "Method"
msgstr ""

#: plugins/x264/lqt_x264.c:298
msgid "Diamond search"
msgstr ""

#: plugins/x264/lqt_x264.c:299
msgid "Hexagonal search"
msgstr ""

#: plugins/x264/lqt_x264.c:300
msgid "Uneven Multi-Hexagon"
msgstr ""

#: plugins/x264/lqt_x264.c:301
msgid "Exhaustive search"
msgstr ""

#: plugins/x264/lqt_x264.c:303
msgid ""
"Motion estimation method\n"
"Diamond search: fastest\n"
"Hexagonal search: default setting\n"
"Uneven Multi-Hexagon: better but slower\n"
"Exhaustive search: extremely slow, primarily for testing"
msgstr ""

#: plugins/x264/lqt_x264.c:311
msgid "Partition decision"
msgstr ""

#: plugins/x264/lqt_x264.c:316
msgid ""
"Subpixel motion estimation and partition decision quality: 1=fast, 7=best."
msgstr ""

#: plugins/x264/lqt_x264.c:321
msgid "RD based mode decision for B-frames"
msgstr ""

#: plugins/x264/lqt_x264.c:326
msgid "RD based mode decision for B-frames. Requires partition decision 6."
msgstr ""

#: plugins/x264/lqt_x264.c:331
msgid "Search range"
msgstr ""

#: plugins/x264/lqt_x264.c:334
msgid ""
"Maximum distance to search for motion estimation, measured from predicted "
"position(s). Default of 16 is good for most footage, high motion sequences "
"may benefit from settings between 24-32."
msgstr ""

#: plugins/x264/lqt_x264.c:341
msgid "Max Ref. frames"
msgstr ""

#: plugins/x264/lqt_x264.c:346
msgid ""
"This is effective in Anime, but seems to make little difference in live-"
"action source material. Some decoders are unable to deal with large frameref "
"values."
msgstr ""

#: plugins/x264/lqt_x264.c:352
msgid "Chroma motion estimation"
msgstr ""

#: plugins/x264/lqt_x264.c:360
msgid "Mixed references"
msgstr ""

#: plugins/x264/lqt_x264.c:365
msgid "Allow each MB partition in P-frames to have it's own reference number"
msgstr ""

#: plugins/x264/lqt_x264.c:370
msgid "Bidirectional ME"
msgstr ""

#: plugins/x264/lqt_x264.c:375
msgid "Jointly optimize both MVs in B-frames"
msgstr ""

#: plugins/x264/lqt_x264.c:379
msgid "Weighted biprediction"
msgstr ""

#: plugins/x264/lqt_x264.c:384
msgid "Implicit weighting for B-frames"
msgstr ""

#: plugins/x264/lqt_x264.c:388
msgid "Direct MV prediction mode"
msgstr ""

#: plugins/x264/lqt_x264.c:391
msgid "None"
msgstr ""

#: plugins/x264/lqt_x264.c:392
msgid "Spatial"
msgstr ""

#: plugins/x264/lqt_x264.c:393
msgid "Temporal"
msgstr ""

#: plugins/x264/lqt_x264.c:394
msgid "Auto"
msgstr ""

#: plugins/x264/lqt_x264.c:399 plugins/ffmpeg/lqt_ffmpeg.c:163
msgid "Misc"
msgstr ""

#: plugins/x264/lqt_x264.c:404
msgid "Deblocking filter"
msgstr ""

#: plugins/x264/lqt_x264.c:409
msgid "Use deblocking loop filter (increases quality)."
msgstr ""

#: plugins/x264/lqt_x264.c:413
msgid "Deblocking filter strength"
msgstr ""

#: plugins/x264/lqt_x264.c:418
msgid "Loop filter AlphaC0 parameter"
msgstr ""

#: plugins/x264/lqt_x264.c:422
msgid "Deblocking filter threshold"
msgstr ""

#: plugins/x264/lqt_x264.c:427
msgid "Loop filter Beta parameter"
msgstr ""

#: plugins/x264/lqt_x264.c:431
msgid "Enable CABAC"
msgstr ""

#: plugins/x264/lqt_x264.c:436
msgid ""
"Enable CABAC (Context-Adaptive Binary Arithmetic Coding). Slightly slows "
"down encoding and decoding, but should save 10-15% bitrate."
msgstr ""

#: plugins/x264/lqt_x264.c:442
msgid "Trellis RD quantization"
msgstr ""

#: plugins/x264/lqt_x264.c:445
msgid "Disabled"
msgstr ""

#: plugins/x264/lqt_x264.c:446
msgid "Enabled (final)"
msgstr ""

#: plugins/x264/lqt_x264.c:447
msgid "Enabled (always)"
msgstr ""

#: plugins/x264/lqt_x264.c:449
msgid ""
"Trellis RD quantization. Requires CABAC. Can be enabled either for the final "
"encode of a MB or for all mode desisions"
msgstr ""

#: plugins/x264/lqt_x264.c:455 plugins/ffmpeg/params.h:742
msgid "Noise reduction"
msgstr ""

#: plugins/x264/lqt_x264.c:467
msgid "H.264 (MPEG4 AVC) encoder"
msgstr ""

#: plugins/x264/lqt_x264.c:468
msgid "Based on the x264 library"
msgstr ""

#: plugins/faac/lqt_faac.c:37
msgid "Bitrate (kbps, 0 = VBR)"
msgstr ""

#: plugins/faac/lqt_faac.c:43
msgid "VBR Quality"
msgstr ""

#: plugins/faac/lqt_faac.c:51
msgid "Object type"
msgstr ""

#: plugins/faac/lqt_faac.c:54
msgid "Low"
msgstr ""

#: plugins/faac/lqt_faac.c:55
msgid "Main"
msgstr ""

#: plugins/faac/lqt_faac.c:56
msgid "SSR"
msgstr ""

#: plugins/faac/lqt_faac.c:57
msgid "LTP"
msgstr ""

#: plugins/faac/lqt_faac.c:66
msgid "MPEG-2/4 AAC encoder"
msgstr ""

#: plugins/faac/lqt_faac.c:67
msgid "MPEG-2/4 AAC encoder (faac based)"
msgstr ""

#: plugins/faac/faac.c:162
msgid "Setting encode parameters failed, check settings"
msgstr ""

#: plugins/rtjpeg/RTjpeg.c:2425 plugins/rtjpeg/RTjpeg.c:2461
msgid "RTjpeg: Could not allocate memory"
msgstr ""

#: plugins/rtjpeg/lqt_rtjpeg.c:34
msgid "Quality setting"
msgstr ""

#: plugins/rtjpeg/lqt_rtjpeg.c:42
msgid "Key frame interval"
msgstr ""

#: plugins/rtjpeg/lqt_rtjpeg.c:48
msgid "Luma quantiser"
msgstr ""

#: plugins/rtjpeg/lqt_rtjpeg.c:54
msgid "Chroma quantiser"
msgstr ""

#: plugins/rtjpeg/lqt_rtjpeg.c:63
msgid "RTjpeg"
msgstr ""

#: plugins/rtjpeg/lqt_rtjpeg.c:64
msgid "RTjpeg - real time lossy codec."
msgstr ""

#: plugins/lame/lame_codec.c:348
msgid "Ouch: lame created non mp3 data\n"
msgstr ""

#: plugins/lame/lame_codec.c:501
#, c-format
msgid "lame_init_params returned %d\n"
msgstr ""

#: plugins/lame/lqt_lame.c:37
msgid "Bitrate mode"
msgstr ""

#: plugins/lame/lqt_lame.c:40
msgid "CBR"
msgstr ""

#: plugins/lame/lqt_lame.c:40
msgid "ABR"
msgstr ""

#: plugins/lame/lqt_lame.c:40
msgid "VBR"
msgstr ""

#: plugins/lame/lqt_lame.c:41
msgid ""
"CBR: Constant bitrate\n"
"VBR: Variable bitrate\n"
"ABR: Average bitrate"
msgstr ""

#: plugins/lame/lqt_lame.c:46
msgid "Nominal Bitrate (ABR/CBR)"
msgstr ""

#: plugins/lame/lqt_lame.c:49
msgid "Bitrate in bits per second. For CBR, this must be a valid MP3 bitrate"
msgstr ""

#: plugins/lame/lqt_lame.c:54
msgid "Minimum Bitrate (ABR)"
msgstr ""

#: plugins/lame/lqt_lame.c:57
msgid ""
"Minimum ABR bitrate in bits per second. This must be a valid MP3 bitrate"
msgstr ""

#: plugins/lame/lqt_lame.c:62
msgid "Maximum Bitrate (ABR)"
msgstr ""

#: plugins/lame/lqt_lame.c:65
msgid ""
"Maximum ABR bitrate in bits per second. This must be a valid MP3 bitrate"
msgstr ""

#: plugins/lame/lqt_lame.c:70
msgid "Quality (0 = best)"
msgstr ""

#: plugins/lame/lqt_lame.c:75
msgid ""
"0: Slowest encoding, best quality\n"
"9: Fastest encoding, worst quality"
msgstr ""

#: plugins/lame/lqt_lame.c:80
msgid "VBR Quality (0 = best)"
msgstr ""

#: plugins/lame/lqt_lame.c:85
msgid "VBR Quality level. 0: best, 9: worst"
msgstr ""

#: plugins/lame/lqt_lame.c:93
msgid "Lame mp3 encoder"
msgstr ""

#: plugins/lame/lqt_lame.c:94
msgid "Lame mp3 encoder (see http://www.mp3dev.org)"
msgstr ""

#: plugins/audiocodec/pcm.c:778
msgid "EOF at the beginning of track"
msgstr ""

#: plugins/audiocodec/pcm.c:821 plugins/audiocodec/ima4.c:332
msgid "Cannot skip backwards"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:33
msgid "Little endian"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:43
msgid "Format"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:46
msgid "Integer (16 bit)"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:47
msgid "Integer (24 bit)"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:48
msgid "Integer (32 bit)"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:49
msgid "Float (32 bit)"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:50
msgid "Float (64 bit)"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:109
msgid "ima4"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:110
msgid ""
"The IMA4 compressor reduces 16 bit audio data to 1/4 size, with very good "
"quality"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:124
msgid "Raw 8 bit audio"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:125
msgid "Don't use this for anything better than telephone quality"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:138
msgid "Twos"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:139
msgid "Twos is the preferred encoding for uncompressed audio"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:152
#: plugins/audiocodec/lqt_audiocodec.c:153
msgid "24 bit PCM"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:165
#: plugins/audiocodec/lqt_audiocodec.c:166
msgid "32 bit PCM"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:181
#: plugins/audiocodec/lqt_audiocodec.c:182
msgid "32 bit float"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:194
#: plugins/audiocodec/lqt_audiocodec.c:195
msgid "64 bit float"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:207
#: plugins/audiocodec/lqt_audiocodec.c:208
msgid "Ulaw"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:236
msgid "Sowt"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:237
msgid "8/16/24 bit PCM Little endian"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:250
msgid "Linear PCM (QT 7)"
msgstr ""

#: plugins/audiocodec/lqt_audiocodec.c:251
msgid "Linear PCM encoder"
msgstr ""

#: plugins/dv/lqt_dv.c:44
msgid "Decoding Quality"
msgstr ""

#: plugins/dv/lqt_dv.c:52 plugins/dv/lqt_dv.c:99
msgid "Clamp Luma Values"
msgstr ""

#: plugins/dv/lqt_dv.c:60 plugins/dv/lqt_dv.c:107
msgid "Clamp Chroma Values"
msgstr ""

#: plugins/dv/lqt_dv.c:68 plugins/dv/lqt_dv.c:115
msgid "Compensate for 7.5IRE NTSC setup"
msgstr ""

#: plugins/dv/lqt_dv.c:83
msgid "Is Anamorphic 16x9"
msgstr ""

#: plugins/dv/lqt_dv.c:91
msgid "VLC Encode Passes"
msgstr ""

#: plugins/dv/lqt_dv.c:127
msgid "Quasar DV Codec (PAL-Mode)"
msgstr ""

#: plugins/dv/lqt_dv.c:128 plugins/dv/lqt_dv.c:140
msgid ""
"Codec for digital video camaras. Based on libdv (http://libdv.sourceforge."
"net/)."
msgstr ""

#: plugins/dv/lqt_dv.c:139
msgid "Quasar DV Codec (NTSC-Mode)"
msgstr ""

#: plugins/mjpeg/lqt_mjpeg.c:43
msgid "Quality"
msgstr ""

#: plugins/mjpeg/lqt_mjpeg.c:51
msgid "Use float"
msgstr ""

#: plugins/mjpeg/lqt_mjpeg.c:64
msgid "JPEG photo"
msgstr ""

#: plugins/mjpeg/lqt_mjpeg.c:65
msgid "This format writes a seperate JPEG photo for every frame in YUV 4:2:0"
msgstr ""

#: plugins/mjpeg/lqt_mjpeg.c:79
msgid "Motion Jpeg A"
msgstr ""

#: plugins/mjpeg/lqt_mjpeg.c:80
msgid "MJPA stores each frame as two JPEGs interlaced and in YUV 4:2:2"
msgstr ""

#: plugins/mjpeg/jpeg.c:180
msgid ""
"Encoding progressive video as interlaced. Motion JPEG-A is not suitable for "
"progressive video."
msgstr ""

#: plugins/mjpeg/libmjpeg.c:539
msgid "add_huff_table failed badly.\n"
msgstr ""

#: plugins/videocodec/raw.c:263 plugins/videocodec/raw.c:272
#: plugins/videocodec/raw.c:281
msgid "Palette missing or too small"
msgstr ""

#: plugins/videocodec/raw.c:290
msgid "Palette missing or too small\n"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:65
msgid "Option 1"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:66
msgid "Option 2"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:67
msgid "Option 3"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:75
msgid "String Test"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:83
msgid "Stringlist test"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:98
msgid "RGB uncompressed"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:99
msgid "RGB uncompressed."
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:116
#: plugins/videocodec/lqt_videocodec.c:117
msgid "RGBA uncompressed"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:135
#: plugins/videocodec/lqt_videocodec.c:136
msgid "10 bit packed YUV 4:2:2 (v210)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:148
#: plugins/videocodec/lqt_videocodec.c:149
msgid "8 bit planar YUV 4:4:4 (v308)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:161
#: plugins/videocodec/lqt_videocodec.c:162
msgid "8 bit Planar YUVA 4:4:4:4 (v408)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:174
#: plugins/videocodec/lqt_videocodec.c:175
msgid "10 bit Packed YUV 4:4:4 (v410)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:187
#: plugins/videocodec/lqt_videocodec.c:188
msgid "8 bit Packed YUV 4:2:2 (yuv2)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:200
#: plugins/videocodec/lqt_videocodec.c:201
msgid "8 bit Packed YUV 4:2:2 (2vuy)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:213
msgid "YUV 4:2:0 (yuv4)"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:214
msgid "YUV 4:2:0 (yuv4) NOT COMPATIBLE WITH STANDARD QUICKTIME"
msgstr ""

#: plugins/videocodec/lqt_videocodec.c:227
#: plugins/videocodec/lqt_videocodec.c:228
msgid "8 bit Planar YUV 4:2:0 (yv12)"
msgstr ""

#: plugins/faad2/faad2.c:171
#, c-format
msgid "faacDecDecode failed %s"
msgstr ""

#: plugins/faad2/faad2.c:361
msgid "No extradata found, decoding is doomed to failure"
msgstr ""

#: plugins/faad2/lqt_faad2.c:35
msgid "MPEG-2/4 AAC decoder"
msgstr ""

#: plugins/faad2/lqt_faad2.c:36
msgid "MPEG-2/4 AAC decoder (faad2 based)"
msgstr ""

#: plugins/png/lqt_png.c:36
msgid "Compression Level"
msgstr ""

#: plugins/png/lqt_png.c:51
msgid "PNG (with alpha)"
msgstr ""

#: plugins/png/lqt_png.c:52
msgid "Lossless video codec (RGBA mode)"
msgstr ""

#: plugins/png/lqt_png.c:64
msgid "PNG"
msgstr ""

#: plugins/png/lqt_png.c:65
msgid "Lossless video codec (RGB mode)"
msgstr ""

#: plugins/ffmpeg/params.h:36 plugins/ffmpeg/params.h:45
#: plugins/ffmpeg/lqt_ffmpeg.c:47
msgid "Bit rate (kbps)"
msgstr ""

#: plugins/ffmpeg/params.h:54
msgid "Bitrate tolerance (kbps)"
msgstr ""

#: plugins/ffmpeg/params.h:57
msgid ""
"Number of bits the bitstream is allowed to diverge from the reference. "
"Unused for constant quantizer encoding"
msgstr ""

#: plugins/ffmpeg/params.h:65
msgid "Motion estimation method"
msgstr ""

#: plugins/ffmpeg/params.h:68
msgid "Zero"
msgstr ""

#: plugins/ffmpeg/params.h:68
msgid "Phods"
msgstr ""

#: plugins/ffmpeg/params.h:68
msgid "Log"
msgstr ""

#: plugins/ffmpeg/params.h:69
msgid "X1"
msgstr ""

#: plugins/ffmpeg/params.h:69
msgid "Epzs"
msgstr ""

#: plugins/ffmpeg/params.h:69
msgid "Full"
msgstr ""

#: plugins/ffmpeg/params.h:77
msgid "GOP size (0 = intra only)"
msgstr ""

#: plugins/ffmpeg/params.h:88
msgid "Quantizer compression"
msgstr ""

#: plugins/ffmpeg/params.h:94
msgid "Amount of qscale change between easy & hard scenes"
msgstr ""

#: plugins/ffmpeg/params.h:101
msgid "Quantizer blur"
msgstr ""

#: plugins/ffmpeg/params.h:107
msgid "Amount of qscale smoothing over time"
msgstr ""

#: plugins/ffmpeg/params.h:114
msgid "Minimum quantizer scale"
msgstr ""

#: plugins/ffmpeg/params.h:125
msgid "Maximum quantizer scale"
msgstr ""

#: plugins/ffmpeg/params.h:136
msgid "Maximum quantizer difference"
msgstr ""

#: plugins/ffmpeg/params.h:141
msgid "Maximum quantizer difference between frames"
msgstr ""

#: plugins/ffmpeg/params.h:148
msgid "Max B-Frames"
msgstr ""

#: plugins/ffmpeg/params.h:153
msgid "Maximum number of B-frames between non B-frames"
msgstr ""

#: plugins/ffmpeg/params.h:160
msgid "B quantizer factor"
msgstr ""

#: plugins/ffmpeg/params.h:166
msgid "Quantizer factor between B-frames and non-B-frames"
msgstr ""

#: plugins/ffmpeg/params.h:173
msgid "Avoid B-frames in high motion scenes"
msgstr ""

#: plugins/ffmpeg/params.h:183
msgid "Luma elimination threshold"
msgstr ""

#: plugins/ffmpeg/params.h:188
msgid ""
"Single coefficient elimination threshold for luminance. Negative values also "
"consider dc coefficient. -4 is JVT recommendation"
msgstr ""

#: plugins/ffmpeg/params.h:196
msgid "Chroma elimination threshold"
msgstr ""

#: plugins/ffmpeg/params.h:201
msgid ""
"Single coefficient elimination threshold for chrominamce. Negative values "
"also consider dc coefficient. 7 is JVT recommendation"
msgstr ""

#: plugins/ffmpeg/params.h:209
msgid "Standards compliance"
msgstr ""

#: plugins/ffmpeg/params.h:214
msgid ""
"2 = Strictly conform to a older more strict version of the spec or reference "
"software\n"
" 1: Strictly conform to all the things in the spec no  matter what "
"consequences\n"
" 0: Default\n"
" -1: Allow inofficial extensions\n"
" -2: Allow non standarized experimental things"
msgstr ""

#: plugins/ffmpeg/params.h:227
msgid "B quantizer offset"
msgstr ""

#: plugins/ffmpeg/params.h:233
msgid ""
"Quantizer offset between B-frames and non-B-frames\n"
"if > 0 then the last p frame quantizer will be used (q= lastp_q*factor"
"+offset)\n"
" if < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)\n"
msgstr ""

#: plugins/ffmpeg/params.h:244
msgid "Minimum bitrate (kbps)"
msgstr ""

#: plugins/ffmpeg/params.h:247
msgid "Minimum bitrate (0 means arbitrary)"
msgstr ""

#: plugins/ffmpeg/params.h:254
msgid "Maximum bitrate (kbps)"
msgstr ""

#: plugins/ffmpeg/params.h:257
msgid "Maximum bitrate (0 means arbitrary)"
msgstr ""

#: plugins/ffmpeg/params.h:264
msgid "RC buffer size"
msgstr ""

#: plugins/ffmpeg/params.h:267
msgid ""
"Decoder bitstream buffer size in kbits. When encoding with max and/or min "
"bitrate, this must be specified."
msgstr ""

#: plugins/ffmpeg/params.h:275
msgid "RC buffer aggressivity"
msgstr ""

#: plugins/ffmpeg/params.h:287
msgid "I quantizer factor"
msgstr ""

#: plugins/ffmpeg/params.h:293
msgid ""
"Quantizer factor between P-frames and I-frames.\n"
"If > 0 then the last P frame quantizer will be used (q= lastp_q*factor"
"+offset).\n"
"If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset)\n"
msgstr ""

#: plugins/ffmpeg/params.h:304
msgid "I quantizer offset"
msgstr ""

#: plugins/ffmpeg/params.h:310
msgid "Quantizer offset between P-frames and I-frames"
msgstr ""

#: plugins/ffmpeg/params.h:317
msgid "Initial RC complexity"
msgstr ""

#: plugins/ffmpeg/params.h:329
msgid "Luminance masking"
msgstr ""

#: plugins/ffmpeg/params.h:335
msgid ""
"Encode very bright image parts with reduced quality. 0 means disabled, 0-0.3 "
"is a sane range."
msgstr ""

#: plugins/ffmpeg/params.h:343
msgid "Temporary complexity masking"
msgstr ""

#: plugins/ffmpeg/params.h:349
msgid ""
"Encode very fast moving image parts with reduced quality. 0 means disabled."
msgstr ""

#: plugins/ffmpeg/params.h:357
msgid "Spatial complexity masking"
msgstr ""

#: plugins/ffmpeg/params.h:363
msgid ""
"Encode very complex image parts with reduced quality. 0 means disabled, 0-"
"0.5 is a sane range."
msgstr ""

#: plugins/ffmpeg/params.h:371
msgid "Inter block masking"
msgstr ""

#: plugins/ffmpeg/params.h:377
msgid ""
"Encode inter blocks with reduced quality (increases the quality of intra "
"blocks). 0 means disabled, 1 will double the bits allocated for intra blocks."
msgstr ""

#: plugins/ffmpeg/params.h:386
msgid "Darkness masking"
msgstr ""

#: plugins/ffmpeg/params.h:392
msgid ""
"Encode very dark image parts with reduced quality. 0 means disabled, 0-0.3 "
"is a sane range."
msgstr ""

#: plugins/ffmpeg/params.h:399
msgid "Precition method"
msgstr ""

#: plugins/ffmpeg/params.h:402
msgid "Left"
msgstr ""

#: plugins/ffmpeg/params.h:402
msgid "Plane"
msgstr ""

#: plugins/ffmpeg/params.h:402
msgid "Median"
msgstr ""

#: plugins/ffmpeg/params.h:409
msgid "Minimum MB quantizer"
msgstr ""

#: plugins/ffmpeg/params.h:420
msgid "Maximum MB quantizer"
msgstr ""

#: plugins/ffmpeg/params.h:427
msgid "SAD"
msgstr ""

#: plugins/ffmpeg/params.h:427
msgid "SSE"
msgstr ""

#: plugins/ffmpeg/params.h:427
msgid "SATD"
msgstr ""

#: plugins/ffmpeg/params.h:427
msgid "DCT"
msgstr ""

#: plugins/ffmpeg/params.h:427
msgid "PSNR"
msgstr ""

#: plugins/ffmpeg/params.h:428
msgid "BIT"
msgstr ""

#: plugins/ffmpeg/params.h:428
msgid "RD"
msgstr ""

#: plugins/ffmpeg/params.h:428
msgid "ZERO"
msgstr ""

#: plugins/ffmpeg/params.h:428
msgid "VSAD"
msgstr ""

#: plugins/ffmpeg/params.h:428
msgid "VSSE"
msgstr ""

#: plugins/ffmpeg/params.h:429
msgid "NSSE"
msgstr ""

#: plugins/ffmpeg/params.h:448
msgid "ME compare function"
msgstr ""

#: plugins/ffmpeg/params.h:452
msgid ""
"Motion estimation compare function.\n"
"SAD: Sum of absolute differences\n"
"SSE: Sum of squared errors\n"
"SATD: Sum of absolute Hadamard transformed differences\n"
"DCT: Sum of absolute DCT transformed differences\n"
"PSNR: Sum of squared quantization errors (low quality)\n"
"BIT: Number of bits needed for the block\n"
"RD: Rate distortion optimal (slow)\n"
"ZERO: 0\n"
"VSAD: Sum of absolute vertical differences\n"
"VSSE: Sum of squared vertical differences\n"
"NSSE: Noise preserving sum of squared differences"
msgstr ""

#: plugins/ffmpeg/params.h:470
msgid "Enable chroma ME compare"
msgstr ""

#: plugins/ffmpeg/params.h:481
msgid "Subpixel ME compare function"
msgstr ""

#: plugins/ffmpeg/params.h:485
msgid ""
"Subpixel motion estimation compare function.\n"
"SAD: Sum of absolute differences\n"
"SSE: Sum of squared errors\n"
"SATD: Sum of absolute Hadamard transformed differences\n"
"DCT: Sum of absolute DCT transformed differences\n"
"PSNR: Sum of squared quantization errors (low quality)\n"
"BIT: Number of bits needed for the block\n"
"RD: Rate distortion optimal (slow)\n"
"ZERO: 0\n"
"VSAD: Sum of absolute vertical differences\n"
"VSSE: Sum of squared vertical differences\n"
"NSSE: Noise preserving sum of squared differences"
msgstr ""

#: plugins/ffmpeg/params.h:503
msgid "Enable chroma subpixel ME compare"
msgstr ""

#: plugins/ffmpeg/params.h:514
msgid "MB compare function"
msgstr ""

#: plugins/ffmpeg/params.h:518
msgid ""
"Macroblock compare function.\n"
"SAD: Sum of absolute differences\n"
"SSE: Sum of squared errors\n"
"SATD: Sum of absolute Hadamard transformed differences\n"
"DCT: Sum of absolute DCT transformed differences\n"
"PSNR: Sum of squared quantization errors (low quality)\n"
"BIT: Number of bits needed for the block\n"
"RD: Rate distortion optimal (slow)\n"
"ZERO: 0\n"
"VSAD: Sum of absolute vertical differences\n"
"VSSE: Sum of squared vertical differences\n"
"NSSE: Noise preserving sum of squared differences"
msgstr ""

#: plugins/ffmpeg/params.h:535
msgid "Enable chroma macroblock ME compare"
msgstr ""

#: plugins/ffmpeg/params.h:546
msgid "ILDCT compare function"
msgstr ""

#: plugins/ffmpeg/params.h:550
msgid ""
"Interlaced dct compare function.\n"
"SAD: Sum of absolute differences\n"
"SSE: Sum of squared errors\n"
"SATD: Sum of absolute Hadamard transformed differences\n"
"DCT: Sum of absolute DCT transformed differences\n"
"PSNR: Sum of squared quantization errors (low quality)\n"
"BIT: Number of bits needed for the block\n"
"RD: Rate distortion optimal (slow)\n"
"ZERO: 0\n"
"VSAD: Sum of absolute vertical differences\n"
"VSSE: Sum of squared vertical differences\n"
"NSSE: Noise preserving sum of squared differences"
msgstr ""

#: plugins/ffmpeg/params.h:567
msgid "Enable chroma ILDCT ME compare"
msgstr ""

#: plugins/ffmpeg/params.h:578
msgid "ME diamond size & shape"
msgstr ""

#: plugins/ffmpeg/params.h:583
msgid "Motion estimation diamond size. Negative means shape adaptive."
msgstr ""

#: plugins/ffmpeg/params.h:590
msgid "Last predictor count"
msgstr ""

#: plugins/ffmpeg/params.h:595
msgid ""
"Amount of motion predictors from the previous frame.\n"
"0 (default)\n"
"a Will use 2a+1 x 2a+1 macroblock square of motion vector predictors from "
"the previous frame."
msgstr ""

#: plugins/ffmpeg/params.h:605 plugins/ffmpeg/lqt_ffmpeg.c:126
msgid "ME pre-pass"
msgstr ""

#: plugins/ffmpeg/params.h:610
msgid ""
"Motion estimation pre-pass\n"
"0: disabled\n"
"1: only after I-frames\n"
"2: always"
msgstr ""

#: plugins/ffmpeg/params.h:620
msgid "ME pre-pass compare function"
msgstr ""

#: plugins/ffmpeg/params.h:624
msgid ""
"Motion estimation pre-pass compare function.\n"
"SAD: Sum of absolute differences\n"
"SSE: Sum of squared errors\n"
"SATD: Sum of absolute Hadamard transformed differences\n"
"DCT: Sum of absolute DCT transformed differences\n"
"PSNR: Sum of squared quantization errors (low quality)\n"
"BIT: Number of bits needed for the block\n"
"RD: Rate distortion optimal (slow)\n"
"ZERO: 0\n"
"VSAD: Sum of absolute vertical differences\n"
"VSSE: Sum of squared vertical differences\n"
"NSSE: Noise preserving sum of squared differences"
msgstr ""

#: plugins/ffmpeg/params.h:642
msgid "Enable chroma ME pre-pass compare"
msgstr ""

#: plugins/ffmpeg/params.h:653
msgid "ME pre-pass diamond size & shape"
msgstr ""

#: plugins/ffmpeg/params.h:658
msgid "Motion estimation pre-pass diamond size. Negative means shape adaptive."
msgstr ""

#: plugins/ffmpeg/params.h:666
msgid "Subpel ME quality"
msgstr ""

#: plugins/ffmpeg/params.h:671
msgid ""
"Subpel motion estimation refinement quality (for qpel). Higher values mean "
"higher quality but slower encoding."
msgstr ""

#: plugins/ffmpeg/params.h:679
msgid "Motion estimation range"
msgstr ""

#: plugins/ffmpeg/params.h:684
msgid "Motion estimation search range (0 means unlimited)"
msgstr ""

#: plugins/ffmpeg/params.h:691
msgid "MB decision mode"
msgstr ""

#: plugins/ffmpeg/params.h:694
msgid "Use compare function"
msgstr ""

#: plugins/ffmpeg/params.h:694
msgid "Fewest bits"
msgstr ""

#: plugins/ffmpeg/params.h:695
msgid "Rate distoration"
msgstr ""

#: plugins/ffmpeg/params.h:702
msgid "Scenechange threshold"
msgstr ""

#: plugins/ffmpeg/params.h:707
msgid ""
"Threshold for scene change detection.\n"
"Negative values mean more sensitivity (more keyframes)"
msgstr ""

#: plugins/ffmpeg/params.h:715
msgid "Minimum lagrange multipler"
msgstr ""

#: plugins/ffmpeg/params.h:721
msgid ""
"Minimum Lagrange multiplier for ratecontrol. Should possibly be the same as "
"minimum quantizer scale."
msgstr ""

#: plugins/ffmpeg/params.h:729
msgid "Maximum lagrange multipler"
msgstr ""

#: plugins/ffmpeg/params.h:735
msgid ""
"Maximum Lagrange multiplier for ratecontrol. Should possibly be the same as "
"maximum quantizer scale."
msgstr ""

#: plugins/ffmpeg/params.h:753
msgid "Initial RC buffer occupancy"
msgstr ""

#: plugins/ffmpeg/params.h:756
msgid ""
"Number of kilobits which should be loaded into the rc buffer before encoding "
"starts. Must not be larger than RC buffer size"
msgstr ""

#: plugins/ffmpeg/params.h:767
msgid "Inter threshold"
msgstr ""

#: plugins/ffmpeg/params.h:776
msgid "Quantizer noise shaping"
msgstr ""

#: plugins/ffmpeg/params.h:781
msgid ""
"Choose quantization such that noise will be masked by similar-frequency "
"content in the image"
msgstr ""

#: plugins/ffmpeg/params.h:789
msgid "ME Theshold"
msgstr ""

#: plugins/ffmpeg/params.h:794
msgid ""
"Motion estimation threshold. under which no motion estimation is performed, "
"but instead the user specified motion vectors are used"
msgstr ""

#: plugins/ffmpeg/params.h:802
msgid "MB Theshold"
msgstr ""

#: plugins/ffmpeg/params.h:807
msgid ""
"Macroblock threshold. under which the user specified macroblock types will "
"be used"
msgstr ""

#: plugins/ffmpeg/params.h:814
msgid "NSSE weight"
msgstr ""

#: plugins/ffmpeg/params.h:817
msgid ""
"Noise vs. SSE weight for the NSSE comparsion function. 0 is identical to SSE"
msgstr ""

#: plugins/ffmpeg/params.h:825
msgid "Border masking"
msgstr ""

#: plugins/ffmpeg/params.h:831
msgid ""
"Encode image parts near the border with reduced quality.0 means disabled"
msgstr ""

#: plugins/ffmpeg/params.h:838
msgid "Minimum MB lagrange multipler"
msgstr ""

#: plugins/ffmpeg/params.h:844
msgid "Minimum macroblock Lagrange multiplier."
msgstr ""

#: plugins/ffmpeg/params.h:850
msgid "Maximum MB lagrange multipler"
msgstr ""

#: plugins/ffmpeg/params.h:856
msgid "Maximum macroblock Lagrange multiplier."
msgstr ""

#: plugins/ffmpeg/params.h:863
msgid "ME penalty compensation"
msgstr ""

#: plugins/ffmpeg/params.h:871
msgid "Bidir refine"
msgstr ""

#: plugins/ffmpeg/params.h:881
msgid "BRD scale"
msgstr ""

#: plugins/ffmpeg/params.h:893
msgid "Scenechange factor"
msgstr ""

#: plugins/ffmpeg/params.h:896
msgid "Multiplied by qscale for each frame and added to scene_change_score"
msgstr ""

#: plugins/ffmpeg/params.h:904
msgid "Fixed quantizer"
msgstr ""

#: plugins/ffmpeg/params.h:909
msgid ""
"Quantizer for fixed quality encoding. Lower means better, 1 is not "
"recommended"
msgstr ""

#: plugins/ffmpeg/params.h:919
msgid "Use fixed quantizer"
msgstr ""

#: plugins/ffmpeg/params.h:924
msgid "Use fixed quality encoding"
msgstr ""

#: plugins/ffmpeg/params.h:931
msgid "4 MV per MB allowed"
msgstr ""

#: plugins/ffmpeg/params.h:936
msgid ""
"Allow 4 motion vectors per macroblock (slightly better quality). Works "
"better if MB decision mode is \"Fewest bits\" or \"Rate distoration\"."
msgstr ""

#: plugins/ffmpeg/params.h:945
msgid "Use qpel MC"
msgstr ""

#: plugins/ffmpeg/params.h:950
msgid ""
"Use 1/4 pixel motion compensation. Warning: QPEL is not supported by all "
"decoders."
msgstr ""

#: plugins/ffmpeg/params.h:958
msgid "Use global motion compensation"
msgstr ""

#: plugins/ffmpeg/params.h:963
msgid "Warning: GMC is not supported by all decoders"
msgstr ""

#: plugins/ffmpeg/params.h:970
msgid "Always try a MB with MV=<0,0>"
msgstr ""

#: plugins/ffmpeg/params.h:981
msgid "Use data partitioning"
msgstr ""

#: plugins/ffmpeg/params.h:986
msgid ""
"Use data partitioning for more robustness if the video is for transmitting "
"over unreliable channels"
msgstr ""

#: plugins/ffmpeg/params.h:994
msgid "Grayscale mode"
msgstr ""

#: plugins/ffmpeg/params.h:1004
msgid "Don't draw edges"
msgstr ""

#: plugins/ffmpeg/params.h:1015
msgid "Normalize adaptive quantization"
msgstr ""

#: plugins/ffmpeg/params.h:1020
msgid ""
"When using masking, try to adjust the per macroblock quantizers to maintain "
"the desired average"
msgstr ""

#: plugins/ffmpeg/params.h:1027
msgid "Use alternative scantable"
msgstr ""

#: plugins/ffmpeg/params.h:1038
msgid "Use trellis quantization"
msgstr ""

#: plugins/ffmpeg/params.h:1043
msgid "Use trellis quantization (improves quality)"
msgstr ""

#: plugins/ffmpeg/params.h:1049
msgid "Use only bitexact stuff"
msgstr ""

#: plugins/ffmpeg/params.h:1054
msgid "Use only bitexact stuff (except (i)dct)"
msgstr ""

#: plugins/ffmpeg/params.h:1060
msgid "Advanced intra coding"
msgstr ""

#: plugins/ffmpeg/params.h:1070
msgid "MPEG-4 AC prediction"
msgstr ""

#: plugins/ffmpeg/params.h:1080
msgid "Unlimited motion vector"
msgstr ""

#: plugins/ffmpeg/params.h:1090
msgid "CBP RD"
msgstr ""

#: plugins/ffmpeg/params.h:1095
msgid ""
"Use rate distortion optimization for cbp. This can only be used together "
"with trellis quantization."
msgstr ""

#: plugins/ffmpeg/params.h:1101
msgid "QP RD"
msgstr ""

#: plugins/ffmpeg/params.h:1106
msgid ""
"Use rate distortion optimization for qp selection. Can only be used if MB "
"decision mode is \"Rate distoration\""
msgstr ""

#: plugins/ffmpeg/params.h:1112
msgid "Alternative inter vlc"
msgstr ""

#: plugins/ffmpeg/params.h:1123
msgid "OBMC"
msgstr ""

#: plugins/ffmpeg/params.h:1128
msgid ""
"Overlapped block motion compensation (only supported with simple MB decision)"
msgstr ""

#: plugins/ffmpeg/params.h:1135
msgid "Loop filter"
msgstr ""

#: plugins/ffmpeg/params.h:1145
msgid "Slice struct"
msgstr ""

#: plugins/ffmpeg/params.h:1156
msgid "Close all GOPs"
msgstr ""

#: plugins/ffmpeg/params.h:1166
msgid "Allow fast encoding"
msgstr ""

#: plugins/ffmpeg/params.h:1171
msgid "Allow non spec compliant speedup tricks"
msgstr ""

#: plugins/ffmpeg/params.h:1178
msgid "Strictly enforce GOP size"
msgstr ""

#: plugins/ffmpeg/audio.c:388 plugins/ffmpeg/audio.c:571
msgid "avcodec_decode_audio error"
msgstr ""

#: plugins/ffmpeg/audio.c:432
msgid "Decode header failed"
msgstr ""

#: plugins/ffmpeg/audio.c:437
msgid "Huh, frame not decoded?"
msgstr ""

#: plugins/ffmpeg/audio.c:622
#, c-format
msgid "BUUUUG, buffer overflow, %d %d"
msgstr ""

#: plugins/ffmpeg/audio.c:712 plugins/ffmpeg/audio.c:840
msgid "Avcodec open failed"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:55
msgid "Rate control"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:69
msgid "Quantizer"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:95
msgid "Frame types"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:137
msgid "Qpel ME"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:149
msgid "Masking"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:305
msgid "FFMPEG Mpeg 1 Video"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:317
msgid "FFMPEG MPEG-4"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:333
msgid "FFMPEG MSMpeg 4v1"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:344
msgid "FFMPEG MSMpeg 4v2"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:356
msgid "FFMPEG MSMpeg 4v3 (DivX 3 compatible)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:373
msgid "FFMPEG WMV1"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:386
msgid "FFMPEG H263"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:399
msgid "FFMPEG H264"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:411
msgid "FFMPEG H263+"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:424
msgid "FFMPEG I263"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:435
msgid "FFMPEG Sorenson Video 1"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:446
msgid "FFMPEG Sorenson Video 3"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:458
msgid "FFMPEG MJPEG"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:471
msgid "FFMPEG Motion JPEG-B"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:484
msgid "FFMPEG Targa"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:496
msgid "FFMPEG TIFF"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:507
msgid "FFMPEG Quicktime Planar RGB (8BPS)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:518
msgid "FFMPEG Intel Indeo 3"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:528
msgid "FFMPEG Apple Video"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:538
msgid "FFMPEG Apple Graphics"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:549
msgid "FFMPEG Cinepak"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:560
msgid "FFMPEG Creative YUV"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:570
msgid "FFMPEG RLE"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:580
msgid "FFMPEG Microsoft RLE"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:592
msgid "FFMPEG DV (NTSC)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:606
msgid "FFMPEG DV (PAL)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:620
msgid "FFMPEG DV (AVI version)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:634
msgid "FFMPEG DVCPRO50 (PAL)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:648
msgid "FFMPEG DVCPRO50 (NTSC)"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:661
msgid "FFMPEG modified huffyuv lossless"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:680
msgid "FFMPEG MPEG-1/2 audio layer 1/2/3"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:693
msgid "FFMPEG Mpeg Layer 2 Audio"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:707
msgid "FFMPEG AC3 Audio"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:721
msgid "FFMPEG QDM2 Audio"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:734
msgid "FFMPEG Apple lossless"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:747
msgid "FFMPEG McRowsoft ADPCM"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:760
msgid "FFMPEG ADPCM ima WAV"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:1038
#, c-format
msgid "Video index too large: %d"
msgstr ""

#: plugins/ffmpeg/lqt_ffmpeg.c:1094
#, c-format
msgid "Audio index too large: %d"
msgstr ""

#: plugins/ffmpeg/video.c:396
msgid "No avcC atom present, decoding is likely to fail"
msgstr ""

#: plugins/ffmpeg/video.c:513
msgid "Skipping corrupted frame"
msgstr ""

#: plugins/ffmpeg/video.c:749
msgid "Enabling interlaced encoding"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:36
msgid "Nominal Bitrate"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:42
msgid "Use variable bitrate"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:50
msgid "Maximum Bitrate (-1 = no limit)"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:58
msgid "Minimum Bitrate (-1 = no limit)"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:70
msgid "Ogg Vorbis (qt4l compatible)"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:71 plugins/vorbis/lqt_vorbis.c:84
msgid "Patent free audio codec (see http://www.vorbis.com)"
msgstr ""

#: plugins/vorbis/lqt_vorbis.c:83
msgid "Ogg Vorbis (qtcomponents compatible)"
msgstr ""

#: plugins/vorbis/vorbis.c:175
#, c-format
msgid "Using OVHS Atom, %d bytes"
msgstr ""

#: plugins/vorbis/vorbis.c:372
msgid "decode: next page failed"
msgstr ""

#: plugins/vorbis/vorbis.c:377 plugins/vorbis/vorbis.c:391
msgid "decode: next packet failed"
msgstr ""

#: plugins/vorbis/vorbis.c:385 plugins/vorbis/vorbis.c:397
#: plugins/vorbis/vorbis.c:406
msgid "decode: vorbis_synthesis_headerin: not a vorbis header"
msgstr ""

#: plugins/vorbis/vorbis.c:548
#, c-format
msgid "Writing OVHS atom %d bytes\n"
msgstr ""