Compiling error when using TVout library

I am attempting to use the TVout library (https://code.google.com/p/arduino-tvout/), and all of my programs consistantly come out with this error.

Error Compiling:

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp: In member function 'void TVout::render_setup(uint8_t)':

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp:730: error: '_VID_DDR' was not declared in this scope

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp:730: error: '_VID_PIN' was not declared in this scope

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp:731: error: '_SYNC_DDR' was not declared in this scope

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp:731: error: '_SYNC_PIN' was not declared in this scope

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp:732: error: '_VID_PORT' was not declared in this scope

C:\Documents and Settings\Skye\My Documents\Arduino\libraries\TVout\TVout.cpp:733: error: '_SYNC_PORT' was not declared in this scope

 

What do tyou suggest I do?

 

Update:

Thanks to oddbot, I have reduced that long list of errors to this:

 

The New Error:

sketch_jan01b.ino: In function 'void setup()':

sketch_jan01b:9: error: 'font6x8' was not declared in this scope

 

The New Code:

#include <TVout.h>

#inclued <fontALLL.h>

 

TVout TV;

 

void setup()

  {

    TV.begin(_NTSC);

    TV.select_font(font6x8);

  }

 

void loop()

  {

  }