This fixes a failing assert in ff_raw_read_header (in
fate-g722dec-1), where bits_per_coded_sample is set using this
function and is required to have a positive value.
---
libavcodec/utils.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 12561d0..8f99260 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1135,6 +1135,8 @@ int av_get_bits_per_sample(enum CodecID codec_id){
case CODEC_ID_PCM_F64BE:
case CODEC_ID_PCM_F64LE:
return 64;
+ case CODEC_ID_ADPCM_G722:
+ return 8;
default:
return 0;
}
--
1.7.3.1
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel