summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 18:45:07 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:29 +0200
commit58a7c2ad8d546898e89e6ab8eeb6cbd59d72c91a (patch)
tree6f06ba9ba265775c64dd33583ec17ce309ff7cea
parent8cf696a1f1e8264bc14b08a25946a9992d2f8c60 (diff)
rtptheorapay: Remove dead assignment. Value never read after.
-rw-r--r--gst/rtp/gstrtptheorapay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtptheorapay.c b/gst/rtp/gstrtptheorapay.c
index e09da0458..5ce04863c 100644
--- a/gst/rtp/gstrtptheorapay.c
+++ b/gst/rtp/gstrtptheorapay.c
@@ -556,7 +556,7 @@ gst_rtp_theora_pay_handle_buffer (GstBaseRTPPayload * basepayload,
if (rtptheorapay->packet)
flush |= (rtptheorapay->payload_TDT != TDT);
if (flush)
- ret = gst_rtp_theora_pay_flush_packet (rtptheorapay);
+ gst_rtp_theora_pay_flush_packet (rtptheorapay);
/* create new packet if we must */
if (!rtptheorapay->packet) {