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 @@ ...@@ -23,7 +23,7 @@
#include <string.h> #include <string.h>
typedef struct SampleFmtInfo { typedef struct SampleFmtInfo {
const char *name; char name[4];
int bits; int bits;
} SampleFmtInfo; } 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