diff options
author | Edward Hervey <bilboed@bilboed.com> | 2009-04-18 18:11:00 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-04-18 18:51:28 +0200 |
commit | 0cb5b42d546538b455ac3bbe90b07e3eb67eb820 (patch) | |
tree | 24b178742be806e745b7a3891aa0d63920c364b4 /gst/smpte/paint.c | |
parent | cdb03bdc2b4548909f3f47eec6dfbbb3b5159411 (diff) |
Remove trivial unused variables detected by CLang static analyzer.
Diffstat (limited to 'gst/smpte/paint.c')
-rw-r--r-- | gst/smpte/paint.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/smpte/paint.c b/gst/smpte/paint.c index 25f82ea4..7c2ba0dc 100644 --- a/gst/smpte/paint.c +++ b/gst/smpte/paint.c @@ -263,10 +263,9 @@ gst_smpte_paint_triangle_clock (guint32 * dest, gint stride, { gint i; gint sign; - gfloat angle, angle_s, angle_e; + gfloat angle, angle_e; gfloat len1; - angle_s = 0.0; angle_e = acos (((x1 - x0) * (x2 - x0) + (y1 - y0) * (y2 - y0)) / (sqrt ((x1 - x0) * (x1 - x0) + (y1 - y0) * (y1 - y0)) * sqrt ((x2 - x0) * (x2 - x0) + (y2 - y0) * (y2 - y0)))); |