Home
last modified time | relevance | path

Searched refs:new_v (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Descape130.c35 uint8_t *new_v, *old_v; member
141 s->new_v = s->new_u + avctx->width * avctx->height / 4; in escape130_decode_init()
224 new_cr = s->new_v; in escape130_decode_frame()
315 new_cr = s->new_v; in escape130_decode_frame()
341 FFSWAP(uint8_t*, s->old_v, s->new_v); in escape130_decode_frame()
/third_party/ffmpeg/libavfilter/
Dvf_hue.c131 int32_t i, j, u, v, new_u, new_v; in create_chrominance_lut() local
150 new_v = ((s * u) + (c * v) + (1 << 15) + (128 << 16)) >> 16; in create_chrominance_lut()
154 h->lut_v[i][j] = av_clip_uint8(new_v); in create_chrominance_lut()
169 new_v = ((s * u) + (c * v) + (1 << 15) + (512 << 16)) >> 16; in create_chrominance_lut()
173 h->lut_v10[i][j] = av_clip_uintp2(new_v, 10); in create_chrominance_lut()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dmarshalling_test.cc813 T new_v; in TestRoundtrip() local
815 EXPECT_TRUE(absl::ParseFlag(absl::UnparseFlag(v), &new_v, &err)); in TestRoundtrip()
816 EXPECT_EQ(new_v, v); in TestRoundtrip()