diff --git video.field.inc video.field.inc
index 5dde45d..08def18 100644
--- video.field.inc
+++ video.field.inc
@@ -253,7 +253,7 @@ function video_field_widget_process($element, &$form_state, $form) {
   if ($element['#file'] && $widget_settings['preview_image_style']) {
     $element['preview'] = array(
       '#type' => 'markup',
-      '#markup' => theme('image_style', array('style_name' => $widget_settings['preview_image_style'], 'path' => $element['#file']->uri)),
+      '#markup' => theme('image_style', array('style_name' => $widget_settings['preview_image_style'], 'path' => $element['#file']->uri),'attributes'=>array()),
     );
   }
 
@@ -421,6 +421,7 @@ function theme_video_formatter($variables) {
   $image = array(
     'path' => $item['uri'],
     'alt' => $item['alt'],
+    'attributes' => array(),
   );
   // Do not output an empty 'title' attribute.
   if (drupal_strlen($item['title']) > 0) {
