diff options
author | Dieter <freebsd@sopwith.solgatos.com> | 2006-01-30 23:33:19 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-01-30 23:33:19 +0000 |
commit | ceaf1909c19431e9b089535fae32a7f8d185d802 (patch) | |
tree | 31c243ba9963b4df69d09d6f6a46acf407ca551c /ffmpeg.c | |
parent | a851b8e898fa1d2d44660ca5708e3da76107f179 (diff) | |
download | ffmpeg-ceaf1909c19431e9b089535fae32a7f8d185d802.tar.gz |
add static keyword to some functions
patch by Dieter <freebsd at sopwith solgatos com>
Originally committed as revision 4913 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3790,7 +3790,7 @@ static void show_formats(void) 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; @@ -3807,13 +3807,13 @@ void parse_matrix_coeffs(uint16_t *dest, const char *str) } } -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); |