Fix TREMELO -> TREMOLO typo
This commit is contained in:
parent
a8a3e3f7d5
commit
22e6c28284
@ -432,7 +432,7 @@ vorbis_handle_header_packet (GstVorbisDec * vd, ogg_packet * packet)
|
|||||||
/* Packetno = 0 if the first byte is exactly 0x01 */
|
/* Packetno = 0 if the first byte is exactly 0x01 */
|
||||||
packet->b_o_s = ((gst_ogg_packet_data (packet))[0] == 0x1) ? 1 : 0;
|
packet->b_o_s = ((gst_ogg_packet_data (packet))[0] == 0x1) ? 1 : 0;
|
||||||
|
|
||||||
#ifdef USE_TREMELO
|
#ifdef USE_TREMOLO
|
||||||
if ((ret = vorbis_dsp_headerin (&vd->vi, &vd->vc, packet)))
|
if ((ret = vorbis_dsp_headerin (&vd->vi, &vd->vc, packet)))
|
||||||
#else
|
#else
|
||||||
if ((ret = vorbis_synthesis_headerin (&vd->vi, &vd->vc, packet)))
|
if ((ret = vorbis_synthesis_headerin (&vd->vi, &vd->vc, packet)))
|
||||||
@ -533,7 +533,7 @@ static GstFlowReturn
|
|||||||
vorbis_handle_data_packet (GstVorbisDec * vd, ogg_packet * packet,
|
vorbis_handle_data_packet (GstVorbisDec * vd, ogg_packet * packet,
|
||||||
GstClockTime timestamp, GstClockTime duration)
|
GstClockTime timestamp, GstClockTime duration)
|
||||||
{
|
{
|
||||||
#ifdef USE_TREMELO
|
#ifdef USE_TREMOLO
|
||||||
vorbis_sample_t *pcm;
|
vorbis_sample_t *pcm;
|
||||||
#else
|
#else
|
||||||
vorbis_sample_t **pcm;
|
vorbis_sample_t **pcm;
|
||||||
@ -556,7 +556,7 @@ vorbis_handle_data_packet (GstVorbisDec * vd, ogg_packet * packet,
|
|||||||
* throw away too much. For now we decode everything and clip right
|
* throw away too much. For now we decode everything and clip right
|
||||||
* before pushing data. */
|
* before pushing data. */
|
||||||
|
|
||||||
#ifdef USE_TREMELO
|
#ifdef USE_TREMOLO
|
||||||
if (G_UNLIKELY (vorbis_dsp_synthesis (&vd->vb, packet, 1)))
|
if (G_UNLIKELY (vorbis_dsp_synthesis (&vd->vb, packet, 1)))
|
||||||
goto could_not_read;
|
goto could_not_read;
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user