probetest.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /*
  2. * copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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.
  10. *
  11. * FFmpeg 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.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdlib.h>
  21. #include "libavformat/avformat.h"
  22. #include "libavformat/demux.h"
  23. #include "libavcodec/put_bits.h"
  24. #include "libavutil/lfg.h"
  25. #include "libavutil/timer.h"
  26. #define MAX_FORMATS 1000 //this must be larger than the number of formats
  27. static int score_array[MAX_FORMATS];
  28. static int64_t time_array[MAX_FORMATS];
  29. static int failures = 0;
  30. static const char *single_format;
  31. #ifndef AV_READ_TIME
  32. #define AV_READ_TIME(x) 0
  33. #endif
  34. static void probe(AVProbeData *pd, int type, int p, int size)
  35. {
  36. int i = 0;
  37. const AVInputFormat *fmt = NULL;
  38. void *fmt_opaque = NULL;
  39. while ((fmt = av_demuxer_iterate(&fmt_opaque))) {
  40. if (fmt->flags & AVFMT_NOFILE)
  41. continue;
  42. if (ffifmt(fmt)->read_probe &&
  43. (!single_format || !strcmp(single_format, fmt->name))
  44. ) {
  45. int score;
  46. int64_t start = AV_READ_TIME();
  47. score = ffifmt(fmt)->read_probe(pd);
  48. time_array[i] += AV_READ_TIME() - start;
  49. if (score > score_array[i] && score > AVPROBE_SCORE_MAX / 4) {
  50. score_array[i] = score;
  51. fprintf(stderr,
  52. "Failure of %s probing code with score=%d type=%d p=%X size=%d\n",
  53. fmt->name, score, type, p, size);
  54. failures++;
  55. }
  56. }
  57. i++;
  58. }
  59. }
  60. static void print_times(void)
  61. {
  62. int i = 0;
  63. const AVInputFormat *fmt = NULL;
  64. void *fmt_opaque = NULL;
  65. while ((fmt = av_demuxer_iterate(&fmt_opaque))) {
  66. if (fmt->flags & AVFMT_NOFILE)
  67. continue;
  68. if (time_array[i] > 1000000) {
  69. fprintf(stderr, "%12"PRIu64" cycles, %12s\n",
  70. time_array[i], fmt->name);
  71. }
  72. i++;
  73. }
  74. }
  75. static int read_int(char *arg) {
  76. int ret;
  77. if (!arg || !*arg)
  78. return -1;
  79. ret = strtol(arg, &arg, 0);
  80. if (*arg)
  81. return -1;
  82. return ret;
  83. }
  84. int main(int argc, char **argv)
  85. {
  86. unsigned int p, i, type, size, retry;
  87. AVProbeData pd = { 0 };
  88. AVLFG state;
  89. PutBitContext pb;
  90. int retry_count= 4097;
  91. int max_size = 65537;
  92. int j;
  93. for (j = i = 1; i<argc; i++) {
  94. if (!strcmp(argv[i], "-f") && i+1<argc && !single_format) {
  95. single_format = argv[++i];
  96. } else if (read_int(argv[i])>0 && j == 1) {
  97. retry_count = read_int(argv[i]);
  98. j++;
  99. } else if (read_int(argv[i])>0 && j == 2) {
  100. max_size = read_int(argv[i]);
  101. j++;
  102. } else {
  103. fprintf(stderr, "probetest [-f <input format>] [<retry_count> [<max_size>]]\n");
  104. return 1;
  105. }
  106. }
  107. if (max_size > 1000000000U/8) {
  108. fprintf(stderr, "max_size out of bounds\n");
  109. return 1;
  110. }
  111. if (retry_count > 1000000000U) {
  112. fprintf(stderr, "retry_count out of bounds\n");
  113. return 1;
  114. }
  115. av_lfg_init(&state, 0xdeadbeef);
  116. pd.buf = NULL;
  117. for (size = 1; size < max_size; size *= 2) {
  118. pd.buf_size = size;
  119. pd.buf = av_realloc(pd.buf, size + AVPROBE_PADDING_SIZE);
  120. pd.filename = "";
  121. if (!pd.buf) {
  122. fprintf(stderr, "out of memory\n");
  123. return 1;
  124. }
  125. memset(pd.buf, 0, size + AVPROBE_PADDING_SIZE);
  126. fprintf(stderr, "testing size=%d\n", size);
  127. for (retry = 0; retry < retry_count; retry += FFMAX(size, 32)) {
  128. for (type = 0; type < 4; type++) {
  129. for (p = 0; p < 4096; p++) {
  130. unsigned hist = 0;
  131. init_put_bits(&pb, pd.buf, size);
  132. switch (type) {
  133. case 0:
  134. for (i = 0; i < size * 8; i++)
  135. put_bits(&pb, 1, (av_lfg_get(&state) & 0xFFFFFFFF) > p << 20);
  136. break;
  137. case 1:
  138. for (i = 0; i < size * 8; i++) {
  139. unsigned int p2 = hist ? p & 0x3F : (p >> 6);
  140. unsigned int v = (av_lfg_get(&state) & 0xFFFFFFFF) > p2 << 26;
  141. put_bits(&pb, 1, v);
  142. hist = v;
  143. }
  144. break;
  145. case 2:
  146. for (i = 0; i < size * 8; i++) {
  147. unsigned int p2 = (p >> (hist * 3)) & 7;
  148. unsigned int v = (av_lfg_get(&state) & 0xFFFFFFFF) > p2 << 29;
  149. put_bits(&pb, 1, v);
  150. hist = (2 * hist + v) & 3;
  151. }
  152. break;
  153. case 3:
  154. for (i = 0; i < size; i++) {
  155. int c = 0;
  156. while (p & 63) {
  157. c = (av_lfg_get(&state) & 0xFFFFFFFF) >> 24;
  158. if (c >= 'a' && c <= 'z' && (p & 1))
  159. break;
  160. else if (c >= 'A' && c <= 'Z' && (p & 2))
  161. break;
  162. else if (c >= '0' && c <= '9' && (p & 4))
  163. break;
  164. else if (c == ' ' && (p & 8))
  165. break;
  166. else if (c == 0 && (p & 16))
  167. break;
  168. else if (c == 1 && (p & 32))
  169. break;
  170. }
  171. pd.buf[i] = c;
  172. }
  173. }
  174. flush_put_bits(&pb);
  175. probe(&pd, type, p, size);
  176. }
  177. }
  178. }
  179. }
  180. if(AV_READ_TIME())
  181. print_times();
  182. return failures;
  183. }