diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-07 01:31:00 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-07 09:22:12 +0200 |
commit | b0058bda78bcbb6a887e5099b85ac3bc2e23bb57 (patch) | |
tree | 2d9de46497e8ffb7134992f0231ed431ee729fa8 /libavcodec/libvo-amrwbenc.c | |
parent | 7f01a4192cdf4565eadee457f76e6b5196e35e0b (diff) | |
download | ffmpeg-b0058bda78bcbb6a887e5099b85ac3bc2e23bb57.tar.gz |
libvo-amrwbenc: Add braces to shut up gcc warning.
libavcodec/libvo-amrwbenc.c:37:5: warning: missing braces around initializer
Diffstat (limited to 'libavcodec/libvo-amrwbenc.c')
-rw-r--r-- | libavcodec/libvo-amrwbenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libvo-amrwbenc.c b/libavcodec/libvo-amrwbenc.c index b3615ede42..201a74ed26 100644 --- a/libavcodec/libvo-amrwbenc.c +++ b/libavcodec/libvo-amrwbenc.c @@ -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 } }; |