Browse Source

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 <michaelni@gmx.at>
tags/n0.9
Giorgio Vazzana Michael Niedermayer 13 years ago
parent
commit
208bcc6b5b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/samplefmt.c

+ 1
- 1
libavutil/samplefmt.c View File

@@ -23,7 +23,7 @@
#include <string.h>

typedef struct SampleFmtInfo {
char name[4];
char name[8];
int bits;
int planar;
enum AVSampleFormat altform; ///< planar<->packed alternative form


Loading…
Cancel
Save