diff options
author | Martin Storsjö <martin@martin.st> | 2011-04-12 10:33:35 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-04-12 12:52:47 +0300 |
commit | c5e03cebd31e5bd2b6851d09a60280403a57faf0 (patch) | |
tree | 4c1ff101a407b9c6d0fb191fc5a222b80931d4dd /libavcodec/libvo-amrwbenc.c | |
parent | b5304f7b2ec56b872e9a007d7f040930ebe55095 (diff) | |
download | ffmpeg-c5e03cebd31e5bd2b6851d09a60280403a57faf0.tar.gz |
libvo-*: Don't use deprecated sample format names and enum names
Signed-off-by: Martin Storsjö <martin@martin.st>
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 45da104f94..661a15d445 100644 --- a/libavcodec/libvo-amrwbenc.c +++ b/libavcodec/libvo-amrwbenc.c @@ -120,7 +120,7 @@ AVCodec ff_libvo_amrwbenc_encoder = { amr_wb_encode_frame, amr_wb_encode_close, NULL, - .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, + .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("libvo-amrwbenc Adaptive Multi-Rate " "(AMR) Wide-Band"), }; |