diff -ru ffmpeg-4.3.1/libavcodec/sbc_parser.c src/libavcodec/sbc_parser.c
--- ffmpeg-4.3.1/libavcodec/sbc_parser.c	2020-07-09 11:17:46.000000000 +0200
+++ src/libavcodec/sbc_parser.c	2021-01-04 19:27:40.889969446 +0100
@@ -42,7 +42,6 @@
 
     if (data[0] == MSBC_SYNCWORD && data[1] == 0 && data[2] == 0) {
         avctx->channels = 1;
-        avctx->sample_fmt = AV_SAMPLE_FMT_S16;
         avctx->sample_rate = 16000;
         avctx->frame_size = 120;
         s->duration = avctx->frame_size;
@@ -66,7 +65,6 @@
                  + (joint * subbands)) + 7) / 8;
 
     avctx->channels = channels;
-    avctx->sample_fmt = AV_SAMPLE_FMT_S16;
     avctx->sample_rate = sample_rates[sr];
     avctx->frame_size = subbands * blocks;
     s->duration = avctx->frame_size;
