Index: video_filter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/video_filter/video_filter.module,v
retrieving revision 1.12.2.16
diff -u -r1.12.2.16 video_filter.module
--- video_filter.module	9 Dec 2010 19:23:02 -0000	1.12.2.16
+++ video_filter.module	15 Dec 2010 23:26:44 -0000
@@ -4,6 +4,13 @@
 module_load_include('inc', 'video_filter', 'video_filter.codecs');
 
 /**
+ * Implementation of hook_init().
+ */
+function video_filter_init() {
+  drupal_add_css(drupal_get_path('module', 'video_filter') . '/video_filter.css');
+}
+
+/**
  * Implementation of hook_filter().
  */
 function video_filter_filter($op, $delta = 0, $format = -1, $text = '') {
@@ -216,7 +223,6 @@
  * @ingroup themeable
  */
 function theme_video_filter_flash($video, $params) {
-  drupal_add_css(drupal_get_path('module', 'video_filter') . '/video_filter.css');
   $output = '';
 
   // Create classes
@@ -291,7 +297,6 @@
   switch ($editor) {
     case 'tinymce':
       if ($version > 3) {
-        drupal_add_css(drupal_get_path('module', 'video_filter') . '/video_filter.css');
         return array(
           'videofilter' => array(
             'path' => drupal_get_path('module', 'video_filter') . '/wysiwyg/tinymce/editor_plugin.js',

