• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Testing av_parse_video_rate()
2'-inf' -> -1/0 ERROR
3'inf' -> 1/0 ERROR
4'nan' -> 0/0 ERROR
5'123/0' -> 1/0 ERROR
6'-123 / 0' -> -1/0 ERROR
7'' -> 0/0 ERROR
8'/' -> 0/0 ERROR
9' 123  /  321' -> 41/107 OK
10'foo/foo' -> 0/0 ERROR
11'foo/1' -> 0/0 ERROR
12'1/foo' -> 1/0 ERROR
13'0/0' -> 0/0 ERROR
14'/0' -> 0/0 ERROR
15'1/' -> 1/0 ERROR
16'1' -> 1/1 OK
17'0' -> 0/1 ERROR
18'-123/123' -> -1/1 ERROR
19'-foo' -> 0/0 ERROR
20'123.23' -> 12323/100 OK
21'.23' -> 23/100 OK
22'-.23' -> -23/100 ERROR
23'-0.234' -> -117/500 ERROR
24'-0.0000001' -> -1/10000000 ERROR
25'  21332.2324   ' -> 917286/43 OK
26' -21332.2324   ' -> -917286/43 ERROR
27
28Testing av_parse_color()
29bikeshed -> R(80) G(64) B(140) A(59)
30RaNdOm -> R(185) G(88) B(148) A(94)
31foo -> error
32red -> R(255) G(0) B(0) A(255)
33Red  -> error
34RED -> R(255) G(0) B(0) A(255)
35Violet -> R(238) G(130) B(238) A(255)
36Yellow -> R(255) G(255) B(0) A(255)
37Red -> R(255) G(0) B(0) A(255)
380x000000 -> R(0) G(0) B(0) A(255)
390x0000000 -> error
400xff000000 -> R(255) G(0) B(0) A(0)
410x3e34ff -> R(62) G(52) B(255) A(255)
420x3e34ffaa -> R(62) G(52) B(255) A(170)
430xffXXee -> error
440xfoobar -> error
450xffffeeeeeeee -> error
46#ff0000 -> R(255) G(0) B(0) A(255)
47#ffXX00 -> error
48ff0000 -> R(255) G(0) B(0) A(255)
49ffXX00 -> error
50red@foo -> error
51random@10 -> error
520xff0000@1.0 -> R(255) G(0) B(0) A(255)
53red@ -> error
54red@0xfff -> error
55red@0xf -> R(255) G(0) B(0) A(15)
56red@2 -> error
57red@0.1 -> R(255) G(0) B(0) A(25)
58red@-1 -> error
59red@0.5 -> R(255) G(0) B(0) A(127)
60red@1.0 -> R(255) G(0) B(0) A(255)
61red@256 -> error
62red@10foo -> error
63red@-1.0 -> error
64red@-0.0 -> R(255) G(0) B(0) A(0)
65
66Testing av_small_strptime()
67fmt:'%Y-%m-%d' spec:'2012-12-21' -> 2012-12-21 00:00:00
68fmt:'%Y - %m - %d' spec:'2012-12-21' -> 2012-12-21 00:00:00
69fmt:'%Y-%m-%d %H:%M:%S' spec:'2012-12-21 20:12:21' -> 2012-12-21 20:12:21
70fmt:'  %Y - %m - %d %H : %M : %S' spec:'   2012 - 12 -  21   20 : 12 : 21' -> 2012-12-21 20:12:21
71fmt:'  %Y - %b - %d %H : %M : %S' spec:'   2012 - nOV -  21   20 : 12 : 21' -> 2012-11-21 20:12:21
72fmt:'  %Y - %B - %d %H : %M : %S' spec:'   2012 - nOVemBeR -  21   20 : 12 : 21' -> 2012-11-21 20:12:21
73fmt:'  %Y - %B%d %H : %M : %S' spec:'   2012 - may21   20 : 12 : 21' -> 2012-05-21 20:12:21
74fmt:'  %Y - %B%d %H : %M : %S' spec:'   2012 - mby21   20 : 12 : 21' -> error
75fmt:'  %Y - %B - %d %H : %M : %S' spec:'   2012 - JunE -  21   20 : 12 : 21' -> 2012-06-21 20:12:21
76fmt:'  %Y - %B - %d %H : %M : %S' spec:'   2012 - Jane -  21   20 : 12 : 21' -> error
77fmt:'  %Y - %B - %d %H : %M : %S' spec:'   2012 - January -  21   20 : 12 : 21' -> 2012-01-21 20:12:21
78
79Testing av_parse_time()
80(now is 2012-03-17 09:14:13.2 +0100, local time is UTC+1)
81now                      ->     1331972053.200000 = 2012-03-17T08:14:13Z
8212:35:46                 ->     1331984146.000000 = 2012-03-17T11:35:46Z
832000-12-20 0:02:47.5z    ->      977270567.500000 = 2000-12-20T00:02:47Z
842012 - 02-22  17:44:07   ->     1329929047.000000 = 2012-02-22T16:44:07Z
852000-12-20T010247.6      ->      977270567.600000 = 2000-12-20T00:02:47Z
862000-12-12 1:35:46+05:30 ->      976565146.000000 = 2000-12-11T20:05:46Z
872002-12-12 22:30:40-02   ->     1039739440.000000 = 2002-12-13T00:30:40Z
882:34:56.79               ->           +9296790000
89-1:23:45.67              ->           -5025670000
9042.1729                  ->             +42172900
91-1729.42                 ->           -1729420000
9212:34                    ->            +754000000
932147483648s              ->     +2147483648000000
944294967296ms             ->        +4294967296000
958589934592us             ->           +8589934592
969223372036854775808us    -> error
97
98Testing av_get_known_color_name()
99AliceBlue -> R(240) G(248) B(255) A(0)
100AntiqueWhite -> R(250) G(235) B(215) A(0)
101Aqua -> R(0) G(255) B(255) A(0)
102Aquamarine -> R(127) G(255) B(212) A(0)
103Azure -> R(240) G(255) B(255) A(0)
104Beige -> R(245) G(245) B(220) A(0)
105Bisque -> R(255) G(228) B(196) A(0)
106Black -> R(0) G(0) B(0) A(0)
107BlanchedAlmond -> R(255) G(235) B(205) A(0)
108Blue -> R(0) G(0) B(255) A(0)
109BlueViolet -> R(138) G(43) B(226) A(0)
110Brown -> R(165) G(42) B(42) A(0)
111BurlyWood -> R(222) G(184) B(135) A(0)
112CadetBlue -> R(95) G(158) B(160) A(0)
113Chartreuse -> R(127) G(255) B(0) A(0)
114Chocolate -> R(210) G(105) B(30) A(0)
115Coral -> R(255) G(127) B(80) A(0)
116CornflowerBlue -> R(100) G(149) B(237) A(0)
117Cornsilk -> R(255) G(248) B(220) A(0)
118Crimson -> R(220) G(20) B(60) A(0)
119Cyan -> R(0) G(255) B(255) A(0)
120DarkBlue -> R(0) G(0) B(139) A(0)
121DarkCyan -> R(0) G(139) B(139) A(0)
122DarkGoldenRod -> R(184) G(134) B(11) A(0)
123DarkGray -> R(169) G(169) B(169) A(0)
124DarkGreen -> R(0) G(100) B(0) A(0)
125DarkKhaki -> R(189) G(183) B(107) A(0)
126DarkMagenta -> R(139) G(0) B(139) A(0)
127DarkOliveGreen -> R(85) G(107) B(47) A(0)
128Darkorange -> R(255) G(140) B(0) A(0)
129DarkOrchid -> R(153) G(50) B(204) A(0)
130DarkRed -> R(139) G(0) B(0) A(0)
131DarkSalmon -> R(233) G(150) B(122) A(0)
132DarkSeaGreen -> R(143) G(188) B(143) A(0)
133DarkSlateBlue -> R(72) G(61) B(139) A(0)
134DarkSlateGray -> R(47) G(79) B(79) A(0)
135DarkTurquoise -> R(0) G(206) B(209) A(0)
136DarkViolet -> R(148) G(0) B(211) A(0)
137DeepPink -> R(255) G(20) B(147) A(0)
138DeepSkyBlue -> R(0) G(191) B(255) A(0)
139DimGray -> R(105) G(105) B(105) A(0)
140DodgerBlue -> R(30) G(144) B(255) A(0)
141FireBrick -> R(178) G(34) B(34) A(0)
142FloralWhite -> R(255) G(250) B(240) A(0)
143ForestGreen -> R(34) G(139) B(34) A(0)
144Fuchsia -> R(255) G(0) B(255) A(0)
145Gainsboro -> R(220) G(220) B(220) A(0)
146GhostWhite -> R(248) G(248) B(255) A(0)
147Gold -> R(255) G(215) B(0) A(0)
148GoldenRod -> R(218) G(165) B(32) A(0)
149Gray -> R(128) G(128) B(128) A(0)
150Green -> R(0) G(128) B(0) A(0)
151GreenYellow -> R(173) G(255) B(47) A(0)
152HoneyDew -> R(240) G(255) B(240) A(0)
153HotPink -> R(255) G(105) B(180) A(0)
154IndianRed -> R(205) G(92) B(92) A(0)
155Indigo -> R(75) G(0) B(130) A(0)
156Ivory -> R(255) G(255) B(240) A(0)
157Khaki -> R(240) G(230) B(140) A(0)
158Lavender -> R(230) G(230) B(250) A(0)
159LavenderBlush -> R(255) G(240) B(245) A(0)
160LawnGreen -> R(124) G(252) B(0) A(0)
161LemonChiffon -> R(255) G(250) B(205) A(0)
162LightBlue -> R(173) G(216) B(230) A(0)
163LightCoral -> R(240) G(128) B(128) A(0)
164LightCyan -> R(224) G(255) B(255) A(0)
165LightGoldenRodYellow -> R(250) G(250) B(210) A(0)
166LightGreen -> R(144) G(238) B(144) A(0)
167LightGrey -> R(211) G(211) B(211) A(0)
168LightPink -> R(255) G(182) B(193) A(0)
169LightSalmon -> R(255) G(160) B(122) A(0)
170LightSeaGreen -> R(32) G(178) B(170) A(0)
171LightSkyBlue -> R(135) G(206) B(250) A(0)
172LightSlateGray -> R(119) G(136) B(153) A(0)
173LightSteelBlue -> R(176) G(196) B(222) A(0)
174LightYellow -> R(255) G(255) B(224) A(0)
175Lime -> R(0) G(255) B(0) A(0)
176LimeGreen -> R(50) G(205) B(50) A(0)
177Linen -> R(250) G(240) B(230) A(0)
178Magenta -> R(255) G(0) B(255) A(0)
179Maroon -> R(128) G(0) B(0) A(0)
180MediumAquaMarine -> R(102) G(205) B(170) A(0)
181MediumBlue -> R(0) G(0) B(205) A(0)
182MediumOrchid -> R(186) G(85) B(211) A(0)
183MediumPurple -> R(147) G(112) B(216) A(0)
184MediumSeaGreen -> R(60) G(179) B(113) A(0)
185MediumSlateBlue -> R(123) G(104) B(238) A(0)
186MediumSpringGreen -> R(0) G(250) B(154) A(0)
187MediumTurquoise -> R(72) G(209) B(204) A(0)
188MediumVioletRed -> R(199) G(21) B(133) A(0)
189MidnightBlue -> R(25) G(25) B(112) A(0)
190MintCream -> R(245) G(255) B(250) A(0)
191MistyRose -> R(255) G(228) B(225) A(0)
192Moccasin -> R(255) G(228) B(181) A(0)
193NavajoWhite -> R(255) G(222) B(173) A(0)
194Navy -> R(0) G(0) B(128) A(0)
195OldLace -> R(253) G(245) B(230) A(0)
196Olive -> R(128) G(128) B(0) A(0)
197OliveDrab -> R(107) G(142) B(35) A(0)
198Orange -> R(255) G(165) B(0) A(0)
199OrangeRed -> R(255) G(69) B(0) A(0)
200Orchid -> R(218) G(112) B(214) A(0)
201PaleGoldenRod -> R(238) G(232) B(170) A(0)
202PaleGreen -> R(152) G(251) B(152) A(0)
203PaleTurquoise -> R(175) G(238) B(238) A(0)
204PaleVioletRed -> R(216) G(112) B(147) A(0)
205PapayaWhip -> R(255) G(239) B(213) A(0)
206PeachPuff -> R(255) G(218) B(185) A(0)
207Peru -> R(205) G(133) B(63) A(0)
208Pink -> R(255) G(192) B(203) A(0)
209Plum -> R(221) G(160) B(221) A(0)
210PowderBlue -> R(176) G(224) B(230) A(0)
211Purple -> R(128) G(0) B(128) A(0)
212Red -> R(255) G(0) B(0) A(0)
213RosyBrown -> R(188) G(143) B(143) A(0)
214RoyalBlue -> R(65) G(105) B(225) A(0)
215SaddleBrown -> R(139) G(69) B(19) A(0)
216Salmon -> R(250) G(128) B(114) A(0)
217SandyBrown -> R(244) G(164) B(96) A(0)
218SeaGreen -> R(46) G(139) B(87) A(0)
219SeaShell -> R(255) G(245) B(238) A(0)
220Sienna -> R(160) G(82) B(45) A(0)
221Silver -> R(192) G(192) B(192) A(0)
222SkyBlue -> R(135) G(206) B(235) A(0)
223SlateBlue -> R(106) G(90) B(205) A(0)
224SlateGray -> R(112) G(128) B(144) A(0)
225Snow -> R(255) G(250) B(250) A(0)
226SpringGreen -> R(0) G(255) B(127) A(0)
227SteelBlue -> R(70) G(130) B(180) A(0)
228Tan -> R(210) G(180) B(140) A(0)
229Teal -> R(0) G(128) B(128) A(0)
230Thistle -> R(216) G(191) B(216) A(0)
231Tomato -> R(255) G(99) B(71) A(0)
232Turquoise -> R(64) G(224) B(208) A(0)
233Violet -> R(238) G(130) B(238) A(0)
234Wheat -> R(245) G(222) B(179) A(0)
235White -> R(255) G(255) B(255) A(0)
236WhiteSmoke -> R(245) G(245) B(245) A(0)
237Yellow -> R(255) G(255) B(0) A(0)
238YellowGreen -> R(154) G(205) B(50) A(0)
239
240Testing av_find_info_tag()
2410. tag1 found: val1
2421. tag2 found: val2
2432. tag3 found: val3
2443. tag4 not found
2454. tag41 found: value 41
2465. 41 not found
2476. random1 not found
248