Lines Matching defs:input
154 const uint8_t *input = avpkt->data;
164 // Convert input to BE format
165 mrk = AV_RB32(input);
172 ret = avpriv_dca_convert_bitstream(input + i, input_size - i, s->buffer, s->buffer_size);
179 input = s->buffer;
186 if (AV_RB32(input) == DCA_SYNCWORD_CORE_BE) {
189 if ((ret = ff_dca_core_parse(&s->core, input, input_size)) < 0)
197 input += frame_size;
206 if (AV_RB32(input) == DCA_SYNCWORD_SUBSTREAM) {
207 if ((ret = ff_dca_exss_parse(&s->exss, input, input_size)) < 0) {
218 if ((ret = ff_dca_xll_parse(&s->xll, input, asset)) < 0) {
233 if ((ret = ff_dca_lbr_parse(&s->lbr, input, asset)) < 0) {
243 && (ret = ff_dca_core_parse_exss(&s->core, input, asset)) < 0)