mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 06:26:23 +00:00
Fix vorbisenc EOS problems
Original commit message from CVS: Fix vorbisenc EOS problems
This commit is contained in:
parent
4f69b5040b
commit
fa13715d58
1 changed files with 3 additions and 1 deletions
|
@ -232,6 +232,7 @@ gst_vorbisenc_chain (GstPad * pad, GstBuffer * buf)
|
||||||
Tell the library we're at end of stream so that it can handle
|
Tell the library we're at end of stream so that it can handle
|
||||||
the last frame and mark end of stream in the output properly */
|
the last frame and mark end of stream in the output properly */
|
||||||
vorbis_analysis_wrote (&vorbisenc->vd, 0);
|
vorbis_analysis_wrote (&vorbisenc->vd, 0);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
gst_pad_event_default (pad, GST_EVENT (buf));
|
gst_pad_event_default (pad, GST_EVENT (buf));
|
||||||
break;
|
break;
|
||||||
|
@ -312,8 +313,9 @@ gst_vorbisenc_chain (GstPad * pad, GstBuffer * buf)
|
||||||
vorbis_block_clear (&vorbisenc->vb);
|
vorbis_block_clear (&vorbisenc->vb);
|
||||||
vorbis_dsp_clear (&vorbisenc->vd);
|
vorbis_dsp_clear (&vorbisenc->vd);
|
||||||
vorbis_info_clear (&vorbisenc->vi);
|
vorbis_info_clear (&vorbisenc->vi);
|
||||||
|
gst_pad_push (vorbisenc->srcpad, GST_BUFFER (gst_event_new (GST_EVENT_EOS)));
|
||||||
|
gst_element_set_eos (GST_ELEMENT (vorbisenc));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue