Browse Source

Use AVSampleFormat instead of the deprecated SampleFormat.

Originally committed as revision 26185 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Reimar Döffinger 15 years ago
parent
commit
0a3028b9b0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/amrwbdec.c

+ 1
- 1
libavcodec/amrwbdec.c View File

@@ -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},
};

Loading…
Cancel
Save