Browse Source

libvo-amrwbenc: Add braces to shut up gcc warning.

libavcodec/libvo-amrwbenc.c:37:5: warning: missing braces around initializer
tags/n0.9
Diego Biurrun 14 years ago
parent
commit
b0058bda78
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libvo-amrwbenc.c

+ 1
- 1
libavcodec/libvo-amrwbenc.c View File

@@ -34,7 +34,7 @@ typedef struct AMRWBContext {
} AMRWBContext;

static const AVOption options[] = {
{ "dtx", "Allow DTX (generate comfort noise)", offsetof(AMRWBContext, allow_dtx), FF_OPT_TYPE_INT, 0, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
{ "dtx", "Allow DTX (generate comfort noise)", offsetof(AMRWBContext, allow_dtx), FF_OPT_TYPE_INT, { 0 }, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
{ NULL }
};



Loading…
Cancel
Save