2 * copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of Libav.
6 * Libav is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * Libav is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with Libav; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "libavformat/avformat.h"
24 #include "libavcodec/put_bits.h"
25 #include "libavutil/lfg.h"
27 static int score_array
[1000]; //this must be larger than the number of formats
28 static int failures
= 0;
30 static void probe(AVProbeData
*pd
, int type
, int p
, int size
)
33 AVInputFormat
*fmt
= NULL
;
35 while ((fmt
= av_iformat_next(fmt
))) {
36 if (fmt
->flags
& AVFMT_NOFILE
)
38 if (fmt
->read_probe
) {
39 int score
= fmt
->read_probe(pd
);
40 if (score
> score_array
[i
] && score
> AVPROBE_SCORE_MAX
/ 4) {
41 score_array
[i
] = score
;
43 "Failure of %s probing code with score=%d type=%d p=%X size=%d\n",
44 fmt
->name
, score
, type
, p
, size
);
54 unsigned int p
, i
, type
, size
, retry
;
59 avcodec_register_all();
62 av_lfg_init(&state
, 0xdeadbeef);
65 for (size
= 1; size
< 65537; size
*= 2) {
67 pd
.buf
= av_realloc(pd
.buf
, size
+ AVPROBE_PADDING_SIZE
);
70 fprintf(stderr
, "testing size=%d\n", size
);
72 for (retry
= 0; retry
< 4097; retry
+= FFMAX(size
, 32)) {
73 for (type
= 0; type
< 4; type
++) {
74 for (p
= 0; p
< 4096; p
++) {
76 init_put_bits(&pb
, pd
.buf
, size
);
79 for (i
= 0; i
< size
* 8; i
++)
80 put_bits(&pb
, 1, (av_lfg_get(&state
) & 0xFFFFFFFF) > p
<< 20);
83 for (i
= 0; i
< size
* 8; i
++) {
84 unsigned int p2
= hist
? p
& 0x3F : (p
>> 6);
85 unsigned int v
= (av_lfg_get(&state
) & 0xFFFFFFFF) > p2
<< 26;
91 for (i
= 0; i
< size
* 8; i
++) {
92 unsigned int p2
= (p
>> (hist
* 3)) & 7;
93 unsigned int v
= (av_lfg_get(&state
) & 0xFFFFFFFF) > p2
<< 29;
95 hist
= (2 * hist
+ v
) & 3;
99 for (i
= 0; i
< size
; i
++) {
102 c
= (av_lfg_get(&state
) & 0xFFFFFFFF) >> 24;
103 if (c
>= 'a' && c
<= 'z' && (p
& 1))
105 else if (c
>= 'A' && c
<= 'Z' && (p
& 2))
107 else if (c
>= '0' && c
<= '9' && (p
& 4))
109 else if (c
== ' ' && (p
& 8))
111 else if (c
== 0 && (p
& 16))
113 else if (c
== 1 && (p
& 32))
120 probe(&pd
, type
, p
, size
);