diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-01-01 19:45:08 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-01-01 19:45:08 +0000 |
commit | 0a3028b9b0c531b6c61076be22b88fa64c27332c (patch) | |
tree | 040ad8bfeee338bbf9c1aee1c1822e1d616b4958 /libavcodec | |
parent | 391fa56ddbb9ba6540f318ae9615934da42052d5 (diff) | |
download | ffmpeg-0a3028b9b0c531b6c61076be22b88fa64c27332c.tar.gz |
Use AVSampleFormat instead of the deprecated SampleFormat.
Originally committed as revision 26185 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/amrwbdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/amrwbdec.c b/libavcodec/amrwbdec.c index 64ab707fd3..941d065127 100644 --- a/libavcodec/amrwbdec.c +++ b/libavcodec/amrwbdec.c @@ -1233,5 +1233,5 @@ AVCodec amrwb_decoder = { .init = amrwb_decode_init, .decode = amrwb_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Adaptive Multi-Rate WideBand"), - .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_FLT,SAMPLE_FMT_NONE}, + .sample_fmts = (enum AVSampleFormat[]){SAMPLE_FMT_FLT,SAMPLE_FMT_NONE}, }; |