Lines Matching defs:ret
246 int ret = 0;
258 ret = AVERROR(ENOMEM);
271 ret = AVERROR_INVALIDDATA;
280 ret = AVERROR_INVALIDDATA;
288 ret = AVERROR_INVALIDDATA;
346 ret = AVERROR_INVALIDDATA;
368 ret = AVERROR_INVALIDDATA;
390 ret = AVERROR(ENOMEM);
425 ret = AVERROR_INVALIDDATA;
431 ret = AVERROR_INVALIDDATA;
438 ret = AVERROR_INVALIDDATA;
453 if ((ret = init_vlc(&codebook_setup->vlc, codebook_setup->nb_bits,
473 return ret;
507 int i, j, k, ret;
653 if ((ret = create_map(vc, i)) < 0)
654 return ret;
922 int ret;
931 if ((ret = vorbis_parse_setup_hdr_codebooks(vc))) {
933 return ret;
935 if ((ret = vorbis_parse_setup_hdr_tdtransforms(vc))) {
937 return ret;
939 if ((ret = vorbis_parse_setup_hdr_floors(vc))) {
941 return ret;
943 if ((ret = vorbis_parse_setup_hdr_residues(vc))) {
945 return ret;
947 if ((ret = vorbis_parse_setup_hdr_mappings(vc))) {
949 return ret;
951 if ((ret = vorbis_parse_setup_hdr_modes(vc))) {
953 return ret;
1043 int hdr_type, ret;
1055 if ((ret = avpriv_split_xiph_headers(headers, headers_len, 30, header_start, header_len)) < 0) {
1057 return ret;
1066 if ((ret = vorbis_parse_id_hdr(vc))) {
1069 return ret;
1079 if ((ret = vorbis_parse_setup_hdr(vc))) {
1082 return ret;
1439 int ret = setup_classifs(vc, vr, do_not_decode, ch_used, partition_count, ptns_to_read);
1440 if (ret < 0)
1441 return ret;
1662 int ret;
1669 ret = floor->decode(vc, &floor->data, floor_ptr[i]);
1671 if (ret < 0) {
1675 no_residue[i] = ret;
1692 int ret;
1712 ret = vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, vlen, ch_left);
1713 if (ret < 0)
1714 return ret;
1752 float *ret = floor_ptr[j];
1757 vc->fdsp->vector_fmul_window(ret, saved, buf, win, blocksize / 4);
1759 vc->fdsp->vector_fmul_window(ret, saved, buf, win, bs0 / 4);
1760 memcpy(ret+bs0/2, buf+bs0/4, ((bs1-bs0)/4) * sizeof(float));
1762 memcpy(ret, saved, ((bs1 - bs0) / 4) * sizeof(float));
1763 vc->fdsp->vector_fmul_window(ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf, win, bs0 / 4);
1782 int i, len, ret;
1787 if ((ret = init_get_bits8(gb, buf + 1, buf_size - 1)) < 0)
1788 return ret;
1791 if ((ret = vorbis_parse_id_hdr(vc))) {
1794 return ret;
1815 if ((ret = init_get_bits8(gb, buf + 1, buf_size - 1)) < 0)
1816 return ret;
1818 if ((ret = vorbis_parse_setup_hdr(vc))) {
1821 return ret;
1833 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
1834 return ret;
1846 if ((ret = init_get_bits8(gb, buf, buf_size)) < 0)
1847 return ret;