diff options
Diffstat (limited to 'live.c')
-rw-r--r-- | live.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -535,9 +535,11 @@ int main(int argc __attribute__((__unused__)), char *argv[] __attribute__((__unu exit_code = EXIT_SUCCESS; cleanup: - /* Cleanup the ISP resources. */ + /* Cleanup the ISP and video output resources. */ if (isp) omap3_isp_close(isp); + if (vo) + vo_cleanup(vo); return exit_code; } |