diff options
author | Matej Knopp <matej.knopp@gmail.com> | 2013-09-25 19:29:24 +0200 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-09-25 23:13:48 +0100 |
commit | cb70260b4813ed3a7c79192d4361bf9837dcec9a (patch) | |
tree | 3f0d9c0a35f90a2ddb9d575e144327ea6e323354 | |
parent | c9ff3e4f9867767e51dfa2bafd79f2a302f6305c (diff) |
pbutils: add MPEG 2 AAC description
https://bugzilla.gnome.org/show_bug.cgi?id=708773
-rw-r--r-- | gst-libs/gst/pbutils/descriptions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst-libs/gst/pbutils/descriptions.c b/gst-libs/gst/pbutils/descriptions.c index 43802297c..b50baab4d 100644 --- a/gst-libs/gst/pbutils/descriptions.c +++ b/gst-libs/gst/pbutils/descriptions.c @@ -610,6 +610,8 @@ format_info_get_desc (const FormatInfo * info, const GstCaps * caps) } GST_WARNING ("Unexpected MPEG-1 layer in %" GST_PTR_FORMAT, caps); return g_strdup ("MPEG-1 Audio"); + case 2: + return g_strdup ("MPEG-2 AAC"); case 4: return g_strdup ("MPEG-4 AAC"); default: |