diff options
author | phintuka <phintuka> | 2010-05-22 12:09:24 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-05-22 12:09:24 +0000 |
commit | 743e1c89f8cd9da142d58d17cc8349fed7e60302 (patch) | |
tree | 88c4ca5f1406504d3a9f4483b50a2f6426dc903c | |
parent | 87163245183e624468c7329434a088b8e08c019a (diff) | |
download | xineliboutput-743e1c89f8cd9da142d58d17cc8349fed7e60302.tar.gz xineliboutput-743e1c89f8cd9da142d58d17cc8349fed7e60302.tar.bz2 |
Fixed warnings (missing default case)
(Thanks to Winfried Koehler)
-rw-r--r-- | xine_post_autocrop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xine_post_autocrop.c b/xine_post_autocrop.c index 28185a7b..0764a7e0 100644 --- a/xine_post_autocrop.c +++ b/xine_post_autocrop.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_post_autocrop.c,v 1.38 2010-01-30 08:32:06 phintuka Exp $ + * $Id: xine_post_autocrop.c,v 1.39 2010-05-22 12:09:24 phintuka Exp $ * */ @@ -878,6 +878,7 @@ static void analyze_frame(vo_frame_t *frame, int *crop_top, int *crop_bottom) if(end_line >= frame->height) end_line = frame->height-1; TRACE2(" wide -> center bottom\n"); + default:; } } else { @@ -1518,6 +1519,7 @@ static int32_t autocrop_overlay_add_event(video_overlay_manager_t *this_gen, voi } } break; + default:; } } } |