[FFmpeg-devel] [PATCH 7/8] avformat/aiff: G.728 muxing and demuxing

Peter Ross pross at xvid.org
Sun Jan 12 04:38:24 EET 2025


---
 libavformat/aiff.c    | 1 +
 libavformat/aiffdec.c | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/libavformat/aiff.c b/libavformat/aiff.c
index 1ceac69a70..907f7d8d28 100644
--- a/libavformat/aiff.c
+++ b/libavformat/aiff.c
@@ -40,6 +40,7 @@ const AVCodecTag ff_codec_aiff_tags[] = {
     { AV_CODEC_ID_GSM,          MKTAG('G','S','M',' ') },
     { AV_CODEC_ID_ADPCM_G722,   MKTAG('G','7','2','2') },
     { AV_CODEC_ID_ADPCM_G726LE, MKTAG('G','7','2','6') },
+    { AV_CODEC_ID_G728,         MKTAG('G','7','2','8') },
     { AV_CODEC_ID_PCM_S16BE,    MKTAG('t','w','o','s') },
     { AV_CODEC_ID_PCM_S16LE,    MKTAG('s','o','w','t') },
     { AV_CODEC_ID_ADPCM_IMA_QT, MKTAG('i','m','a','4') },
diff --git a/libavformat/aiffdec.c b/libavformat/aiffdec.c
index bd5bd2e4bb..aeb00cccd0 100644
--- a/libavformat/aiffdec.c
+++ b/libavformat/aiffdec.c
@@ -174,6 +174,9 @@ static int get_aiff_header(AVFormatContext *s, int64_t size,
         case AV_CODEC_ID_GSM:
             par->block_align = 33;
             break;
+        case AV_CODEC_ID_G728:
+            par->block_align = 5;
+            break;
         default:
             aiff->block_duration = 1;
             break;
-- 
2.45.2

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20250112/8f093bf0/attachment.sig>


More information about the ffmpeg-devel mailing list