summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpvorbispay.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 18:45:32 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:29 +0200
commitbf9c2067cf181dd99f587ead89b2d820df3f6789 (patch)
treea50f39ee219efe79be5df5da31ef2eba9c77334f /gst/rtp/gstrtpvorbispay.c
parent58a7c2ad8d546898e89e6ab8eeb6cbd59d72c91a (diff)
rtpvorbispay: Remove dead assignment. Value never read after.
Diffstat (limited to 'gst/rtp/gstrtpvorbispay.c')
-rw-r--r--gst/rtp/gstrtpvorbispay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpvorbispay.c b/gst/rtp/gstrtpvorbispay.c
index 458839e8..0965e5ae 100644
--- a/gst/rtp/gstrtpvorbispay.c
+++ b/gst/rtp/gstrtpvorbispay.c
@@ -541,7 +541,7 @@ gst_rtp_vorbis_pay_handle_buffer (GstBaseRTPPayload * basepayload,
if (rtpvorbispay->packet)
flush |= (rtpvorbispay->payload_VDT != VDT);
if (flush)
- ret = gst_rtp_vorbis_pay_flush_packet (rtpvorbispay);
+ gst_rtp_vorbis_pay_flush_packet (rtpvorbispay);
/* create new packet if we must */
if (!rtpvorbispay->packet) {