Lines Matching defs:res
320 int res;
325 res = aom_codec_control(&ctx->encoder, id, val);
326 if (res != AOM_CODEC_OK) {
350 int res;
355 res = aom_codec_control(&ctx->encoder, id, ptr);
356 if (res != AOM_CODEC_OK) {
669 int res;
676 if ((res = aom_codec_enc_config_default(iface, &enccfg, ctx->usage)) != AOM_CODEC_OK) {
678 aom_codec_err_to_string(res));
819 res = choose_tiling(avctx, &enccfg);
820 if (res < 0)
821 return res;
836 res = aom_codec_enc_init(&ctx->encoder, iface, &enccfg, flags);
837 if (res != AOM_CODEC_OK) {
1215 int res, coded_size;
1240 res = aom_codec_encode(&ctx->encoder, rawimg, timestamp,
1242 if (res != AOM_CODEC_OK) {