mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
oggenc: add missing initializer braces to shut up gcc warning.
This fixes the warning: libavformat/oggenc.c:75:7: warning: missing braces around initializer [-Wmissing-braces]
This commit is contained in:
parent
df2039f573
commit
9acffed9e0
@ -72,7 +72,7 @@ typedef struct {
|
||||
|
||||
static const AVOption options[] = {
|
||||
{ "oggpagesize", "Set preferred Ogg page size.",
|
||||
offsetof(OGGContext, pref_size), FF_OPT_TYPE_INT, 0, 0, MAX_PAGE_SIZE, AV_OPT_FLAG_ENCODING_PARAM},
|
||||
offsetof(OGGContext, pref_size), FF_OPT_TYPE_INT, {.dbl = 0}, 0, MAX_PAGE_SIZE, AV_OPT_FLAG_ENCODING_PARAM},
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user