diff vmdav.c @ 2967:ef2149182f1c libavcodec

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 9ff4c2733422
children bfabfdf9ce55
line wrap: on
line diff
--- a/vmdav.c	Sat Dec 17 11:31:56 2005 +0000
+++ b/vmdav.c	Sat Dec 17 18:14:38 2005 +0000
@@ -28,7 +28,7 @@
  * The video decoder outputs PAL8 colorspace data. The decoder expects
  * a 0x330-byte VMD file header to be transmitted via extradata during
  * codec initialization. Each encoded frame that is sent to this decoder
- * is expected to be prepended with the appropriate 16-byte frame 
+ * is expected to be prepended with the appropriate 16-byte frame
  * information record from the VMD file.
  *
  * The audio decoder, like the video decoder, expects each encoded data
@@ -143,7 +143,7 @@
     }
 }
 
-static int rle_unpack(unsigned char *src, unsigned char *dest, 
+static int rle_unpack(unsigned char *src, unsigned char *dest,
     int src_len, int dest_len)
 {
     unsigned char *ps;
@@ -212,7 +212,7 @@
     if (frame_x || frame_y || (frame_width != s->avctx->width) ||
         (frame_height != s->avctx->height)) {
 
-        memcpy(s->frame.data[0], s->prev_frame.data[0], 
+        memcpy(s->frame.data[0], s->prev_frame.data[0],
             s->avctx->height * s->frame.linesize[0]);
     }
 
@@ -331,7 +331,7 @@
 
     /* make sure the VMD header made it */
     if (s->avctx->extradata_size != VMD_HEADER_SIZE) {
-        av_log(s->avctx, AV_LOG_ERROR, "VMD video: expected extradata size of %d\n", 
+        av_log(s->avctx, AV_LOG_ERROR, "VMD video: expected extradata size of %d\n",
             VMD_HEADER_SIZE);
         return -1;
     }