probetest.c 4.53 KB
Newer Older
1 2 3
/*
 * copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
7 8 9 10
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * 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 13 14 15 16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 19 20 21 22 23 24 25 26 27
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <stdlib.h>

#include "libavformat/avformat.h"
#include "libavcodec/put_bits.h"
#include "libavutil/lfg.h"

static int score_array[1000]; //this must be larger than the number of formats
28
static int failures = 0;
29 30 31

static void probe(AVProbeData *pd, int type, int p, int size)
{
Martin Storsjö's avatar
Martin Storsjö committed
32
    int i = 0;
33
    AVInputFormat *fmt = NULL;
34

35
    while ((fmt = av_iformat_next(fmt))) {
36 37 38 39
        if (fmt->flags & AVFMT_NOFILE)
            continue;
        if (fmt->read_probe) {
            int score = fmt->read_probe(pd);
40 41
            if (score > score_array[i] && score > AVPROBE_SCORE_MAX / 4) {
                score_array[i] = score;
42 43
                fprintf(stderr,
                        "Failure of %s probing code with score=%d type=%d p=%X size=%d\n",
44
                        fmt->name, score, type, p, size);
45 46 47 48 49 50 51
                failures++;
            }
        }
        i++;
    }
}

52
int main(void)
53 54 55 56 57 58 59 60 61 62 63
{
    unsigned int p, i, type, size, retry;
    AVProbeData pd;
    AVLFG state;
    PutBitContext pb;

    avcodec_register_all();
    av_register_all();

    av_lfg_init(&state, 0xdeadbeef);

64 65 66 67 68
    pd.buf = NULL;
    for (size = 1; size < 65537; size *= 2) {
        pd.buf_size = size;
        pd.buf      = av_realloc(pd.buf, size + AVPROBE_PADDING_SIZE);
        pd.filename = "";
69 70 71

        fprintf(stderr, "testing size=%d\n", size);

72 73 74 75
        for (retry = 0; retry < 4097; retry += FFMAX(size, 32)) {
            for (type = 0; type < 4; type++) {
                for (p = 0; p < 4096; p++) {
                    unsigned hist = 0;
76
                    init_put_bits(&pb, pd.buf, size);
77
                    switch (type) {
78
                    case 0:
79
                        for (i = 0; i < size * 8; i++)
80
                            put_bits(&pb, 1, (av_lfg_get(&state) & 0xFFFFFFFF) > p << 20);
81 82
                        break;
                    case 1:
83 84 85
                        for (i = 0; i < size * 8; i++) {
                            unsigned int p2 = hist ? p & 0x3F : (p >> 6);
                            unsigned int v  = (av_lfg_get(&state) & 0xFFFFFFFF) > p2 << 26;
86
                            put_bits(&pb, 1, v);
87
                            hist = v;
88 89 90
                        }
                        break;
                    case 2:
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;
94
                            put_bits(&pb, 1, v);
95
                            hist = (2 * hist + v) & 3;
96 97 98
                        }
                        break;
                    case 3:
99 100 101 102
                        for (i = 0; i < size; i++) {
                            int c = 0;
                            while (p & 63) {
                                c = (av_lfg_get(&state) & 0xFFFFFFFF) >> 24;
103 104 105 106 107 108 109 110 111 112 113 114
                                if (c >= 'a' && c <= 'z' && (p & 1))
                                    break;
                                else if (c >= 'A' && c <= 'Z' && (p & 2))
                                    break;
                                else if (c >= '0' && c <= '9' && (p & 4))
                                    break;
                                else if (c == ' ' && (p & 8))
                                    break;
                                else if (c == 0 && (p & 16))
                                    break;
                                else if (c == 1 && (p & 32))
                                    break;
115
                            }
116
                            pd.buf[i] = c;
117 118 119 120 121 122 123 124 125 126
                        }
                    }
                    flush_put_bits(&pb);
                    probe(&pd, type, p, size);
                }
            }
        }
    }
    return failures;
}