home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / LINUX / gopchop-1.1.7.tar.tar / gopchop-1.1.7.tar / gopchop-1.1.7 / libvo / video_out_pgm.c < prev    next >
C/C++ Source or Header  |  2005-04-28  |  11KB  |  343 lines

  1. /*
  2.  * video_out_pgm.c
  3.  * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
  4.  * Copyright (C) 2003      Regis Duchesne <hpreg@zoy.org>
  5.  * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  6.  * MD5 code derived from linux kernel GPL implementation
  7.  *
  8.  * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
  9.  * See http://libmpeg2.sourceforge.net/ for updates.
  10.  *
  11.  * mpeg2dec is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * mpeg2dec is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  24.  */
  25.  
  26. #include "config.h"
  27.  
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <inttypes.h>
  32.  
  33. #include "video_out.h"
  34.  
  35. typedef struct pgm_instance_s {
  36.     vo_instance_t vo;
  37.     int framenum;
  38.     int width;
  39.     int height;
  40.     int chroma_width;
  41.     int chroma_height;
  42.     char header[1024];
  43.     void (* writer) (struct pgm_instance_s *, uint8_t *, size_t);
  44.     FILE * file;
  45.     uint32_t md5_hash[4];
  46.     uint32_t md5_block[16];
  47.     uint32_t md5_bytes;
  48. } pgm_instance_t;
  49.  
  50. static void file_writer (pgm_instance_t * instance, uint8_t * ptr, size_t size)
  51. {
  52.     fwrite (ptr, size, 1, instance->file);
  53. }
  54.  
  55. static void internal_draw_frame (pgm_instance_t * instance,
  56.                  uint8_t * const * buf)
  57. {
  58.     static uint8_t black[16384] = { 0 };
  59.     int i;
  60.  
  61.     instance->writer (instance, (uint8_t *)instance->header,
  62.               strlen (instance->header));
  63.     for (i = 0; i < instance->height; i++) {
  64.     instance->writer (instance, buf[0] + i * instance->width,
  65.               instance->width);
  66.     instance->writer (instance, black,
  67.               2 * instance->chroma_width - instance->width);
  68.     }
  69.     for (i = 0; i < instance->chroma_height; i++) {
  70.     instance->writer (instance, buf[1] + i * instance->chroma_width,
  71.               instance->chroma_width);
  72.     instance->writer (instance, buf[2] + i * instance->chroma_width,
  73.               instance->chroma_width);
  74.     }
  75. }
  76.  
  77. static void pgm_draw_frame (vo_instance_t * _instance,
  78.                 uint8_t * const * buf, void * id)
  79. {
  80.     pgm_instance_t * instance = (pgm_instance_t *) _instance;
  81.     char filename[128];
  82.  
  83.     sprintf (filename, "%d.pgm", instance->framenum++);
  84.     instance->file = fopen (filename, "wb");
  85.     if (instance->file == NULL)
  86.     return;
  87.     internal_draw_frame (instance, buf);
  88.     fclose (instance->file);
  89. }
  90.  
  91. static int pgm_setup (vo_instance_t * _instance,
  92.               unsigned int width, unsigned int height,
  93.               unsigned int display_width, unsigned int display_height,
  94.               unsigned int chroma_width,
  95.               unsigned int chroma_height, vo_setup_result_t * result)
  96. {
  97.     pgm_instance_t * instance;
  98.  
  99.     instance = (pgm_instance_t *) _instance;
  100.  
  101.     /*
  102.      * Layout of the Y, U, and V buffers in our pgm image
  103.      *
  104.      *      YY        YY        YY
  105.      * 420: YY   422: YY   444: YY
  106.      *      UV        UV        UUVV
  107.      *                UV        UUVV
  108.      */
  109.     if (width > 2 * chroma_width)
  110.     return 1;
  111.  
  112.     instance->width = width;
  113.     instance->height = height;
  114.     instance->chroma_width = chroma_width;
  115.     instance->chroma_height = chroma_height;
  116.     sprintf (instance->header, "P5\n%d %d\n255\n", 2 * chroma_width,
  117.          height + chroma_height);
  118.     result->convert = NULL;
  119.     return 0;
  120. }
  121.  
  122. static vo_instance_t * internal_open (void draw (vo_instance_t *,
  123.                          uint8_t * const *, void *),
  124.                       void writer (pgm_instance_t *,
  125.                            uint8_t *, size_t))
  126. {
  127.     pgm_instance_t * instance;
  128.  
  129.     instance = (pgm_instance_t *) calloc (1, sizeof (pgm_instance_t));
  130.     if (instance == NULL)
  131.         return NULL;
  132.  
  133.     instance->vo.setup = pgm_setup;
  134.     instance->vo.draw = draw;
  135.     instance->vo.close = (void (*) (vo_instance_t *)) free;
  136.     instance->framenum = 0;
  137.     instance->writer = writer;
  138.     instance->file = stdout;
  139.  
  140.     return (vo_instance_t *) instance;
  141. }
  142.  
  143. vo_instance_t * vo_pgm_open (void)
  144. {
  145.     return internal_open (pgm_draw_frame, file_writer);
  146. }
  147.  
  148. static void pgmpipe_draw_frame (vo_instance_t * _instance,
  149.                 uint8_t * const * buf, void * id)
  150. {
  151.     pgm_instance_t * instance = (pgm_instance_t *) _instance;
  152.     internal_draw_frame (instance, buf);
  153. }
  154.  
  155. vo_instance_t * vo_pgmpipe_open (void)
  156. {
  157.     return internal_open (pgmpipe_draw_frame, file_writer);
  158. }
  159.  
  160. #define F1(x,y,z)    (z ^ (x & (y ^ z)))
  161. #define F2(x,y,z)    F1 (z, x, y)
  162. #define F3(x,y,z)    (x ^ y ^ z)
  163. #define F4(x,y,z)    (y ^ (x | ~z))
  164.  
  165. #define MD5STEP(f,w,x,y,z,in,s) do {                    \
  166.     w += f (x, y, z) + in; w = ((w << s) | (w >> (32 - s))) + x;    \
  167. } while (0)
  168.  
  169. static void md5_transform (uint32_t * hash, uint32_t const * in)
  170. {
  171.     uint32_t a, b, c, d;
  172.  
  173.     a = hash[0];
  174.     b = hash[1];
  175.     c = hash[2];
  176.     d = hash[3];
  177.  
  178.     MD5STEP (F1, a, b, c, d, in[0] + 0xd76aa478, 7);
  179.     MD5STEP (F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
  180.     MD5STEP (F1, c, d, a, b, in[2] + 0x242070db, 17);
  181.     MD5STEP (F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
  182.     MD5STEP (F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
  183.     MD5STEP (F1, d, a, b, c, in[5] + 0x4787c62a, 12);
  184.     MD5STEP (F1, c, d, a, b, in[6] + 0xa8304613, 17);
  185.     MD5STEP (F1, b, c, d, a, in[7] + 0xfd469501, 22);
  186.     MD5STEP (F1, a, b, c, d, in[8] + 0x698098d8, 7);
  187.     MD5STEP (F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
  188.     MD5STEP (F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
  189.     MD5STEP (F1, b, c, d, a, in[11] + 0x895cd7be, 22);
  190.     MD5STEP (F1, a, b, c, d, in[12] + 0x6b901122, 7);
  191.     MD5STEP (F1, d, a, b, c, in[13] + 0xfd987193, 12);
  192.     MD5STEP (F1, c, d, a, b, in[14] + 0xa679438e, 17);
  193.     MD5STEP (F1, b, c, d, a, in[15] + 0x49b40821, 22);
  194.  
  195.     MD5STEP (F2, a, b, c, d, in[1] + 0xf61e2562, 5);
  196.     MD5STEP (F2, d, a, b, c, in[6] + 0xc040b340, 9);
  197.     MD5STEP (F2, c, d, a, b, in[11] + 0x265e5a51, 14);
  198.     MD5STEP (F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
  199.     MD5STEP (F2, a, b, c, d, in[5] + 0xd62f105d, 5);
  200.     MD5STEP (F2, d, a, b, c, in[10] + 0x02441453, 9);
  201.     MD5STEP (F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
  202.     MD5STEP (F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
  203.     MD5STEP (F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
  204.     MD5STEP (F2, d, a, b, c, in[14] + 0xc33707d6, 9);
  205.     MD5STEP (F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
  206.     MD5STEP (F2, b, c, d, a, in[8] + 0x455a14ed, 20);
  207.     MD5STEP (F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
  208.     MD5STEP (F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
  209.     MD5STEP (F2, c, d, a, b, in[7] + 0x676f02d9, 14);
  210.     MD5STEP (F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
  211.  
  212.     MD5STEP (F3, a, b, c, d, in[5] + 0xfffa3942, 4);
  213.     MD5STEP (F3, d, a, b, c, in[8] + 0x8771f681, 11);
  214.     MD5STEP (F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
  215.     MD5STEP (F3, b, c, d, a, in[14] + 0xfde5380c, 23);
  216.     MD5STEP (F3, a, b, c, d, in[1] + 0xa4beea44, 4);
  217.     MD5STEP (F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
  218.     MD5STEP (F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
  219.     MD5STEP (F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
  220.     MD5STEP (F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
  221.     MD5STEP (F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
  222.     MD5STEP (F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
  223.     MD5STEP (F3, b, c, d, a, in[6] + 0x04881d05, 23);
  224.     MD5STEP (F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
  225.     MD5STEP (F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
  226.     MD5STEP (F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
  227.     MD5STEP (F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
  228.  
  229.     MD5STEP (F4, a, b, c, d, in[0] + 0xf4292244, 6);
  230.     MD5STEP (F4, d, a, b, c, in[7] + 0x432aff97, 10);
  231.     MD5STEP (F4, c, d, a, b, in[14] + 0xab9423a7, 15);
  232.     MD5STEP (F4, b, c, d, a, in[5] + 0xfc93a039, 21);
  233.     MD5STEP (F4, a, b, c, d, in[12] + 0x655b59c3, 6);
  234.     MD5STEP (F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
  235.     MD5STEP (F4, c, d, a, b, in[10] + 0xffeff47d, 15);
  236.     MD5STEP (F4, b, c, d, a, in[1] + 0x85845dd1, 21);
  237.     MD5STEP (F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
  238.     MD5STEP (F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
  239.     MD5STEP (F4, c, d, a, b, in[6] + 0xa3014314, 15);
  240.     MD5STEP (F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
  241.     MD5STEP (F4, a, b, c, d, in[4] + 0xf7537e82, 6);
  242.     MD5STEP (F4, d, a, b, c, in[11] + 0xbd3af235, 10);
  243.     MD5STEP (F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
  244.     MD5STEP (F4, b, c, d, a, in[9] + 0xeb86d391, 21);
  245.  
  246.     hash[0] += a;
  247.     hash[1] += b;
  248.     hash[2] += c;
  249.     hash[3] += d;
  250. }
  251.  
  252. static inline uint32_t swap (uint32_t x) 
  253. {
  254.     return (((x & 0xff) << 24) | ((x & 0xff00) << 8) |
  255.         ((x & 0xff0000) >> 8) | ((x & 0xff000000) >> 24));
  256. }
  257.  
  258. static inline void little_endian (uint32_t * buf, unsigned int words)
  259. {
  260. #ifdef WORDS_BIGENDIAN
  261.     while (words--)
  262.     buf[words] = swap (buf[words]);
  263. #endif
  264. }
  265.  
  266. static void md5_writer (pgm_instance_t * instance, uint8_t * ptr, size_t size)
  267. {
  268.     const unsigned int offset = instance->md5_bytes & 0x3f;
  269.  
  270.     instance->md5_bytes += size;
  271.  
  272.     if (offset + size < 64) {
  273.     memcpy ((char *)instance->md5_block + offset, ptr, size);
  274.     return;
  275.     } else if (offset) {
  276.     const int avail = 64 - offset;
  277.     memcpy ((char *)instance->md5_block + offset, ptr, avail);
  278.     little_endian (instance->md5_block, 16);
  279.     md5_transform (instance->md5_hash, instance->md5_block);
  280.     ptr += avail;
  281.     size -= avail;
  282.     }
  283.  
  284.     while (size >= 64) {
  285. #ifndef ARCH_X86
  286.     memcpy (instance->md5_block, ptr, 64);
  287.     little_endian (instance->md5_block, 16);
  288.     md5_transform (instance->md5_hash, instance->md5_block);
  289. #else
  290.     md5_transform (instance->md5_hash, (uint32_t *)ptr);
  291. #endif
  292.     ptr += 64;
  293.     size -= 64;
  294.     }
  295.  
  296.     memcpy (instance->md5_block, ptr, size);
  297. }
  298.  
  299. static void md5_draw_frame (vo_instance_t * _instance,
  300.                 uint8_t * const * buf, void * id)
  301. {
  302.     pgm_instance_t * instance = (pgm_instance_t *) _instance;
  303.     unsigned int offset;
  304.     char * p;
  305.     int padding;
  306.  
  307.     instance->md5_hash[0] = 0x67452301;
  308.     instance->md5_hash[1] = 0xefcdab89;
  309.     instance->md5_hash[2] = 0x98badcfe;
  310.     instance->md5_hash[3] = 0x10325476;
  311.     instance->md5_bytes = 0;
  312.  
  313.     internal_draw_frame (instance, buf);
  314.  
  315.     offset = instance->md5_bytes & 0x3f;
  316.     p = (char *)instance->md5_block + offset;
  317.     padding = 55 - offset;
  318.  
  319.     *p++ = 0x80;
  320.     if (padding < 0) {
  321.     memset (p, 0, padding + 8);
  322.     little_endian (instance->md5_block, 16);
  323.     md5_transform (instance->md5_hash, instance->md5_block);
  324.     p = (char *)instance->md5_block;
  325.     padding = 56;
  326.     }
  327.  
  328.     memset (p, 0, padding);
  329.     instance->md5_block[14] = instance->md5_bytes << 3;
  330.     instance->md5_block[15] = instance->md5_bytes >> 29;
  331.     little_endian (instance->md5_block, 14);
  332.     md5_transform (instance->md5_hash, instance->md5_block);
  333.  
  334.     printf ("%08x%08x%08x%08x *%d.pgm\n", swap (instance->md5_hash[0]),
  335.         swap (instance->md5_hash[1]) , swap (instance->md5_hash[2]),
  336.         swap (instance->md5_hash[3]), instance->framenum++);
  337. }
  338.  
  339. vo_instance_t * vo_md5_open (void)
  340. {
  341.     return internal_open (md5_draw_frame, md5_writer);
  342. }
  343.