[FFmpeg-cvslog] rotozoom: Eliminate French variable name.
Diego Biurrun
git at videolan.org
Thu May 12 04:55:12 CEST 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Mon May 9 13:00:04 2011 +0200| [e1e0ca70eb0cd469b4ba757e3f72e7540ef04056] | committer: Diego Biurrun
rotozoom: Eliminate French variable name.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e1e0ca70eb0cd469b4ba757e3f72e7540ef04056
---
tests/rotozoom.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/rotozoom.c b/tests/rotozoom.c
index d61ce21..ff817ac 100644
--- a/tests/rotozoom.c
+++ b/tests/rotozoom.c
@@ -241,18 +241,18 @@ static int init_demo(const char *filename)
int radian;
char line[3 * W];
- FILE *fichier;
+ FILE *input_file;
- fichier = fopen(filename, "rb");
- if (!fichier) {
+ input_file = fopen(filename, "rb");
+ if (!input_file) {
perror(filename);
return 1;
}
- if (fread(line, 1, 15, fichier) != 15)
+ if (fread(line, 1, 15, input_file) != 15)
return 1;
for (i = 0; i < H; i++) {
- if (fread(line, 1, 3 * W, fichier) != 3 * W)
+ if (fread(line, 1, 3 * W, input_file) != 3 * W)
return 1;
for (j = 0; j < W; j++) {
tab_r[W * i + j] = line[3 * j ];
@@ -260,7 +260,7 @@ static int init_demo(const char *filename)
tab_b[W * i + j] = line[3 * j + 2];
}
}
- fclose(fichier);
+ fclose(input_file);
/* tables sin/cos */
for (i = 0; i < 360; i++) {
More information about the ffmpeg-cvslog
mailing list