tools/probetest.c
6e7ef5ec
 /*
  * copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * 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.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * 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
  * License along with FFmpeg; if not, write to the Free Software
  * 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"
6b4f58d4
 #include "libavutil/timer.h"
6e7ef5ec
 
32584667
 #define MAX_FORMATS 1000 //this must be larger than the number of formats
 static int score_array[MAX_FORMATS];
6b4f58d4
 static int64_t time_array[MAX_FORMATS];
497559ec
 static int failures = 0;
13306dde
 static const char *single_format;
6e7ef5ec
 
6b4f58d4
 #ifndef AV_READ_TIME
 #define AV_READ_TIME(x) 0
 #endif
 
6e7ef5ec
 static void probe(AVProbeData *pd, int type, int p, int size)
 {
ff19d438
     int i = 0;
ad2d0fdf
     AVInputFormat *fmt = NULL;
6e7ef5ec
 
ad2d0fdf
     while ((fmt = av_iformat_next(fmt))) {
6e7ef5ec
         if (fmt->flags & AVFMT_NOFILE)
             continue;
13306dde
         if (fmt->read_probe &&
             (!single_format || !strcmp(single_format, fmt->name))
         ) {
6b4f58d4
             int score;
             int64_t start = AV_READ_TIME();
             score = fmt->read_probe(pd);
             time_array[i] += AV_READ_TIME() - start;
497559ec
             if (score > score_array[i] && score > AVPROBE_SCORE_MAX / 4) {
                 score_array[i] = score;
4e81b5f5
                 fprintf(stderr,
                         "Failure of %s probing code with score=%d type=%d p=%X size=%d\n",
497559ec
                         fmt->name, score, type, p, size);
6e7ef5ec
                 failures++;
             }
         }
         i++;
     }
 }
 
6b4f58d4
 static void print_times(void)
 {
     int i = 0;
     AVInputFormat *fmt = NULL;
 
     while ((fmt = av_iformat_next(fmt))) {
         if (fmt->flags & AVFMT_NOFILE)
             continue;
         if (time_array[i] > 1000000) {
             fprintf(stderr, "%12"PRIu64" cycles, %12s\n",
                     time_array[i], fmt->name);
         }
         i++;
     }
 }
 
13306dde
 static int read_int(char *arg) {
     int ret;
 
     if (!arg || !*arg)
         return -1;
     ret = strtol(arg, &arg, 0);
     if (*arg)
         return -1;
     return ret;
 }
 
6cfaccab
 int main(int argc, char **argv)
6e7ef5ec
 {
     unsigned int p, i, type, size, retry;
2c0454cd
     AVProbeData pd = { 0 };
6e7ef5ec
     AVLFG state;
     PutBitContext pb;
6cfaccab
     int retry_count= 4097;
     int max_size = 65537;
13306dde
     int j;
6cfaccab
 
13306dde
     for (j = i = 1; i<argc; i++) {
         if (!strcmp(argv[i], "-f") && i+1<argc && !single_format) {
             single_format = argv[++i];
         } else if (read_int(argv[i])>0 && j == 1) {
             retry_count = read_int(argv[i]);
             j++;
         } else if (read_int(argv[i])>0 && j == 2) {
             max_size = read_int(argv[i]);
             j++;
         } else {
             fprintf(stderr, "probetest [-f <input format>] [<retry_count> [<max_size>]]\n");
             return 1;
         }
     }
6e7ef5ec
 
80db07ad
     if (max_size > 1000000000U/8) {
         fprintf(stderr, "max_size out of bounds\n");
         return 1;
     }
 
     if (retry_count > 1000000000U) {
         fprintf(stderr, "retry_count out of bounds\n");
         return 1;
     }
 
6e7ef5ec
     avcodec_register_all();
     av_register_all();
 
     av_lfg_init(&state, 0xdeadbeef);
 
497559ec
     pd.buf = NULL;
6cfaccab
     for (size = 1; size < max_size; size *= 2) {
497559ec
         pd.buf_size = size;
         pd.buf      = av_realloc(pd.buf, size + AVPROBE_PADDING_SIZE);
         pd.filename = "";
6e7ef5ec
 
37437d97
         if (!pd.buf) {
             fprintf(stderr, "out of memory\n");
             return 1;
         }
 
976175fb
         memset(pd.buf, 0, size + AVPROBE_PADDING_SIZE);
 
6e7ef5ec
         fprintf(stderr, "testing size=%d\n", size);
 
6cfaccab
         for (retry = 0; retry < retry_count; retry += FFMAX(size, 32)) {
497559ec
             for (type = 0; type < 4; type++) {
                 for (p = 0; p < 4096; p++) {
                     unsigned hist = 0;
6e7ef5ec
                     init_put_bits(&pb, pd.buf, size);
497559ec
                     switch (type) {
6e7ef5ec
                     case 0:
4e81b5f5
                         for (i = 0; i < size * 8; i++)
497559ec
                             put_bits(&pb, 1, (av_lfg_get(&state) & 0xFFFFFFFF) > p << 20);
6e7ef5ec
                         break;
                     case 1:
497559ec
                         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;
6e7ef5ec
                             put_bits(&pb, 1, v);
497559ec
                             hist = v;
6e7ef5ec
                         }
                         break;
                     case 2:
497559ec
                         for (i = 0; i < size * 8; i++) {
4e81b5f5
                             unsigned int p2 = (p >> (hist * 3)) & 7;
497559ec
                             unsigned int v  = (av_lfg_get(&state) & 0xFFFFFFFF) > p2 << 29;
6e7ef5ec
                             put_bits(&pb, 1, v);
4e81b5f5
                             hist = (2 * hist + v) & 3;
6e7ef5ec
                         }
                         break;
                     case 3:
497559ec
                         for (i = 0; i < size; i++) {
                             int c = 0;
                             while (p & 63) {
                                 c = (av_lfg_get(&state) & 0xFFFFFFFF) >> 24;
4e81b5f5
                                 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;
6e7ef5ec
                             }
497559ec
                             pd.buf[i] = c;
6e7ef5ec
                         }
                     }
                     flush_put_bits(&pb);
                     probe(&pd, type, p, size);
                 }
             }
         }
     }
6b4f58d4
     if(AV_READ_TIME())
         print_times();
6e7ef5ec
     return failures;
 }