diff options
author | Måns Rullgård <mans@mansr.com> | 2003-01-19 18:30:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-19 18:30:29 +0000 |
commit | ef9f730675b17f273ff5a39f3c99c71a6e96005a (patch) | |
tree | f5230663822b90f9a2cf15f0a97747e5535191b8 /libavcodec/pcm.c | |
parent | f5f170d2313ae409fda13143115a0b27bc0826fe (diff) | |
download | ffmpeg-ef9f730675b17f273ff5a39f3c99c71a6e96005a.tar.gz |
C99 initializers and kill warnings patch by (mru at users dot sourceforge dot net (Måns Rullgård))
Originally committed as revision 1474 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r-- | libavcodec/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index 811264b550..48adccf2d2 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -363,7 +363,7 @@ AVCodec name ## _decoder = { \ NULL, \ NULL, \ pcm_decode_frame, \ -}; +} PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le); PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be); |