summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-02 22:49:25 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-02 04:06:39 +0100
commitfd8c3277c4948ed9e73a139b7853409512ecf96d (patch)
tree1e04a3e3b402db2b1fc9f5cc804367ea270ec6be /ffprobe.c
parent047fd986bf3641ad3dc137746097271c339ee5f0 (diff)
downloadffmpeg-fd8c3277c4948ed9e73a139b7853409512ecf96d.tar.gz
ffprobe: Change string_validation to int, its accessed via AVOption as int
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index e7dd41aa75..1227f59c0b 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -338,7 +338,7 @@ struct WriterContext {
unsigned int nb_section_frame; ///< number of the frame section in case we are in "packets_and_frames" section
unsigned int nb_section_packet_frame; ///< nb_section_packet or nb_section_frame according if is_packets_and_frames
- StringValidation string_validation;
+ int string_validation;
char *string_validation_replacement;
unsigned int string_validation_utf8_flags;
};