aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/file-mp4.c
diff options
context:
space:
mode:
authorTyson Key <tyson.key@gmail.com>2015-07-05 18:53:23 +0000
committerMichael Mann <mmann78@netscape.net>2015-07-05 21:35:54 +0000
commitfbd81bfd6fdf98224f873205971a7cac3d2629c6 (patch)
tree07f3c16cfc4848ef91cb4b7b56e022ed8c7bf955 /epan/dissectors/file-mp4.c
parent1aecd8867fad64cc2517a25c8aac2956b417ab0c (diff)
Associate the file-mp4 dissector with the audio/mp4 MIME type
Bug:11338 Change-Id: Ied463ea5ef65bcc657e09c0d5f7983cb4dcd581a Reviewed-on: https://code.wireshark.org/review/9503 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/file-mp4.c')
-rw-r--r--epan/dissectors/file-mp4.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/file-mp4.c b/epan/dissectors/file-mp4.c
index cdd1f90a49..1ceff7d527 100644
--- a/epan/dissectors/file-mp4.c
+++ b/epan/dissectors/file-mp4.c
@@ -808,6 +808,7 @@ proto_reg_handoff_mp4(void)
{
dissector_handle_t mp4_handle = new_create_dissector_handle(dissect_mp4, proto_mp4);
dissector_add_string("media_type", "video/mp4", mp4_handle);
+ dissector_add_string("media_type", "audio/mp4", mp4_handle);
}