| 173 | } |
| 174 | |
| 175 | static av_always_inline int mp_gradient(MotionPixelsContext *mp, int component, int v) |
| 176 | { |
| 177 | int delta; |
| 178 | |
| 179 | delta = (v - 7) * mp->gradient_scale[component]; |
| 180 | mp->gradient_scale[component] = (v == 0 || v == 14) ? 2 : 1; |
| 181 | return delta; |
| 182 | } |
| 183 | |
| 184 | static YuvPixel mp_get_yuv_from_rgb(MotionPixelsContext *mp, int x, int y) |
| 185 | { |
no outgoing calls
no test coverage detected