| 128 | } |
| 129 | |
| 130 | static int mp_gradient(MotionPixelsContext *mp, int component, int v) |
| 131 | { |
| 132 | int delta; |
| 133 | |
| 134 | delta = (v - 7) * mp->gradient_scale[component]; |
| 135 | mp->gradient_scale[component] = (v == 0 || v == 14) ? 2 : 1; |
| 136 | return delta; |
| 137 | } |
| 138 | |
| 139 | static YuvPixel mp_get_yuv_from_rgb(MotionPixelsContext *mp, int x, int y) |
| 140 | { |
no outgoing calls
no test coverage detected