diff options
| author | Edward Hervey <bilboed@bilboed.com> | 2009-04-18 18:45:32 +0200 | 
|---|---|---|
| committer | Edward Hervey <bilboed@bilboed.com> | 2009-04-18 18:51:29 +0200 | 
| commit | bf9c2067cf181dd99f587ead89b2d820df3f6789 (patch) | |
| tree | a50f39ee219efe79be5df5da31ef2eba9c77334f /gst/rtp/gstrtpvorbispay.c | |
| parent | 58a7c2ad8d546898e89e6ab8eeb6cbd59d72c91a (diff) | |
rtpvorbispay: Remove dead assignment. Value never read after.
Diffstat (limited to 'gst/rtp/gstrtpvorbispay.c')
| -rw-r--r-- | gst/rtp/gstrtpvorbispay.c | 2 | 
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) { | 
