]> git.sesse.net Git - ffmpeg/blob - tools/trasher.c
RELEASE_NOTES: update for 0.10
[ffmpeg] / tools / trasher.c
1 /*
2  * Copyright (c) 2007 Michael Niedermayer
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
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <inttypes.h>
24
25 static uint32_t state;
26 static uint32_t ran(void)
27 {
28     return state = state * 1664525 + 1013904223;
29 }
30
31 int main(int argc, char **argv)
32 {
33     FILE *f;
34     int count, maxburst, length;
35
36     if (argc < 5) {
37         printf("USAGE: trasher <filename> <count> <maxburst> <seed>\n");
38         return 1;
39     }
40
41     f = fopen(argv[1], "rb+");
42     if (!f) {
43         perror(argv[1]);
44         return 2;
45     }
46     count    = atoi(argv[2]);
47     maxburst = atoi(argv[3]);
48     state    = atoi(argv[4]);
49
50     fseek(f, 0, SEEK_END);
51     length = ftell(f);
52     fseek(f, 0, SEEK_SET);
53
54     while (count--) {
55         int burst = 1 + ran() * (uint64_t) (abs(maxburst) - 1) / UINT32_MAX;
56         int pos   = ran() * (uint64_t) length / UINT32_MAX;
57         fseek(f, pos, SEEK_SET);
58
59         if (maxburst < 0)
60             burst = -maxburst;
61
62         if (pos + burst > length)
63             continue;
64
65         while (burst--) {
66             int val = ran() * 256ULL / UINT32_MAX;
67
68             if (maxburst < 0)
69                 val = 0;
70
71             fwrite(&val, 1, 1, f);
72         }
73     }
74
75     return 0;
76 }