aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-11-11 21:03:03 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-11-11 21:03:03 +0000
commit2436294f2ab3a89291204e28fb56e4c8be173a86 (patch)
treed67208e814e22b2f418bf8e5d1ece9f9c0bc85a9
parent93b9635a4126c828b35bee20fed89ea5758b7611 (diff)
Mark parameters as unused.
svn path=/trunk/; revision=26755
-rw-r--r--epan/dissectors/packet-mp4ves.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-mp4ves.c b/epan/dissectors/packet-mp4ves.c
index 339d5ef04f..bfb66d1327 100644
--- a/epan/dissectors/packet-mp4ves.c
+++ b/epan/dissectors/packet-mp4ves.c
@@ -254,7 +254,7 @@ static const value_string mp4ves_video_object_type_indication_vals[] = {
};
/* 6.2.2.1 User data */
static int
-dissect_mp4ves_user_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int bit_offset)
+dissect_mp4ves_user_data(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int bit_offset)
{
int start_bit_offset;
@@ -281,7 +281,7 @@ one_bit
}
*/
static int
-dissect_mp4ves_next_start_code(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int bit_offset)
+dissect_mp4ves_next_start_code(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int bit_offset)
{
guint8 zero_bit;
int start_bit_offset;
@@ -323,7 +323,7 @@ video_signal_type() {
}
*/
static int
-dissect_mp4ves_visual_object_type(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int bit_offset)
+dissect_mp4ves_visual_object_type(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int bit_offset)
{
guint8 video_signal_type, colour_description;
@@ -353,7 +353,7 @@ dissect_mp4ves_visual_object_type(tvbuff_t *tvb, packet_info *pinfo, proto_tree
* 6.2.3 Video Object Layer
*/
static int
-dissect_mp4ves_VideoObjectLayer(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int bit_offset)
+dissect_mp4ves_VideoObjectLayer(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int bit_offset)
{
guint32 dword;
guint8 octet;