aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h265.h
diff options
context:
space:
mode:
authorAsaf Kave <kaveasaf@gmail.com>2018-07-16 14:23:50 +0300
committerPascal Quantin <pascal.quantin@gmail.com>2018-07-18 08:33:35 +0000
commit8bb54d7a61aac136999ca3b8d527eb873998c526 (patch)
tree5ecb351b55d71ae271ca56f3a6050b89243661a8 /epan/dissectors/packet-h265.h
parent9795cc02854827ac12f1769eb5f5127b03deb0ed (diff)
H.265: Parsing media format specific parameter from SDP.
Change-Id: I2607068671f370517b1f0a2f65f47a221b630d91 Reviewed-on: https://code.wireshark.org/review/28725 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-h265.h')
-rw-r--r--epan/dissectors/packet-h265.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/epan/dissectors/packet-h265.h b/epan/dissectors/packet-h265.h
new file mode 100644
index 0000000000..2c7fce7e79
--- /dev/null
+++ b/epan/dissectors/packet-h265.h
@@ -0,0 +1,22 @@
+/* packet-h265.h
+* Routines for H.265 dissection
+* Copyright 2018, Asaf Kave <kave.asaf[at]gmail.com>
+* Based on the H.264 dissector, thanks!
+*
+* Wireshark - Network traffic analyzer
+* By Gerald Combs <gerald@wireshark.org>
+* Copyright 1998 Gerald Combs
+*
+* SPDX-License-Identifier: GPL-2.0-or-later
+*
+* References:
+* https://tools.ietf.org/html/rfc7798
+* http://www.itu.int/rec/T-REC-H.265/en
+*/
+
+#ifndef __PACKET_H265_H__
+#define __PACKET_H265_H__
+
+void dissect_h265_format_specific_parameter(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo);
+
+#endif /* __PACKET_H265_H__ */