Diff between 8b1b5b1b3f37cbb68172872ac85633571586b726 and 53a4f2a82a8f9472754a5e35b82a2a9f04792b62
Changed Files
| File | Additions | Deletions | Status |
| tools/avinfo.c | +7 | -0 | modified |
Full Patch
diff --git a/tools/avinfo.c b/tools/avinfo.c
index d237742..a4deaac 100644
--- a/tools/avinfo.c
+++ b/tools/avinfo.c
@@ -170,6 +170,10 @@ static void print_vendor(a2dp_vendor_codec_t *vendor)
vendor->codec_id[0], vendor->codec_id[1]);
}
+static void print_mpeg24(a2dp_mpeg_t *mpeg)
+{
+ printf("\tMedia Codec: MPEG24\n");
+}
static void print_mpeg12(a2dp_mpeg_t *mpeg)
{
@@ -304,6 +308,9 @@ static void print_media_codec(struct avdtp_media_codec_capability *cap)
case A2DP_CODEC_MPEG12:
print_mpeg12((void *) cap->data);
break;
+ case A2DP_CODEC_MPEG24:
+ print_mpeg24((void *) cap->data);
+ break;
case A2DP_CODEC_VENDOR:
print_vendor((void *) cap->data);
break;