Lines Matching defs:data
183 ** data somewhat, it also decreases the quality.
201 /* Encoder latency, the amount to skip before valid data comes out. */
242 /* Current data fill (decode) or target (encode) of buffer expressed in samples/channel */
311 static int ogg_opus_command (SF_PRIVATE *psf, int command, void *data, int datasize) ;
516 psf_log_printf (psf, "Opus : Error, extra data in Ogg Opus header.\n") ;
550 { /* out of data... technically that's malformed. */
1445 { psf_log_printf (psf, "Opus : First data page's granule position is less than total number of samples on the page!\n") ;
1451 { psf_log_printf (psf, "Opus : First data page is also the last, and granule position has an (ambigious) offset.\n") ;
1646 ** Page seek failed, what to do? Could be bad data. We can
1691 ogg_opus_command (SF_PRIVATE *psf, int command, void *data, int datasize)
1709 if (data == NULL || datasize != SIGNED_SIZEOF (double))
1712 latency = *((double *) data) ;
1727 if (data == NULL || datasize != SIGNED_SIZEOF (double))
1731 quality = *((double *) data) ;
1742 if (data == NULL || datasize != SIGNED_SIZEOF (int))
1753 oopus->header.input_samplerate = *((int *) data) ;
1758 if ((error = ogg_opus_setup_decoder (psf, *((int *) data))))
1769 if (data == NULL || datasize != SIGNED_SIZEOF (int))
1771 *((int *) data) = oopus->header.input_samplerate ;
1775 if (data == NULL || datasize != sizeof (int32_t))
1778 *((int32_t *) data) = odata->ostream.serialno ;