summaryrefslogtreecommitdiffstats
path: root/gst/rtp
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 18:50:32 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:30 +0200
commit1554c6637fe31325a95cdfda607db4cbc28b4560 (patch)
tree2ea8beda9c8e51240446ce22234ba95b13fa2245 /gst/rtp
parent3efcf936e136f4517137683b6e52704d844d1b7e (diff)
rtph263pay: Remove dead assignments, the variables are never read after.
Diffstat (limited to 'gst/rtp')
-rw-r--r--gst/rtp/gstrtph263pay.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/gst/rtp/gstrtph263pay.c b/gst/rtp/gstrtph263pay.c
index afad63b9..c949754c 100644
--- a/gst/rtp/gstrtph263pay.c
+++ b/gst/rtp/gstrtph263pay.c
@@ -1047,9 +1047,7 @@ gst_rtp_h263_pay_B_mbfinder (GstRtpH263PayContext * context,
&gob->end);
}
//Step 5 go trough the blocks - decode DC and TCOEF
- i = 0;
last = 0;
- ind = 0;
for (i = 0; i < N_BLOCKS; i++) {
GST_DEBUG ("Decoding INTRADC and TCOEF, i:%d", i);
@@ -1187,9 +1185,7 @@ gst_rtp_h263_pay_B_mbfinder (GstRtpH263PayContext * context,
}
//Step 5 go trough the blocks - decode DC and TCOEF
- i = 0;
last = 0;
- ind = 0;
for (i = 0; i < N_BLOCKS; i++) {
//if MB type 3 or 4 then INTRADC coef are present in blocks
@@ -1527,10 +1523,8 @@ gst_rtp_h263_pay_mode_B_fragment (GstRtpH263Pay * rtph263pay,
GST_DEBUG ("GQUANT IS: %08x", gob->quant);
// We are on MB layer
- mb = 0;
-
- m = mac = a = gst_rtp_h263_pay_mb_new (boundry, 0);
+ m = mac = gst_rtp_h263_pay_mb_new (boundry, 0);
for (mb = 0; mb < format_props[context->piclayer->ptype_srcformat][1]; mb++) {
GST_DEBUG ("================ START MB %d =================", mb);