Commit 5639793b authored by Reimar Döffinger's avatar Reimar Döffinger

Put strings inside struct instead of extra indirection.

Saves a bit on space and relocations.
Also makes the (very hackish) lossless conversion check
in ffmpeg.c work reliably.
Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent 0fd28e39
......@@ -23,7 +23,7 @@
#include <string.h>
typedef struct SampleFmtInfo {
const char *name;
char name[4];
int bits;
} SampleFmtInfo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment