[FFmpeg-cvslog] avcodec/g729dec: support decoding packets with multiple frames

Paul B Mahol git at videolan.org
Sat Apr 18 21:54:49 CEST 2015


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Apr 17 14:29:06 2015 +0000| [daf73d5d17012eac2f2b9bcbfc6297e2de8d8676] | committer: Paul B Mahol

avcodec/g729dec: support decoding packets with multiple frames

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=daf73d5d17012eac2f2b9bcbfc6297e2de8d8676
---

 libavcodec/g729dec.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index 6eb057f..e97677b 100644
--- a/libavcodec/g729dec.c
+++ b/libavcodec/g729dec.c
@@ -421,7 +421,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
         return ret;
     out_frame = (int16_t*) frame->data[0];
 
-    if (buf_size == 10) {
+    if (buf_size % 10 == 0) {
         packet_type = FORMAT_G729_8K;
         format = &format_g729_8k;
         //Reset voice decision
@@ -711,7 +711,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr,
     memmove(ctx->exc_base, ctx->exc_base + 2 * SUBFRAME_SIZE, (PITCH_DELAY_MAX+INTERPOL_LEN)*sizeof(int16_t));
 
     *got_frame_ptr = 1;
-    return buf_size;
+    return packet_type == FORMAT_G729_8K ? 10 : 8;
 }
 
 AVCodec ff_g729_decoder = {
@@ -722,5 +722,5 @@ AVCodec ff_g729_decoder = {
     .priv_data_size = sizeof(G729Context),
     .init           = decoder_init,
     .decode         = decode_frame,
-    .capabilities   = CODEC_CAP_DR1,
+    .capabilities   = CODEC_CAP_SUBFRAMES | CODEC_CAP_DR1,
 };



More information about the ffmpeg-cvslog mailing list