diff options
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r-- | libvo/video_out.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c index c727d46ab1..ecb751e12e 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -124,6 +124,7 @@ extern vo_functions_t video_out_tga; #ifdef MACOSX extern vo_functions_t video_out_quartz; #endif +extern vo_functions_t video_out_pnm; vo_functions_t* video_out_drivers[] = { @@ -240,6 +241,7 @@ vo_functions_t* video_out_drivers[] = #ifdef HAVE_TGA &video_out_tga, #endif + &video_out_pnm, NULL }; |