From 324ebd19e335749fde636812261eeda76be3ae18 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Wed, 24 Sep 2014 20:38:31 +0530 Subject: [PATCH] audio: Trivial comment for unhandled MPEG-2 payloading case The spec mentions a version of the MPEG-2 frame with a base frame and extension frame. I don't have IEC 13818-3 to figure out what that is, and don't see any references in search results, so it's a FIXME for now. https://bugzilla.gnome.org/show_bug.cgi?id=736797 --- gst-libs/gst/audio/gstaudioiec61937.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst-libs/gst/audio/gstaudioiec61937.c b/gst-libs/gst/audio/gstaudioiec61937.c index c67ec689d6..6ae854b926 100644 --- a/gst-libs/gst/audio/gstaudioiec61937.c +++ b/gst-libs/gst/audio/gstaudioiec61937.c @@ -276,7 +276,8 @@ gst_audio_iec61937_payload (const guint8 * src, guint src_n, guint8 * dst, * 06 = MPEG 2, with extension * 08 - MPEG 2 LSF, Layer 1 * 09 - MPEG 2 LSF, Layer 2 - * 10 - MPEG 2 LSF, Layer 3 */ + * 10 - MPEG 2 LSF, Layer 3 + * FIXME: we don't handle type 06 at the moment */ if (version == 1 && layer == 1) dst[five] = 0x04; else if ((version == 1 && (layer == 2 || layer == 3)) ||