Lines Matching defs:res
59 int res;
62 if ((res = av_new_packet(pkt, DIRAC_DATA_UNIT_HEADER_SIZE + len)) < 0)
63 return res;
77 int res;
81 if ((res = av_new_packet(pkt, DIRAC_DATA_UNIT_HEADER_SIZE)) < 0)
82 return res;
96 int res;
126 res = avio_open_dyn_buf(&pl_ctx->buf);
127 if (res < 0)
128 return res;
131 res = avio_seek(pl_ctx->buf, DIRAC_DATA_UNIT_HEADER_SIZE + DIRAC_PIC_NR_SIZE, SEEK_SET);
132 if (res < 0)
133 return res;
164 res = ff_rtp_finalize_packet(pkt, &pl_ctx->buf, st->index);
165 if (res < 0)
166 return res;
182 int res = 0;
203 res = vc2hq_handle_sequence_header(pl_ctx, st, pkt, buf + RTP_VC2HQ_PL_HEADER_SIZE, len - RTP_VC2HQ_PL_HEADER_SIZE);
207 res = vc2hq_mark_end_of_sequence(pl_ctx, st, pkt);
211 res = vc2hq_handle_frame_fragment(ctx, pl_ctx, st, pkt, timestamp, buf, len, flags);
216 return res;