[Ffmpeg-devel] [PATCH] part 16 - portability fixes (ILP32 vs LP64)
Dieter
freebsd
Sun Jan 29 21:27:40 CET 2006
Diffs for file: ./ffmpeg.c
===================================================================
RCS file: RCS/ffmpeg.c,v
retrieving revision 1.1
diff -u -r1.1 ffmpeg.c
--- ffmpeg.c 2006/01/30 02:44:13 1.1
+++ ffmpeg.c 2006/01/30 02:45:40
@@ -3789,7 +3789,7 @@
exit(1);
}
-void parse_matrix_coeffs(uint16_t *dest, const char *str)
+static void parse_matrix_coeffs(uint16_t *dest, const char *str)
{
int i;
const char *p = str;
@@ -3806,13 +3806,13 @@
}
}
-void opt_inter_matrix(const char *arg)
+static void opt_inter_matrix(const char *arg)
{
inter_matrix = av_mallocz(sizeof(uint16_t) * 64);
parse_matrix_coeffs(inter_matrix, arg);
}
-void opt_intra_matrix(const char *arg)
+static void opt_intra_matrix(const char *arg)
{
intra_matrix = av_mallocz(sizeof(uint16_t) * 64);
parse_matrix_coeffs(intra_matrix, arg);
More information about the ffmpeg-devel
mailing list