From 208bcc6b5b3f3b4c73c6073e7e64839f6c5e90ec Mon Sep 17 00:00:00 2001 From: Giorgio Vazzana Date: Sat, 3 Dec 2011 00:10:56 +0100 Subject: libavutil: increase struct SampleFmtInfo member 'name' length to 8 This is necessary since some sample format names are longer than 3 characters. Signed-off-by: Michael Niedermayer --- libavutil/samplefmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/samplefmt.c b/libavutil/samplefmt.c index 964a9f9c44..f4300036c2 100644 --- a/libavutil/samplefmt.c +++ b/libavutil/samplefmt.c @@ -23,7 +23,7 @@ #include typedef struct SampleFmtInfo { - char name[4]; + char name[8]; int bits; int planar; enum AVSampleFormat altform; ///< planar<->packed alternative form -- cgit v1.2.3