gst/realmedia/: Fix some compiler warnings shown on Forte.

Original commit message from CVS:
* gst/realmedia/asmrules.c: (gst_asm_scan_parse_expression),
(gst_asm_scan_parse_condition):
* gst/realmedia/rmdemux.c: (gst_rmdemux_parse_video_packet):
Fix some compiler warnings shown on Forte.
This commit is contained in:
Jan Schmidt 2007-10-08 17:51:33 +00:00
parent 97b57bd604
commit 14598caba9
3 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2007-10-08 Jan Schmidt <Jan.Schmidt@sun.com>
* gst/realmedia/asmrules.c: (gst_asm_scan_parse_expression),
(gst_asm_scan_parse_condition):
* gst/realmedia/rmdemux.c: (gst_rmdemux_parse_video_packet):
Fix some compiler warnings shown on Forte.
2007-09-29 Sebastien Moutte <sebastien@moutte.net>
* gst/mpegaudioparse/gstmpegaudioparse.c: (mp3parse_time_to_bytepos),

View file

@ -495,7 +495,7 @@ gst_asm_scan_parse_expression (GstASMScan * scan)
node = gst_asm_node_new ();
node->type = GST_ASM_NODE_OPERATOR;
node->data.optype = scan->token;
node->data.optype = (GstASMOp) scan->token;
gst_asm_scan_next_token (scan);
@ -517,7 +517,7 @@ gst_asm_scan_parse_condition (GstASMScan * scan)
node = gst_asm_node_new ();
node->type = GST_ASM_NODE_OPERATOR;
node->data.optype = scan->token;
node->data.optype = (GstASMOp) scan->token;
gst_asm_scan_next_token (scan);

View file

@ -2139,7 +2139,7 @@ gst_rmdemux_parse_video_packet (GstRMDemux * rmdemux, GstRMDemuxStream * stream,
guint8 pkg_header;
guint pkg_offset;
guint pkg_length;
guint pkg_subseq = 0, pkg_seqnum = -1;
guint pkg_subseq = 0, pkg_seqnum = G_MAXUINT;
guint fragment_size;
GstBuffer *fragment;