亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? video_out_pgm.c

?? mpeg2dec-0.4.1.tar.gz mpeg2 decoder source code.Have been compiled successfully.
?? C
字號:
/* * video_out_pgm.c * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org> * Copyright (C) 2003      Regis Duchesne <hpreg@zoy.org> * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca> * MD5 code derived from linux kernel GPL implementation * * This file is part of mpeg2dec, a free MPEG-2 video stream decoder. * See http://libmpeg2.sourceforge.net/ for updates. * * mpeg2dec is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * mpeg2dec is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include "config.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#include <inttypes.h>#include "video_out.h"typedef struct pgm_instance_s {    vo_instance_t vo;    int framenum;    int width;    int height;    int chroma_width;    int chroma_height;    char header[1024];    void (* writer) (struct pgm_instance_s *, uint8_t *, size_t);    FILE * file;    uint32_t md5_hash[4];    uint32_t md5_block[16];    uint32_t md5_bytes;} pgm_instance_t;static void file_writer (pgm_instance_t * instance, uint8_t * ptr, size_t size){    fwrite (ptr, size, 1, instance->file);}static void internal_draw_frame (pgm_instance_t * instance,				 uint8_t * const * buf){    static uint8_t black[16384] = { 0 };    int i;    instance->writer (instance, (uint8_t *)instance->header,		      strlen (instance->header));    for (i = 0; i < instance->height; i++) {	instance->writer (instance, buf[0] + i * instance->width,			  instance->width);	instance->writer (instance, black,			  2 * instance->chroma_width - instance->width);    }    for (i = 0; i < instance->chroma_height; i++) {	instance->writer (instance, buf[1] + i * instance->chroma_width,			  instance->chroma_width);	instance->writer (instance, buf[2] + i * instance->chroma_width,			  instance->chroma_width);    }}static void pgm_draw_frame (vo_instance_t * _instance,			    uint8_t * const * buf, void * id){    pgm_instance_t * instance = (pgm_instance_t *) _instance;    char filename[128];    sprintf (filename, "%d.pgm", instance->framenum++);    instance->file = fopen (filename, "wb");    if (instance->file == NULL)	return;    internal_draw_frame (instance, buf);    fclose (instance->file);}static int pgm_setup (vo_instance_t * _instance, unsigned int width,		      unsigned int height, unsigned int chroma_width,		      unsigned int chroma_height, vo_setup_result_t * result){    pgm_instance_t * instance;    instance = (pgm_instance_t *) _instance;    /*     * Layout of the Y, U, and V buffers in our pgm image     *     *      YY        YY        YY     * 420: YY   422: YY   444: YY     *      UV        UV        UUVV     *                UV        UUVV     */    if (width > 2 * chroma_width)	return 1;    instance->width = width;    instance->height = height;    instance->chroma_width = chroma_width;    instance->chroma_height = chroma_height;    sprintf (instance->header, "P5\n%d %d\n255\n", 2 * chroma_width,	     height + chroma_height);    result->convert = NULL;    return 0;}static vo_instance_t * internal_open (void draw (vo_instance_t *,						 uint8_t * const *, void *),				      void writer (pgm_instance_t *,						   uint8_t *, size_t)){    pgm_instance_t * instance;    instance = (pgm_instance_t *) malloc (sizeof (pgm_instance_t));    if (instance == NULL)        return NULL;    instance->vo.setup = pgm_setup;    instance->vo.setup_fbuf = NULL;    instance->vo.set_fbuf = NULL;    instance->vo.start_fbuf = NULL;    instance->vo.draw = draw;    instance->vo.discard = NULL;    instance->vo.close = (void (*) (vo_instance_t *)) free;    instance->framenum = 0;    instance->writer = writer;    instance->file = stdout;    return (vo_instance_t *) instance;}vo_instance_t * vo_pgm_open (void){    return internal_open (pgm_draw_frame, file_writer);}static void pgmpipe_draw_frame (vo_instance_t * _instance,				uint8_t * const * buf, void * id){    pgm_instance_t * instance = (pgm_instance_t *) _instance;    internal_draw_frame (instance, buf);}vo_instance_t * vo_pgmpipe_open (void){    return internal_open (pgmpipe_draw_frame, file_writer);}#define F1(x,y,z)	(z ^ (x & (y ^ z)))#define F2(x,y,z)	F1 (z, x, y)#define F3(x,y,z)	(x ^ y ^ z)#define F4(x,y,z)	(y ^ (x | ~z))#define MD5STEP(f,w,x,y,z,in,s) do {					\    w += f (x, y, z) + in; w = ((w << s) | (w >> (32 - s))) + x;	\} while (0)static void md5_transform (uint32_t * hash, uint32_t const * in){    uint32_t a, b, c, d;    a = hash[0];    b = hash[1];    c = hash[2];    d = hash[3];    MD5STEP (F1, a, b, c, d, in[0] + 0xd76aa478, 7);    MD5STEP (F1, d, a, b, c, in[1] + 0xe8c7b756, 12);    MD5STEP (F1, c, d, a, b, in[2] + 0x242070db, 17);    MD5STEP (F1, b, c, d, a, in[3] + 0xc1bdceee, 22);    MD5STEP (F1, a, b, c, d, in[4] + 0xf57c0faf, 7);    MD5STEP (F1, d, a, b, c, in[5] + 0x4787c62a, 12);    MD5STEP (F1, c, d, a, b, in[6] + 0xa8304613, 17);    MD5STEP (F1, b, c, d, a, in[7] + 0xfd469501, 22);    MD5STEP (F1, a, b, c, d, in[8] + 0x698098d8, 7);    MD5STEP (F1, d, a, b, c, in[9] + 0x8b44f7af, 12);    MD5STEP (F1, c, d, a, b, in[10] + 0xffff5bb1, 17);    MD5STEP (F1, b, c, d, a, in[11] + 0x895cd7be, 22);    MD5STEP (F1, a, b, c, d, in[12] + 0x6b901122, 7);    MD5STEP (F1, d, a, b, c, in[13] + 0xfd987193, 12);    MD5STEP (F1, c, d, a, b, in[14] + 0xa679438e, 17);    MD5STEP (F1, b, c, d, a, in[15] + 0x49b40821, 22);    MD5STEP (F2, a, b, c, d, in[1] + 0xf61e2562, 5);    MD5STEP (F2, d, a, b, c, in[6] + 0xc040b340, 9);    MD5STEP (F2, c, d, a, b, in[11] + 0x265e5a51, 14);    MD5STEP (F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);    MD5STEP (F2, a, b, c, d, in[5] + 0xd62f105d, 5);    MD5STEP (F2, d, a, b, c, in[10] + 0x02441453, 9);    MD5STEP (F2, c, d, a, b, in[15] + 0xd8a1e681, 14);    MD5STEP (F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);    MD5STEP (F2, a, b, c, d, in[9] + 0x21e1cde6, 5);    MD5STEP (F2, d, a, b, c, in[14] + 0xc33707d6, 9);    MD5STEP (F2, c, d, a, b, in[3] + 0xf4d50d87, 14);    MD5STEP (F2, b, c, d, a, in[8] + 0x455a14ed, 20);    MD5STEP (F2, a, b, c, d, in[13] + 0xa9e3e905, 5);    MD5STEP (F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);    MD5STEP (F2, c, d, a, b, in[7] + 0x676f02d9, 14);    MD5STEP (F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);    MD5STEP (F3, a, b, c, d, in[5] + 0xfffa3942, 4);    MD5STEP (F3, d, a, b, c, in[8] + 0x8771f681, 11);    MD5STEP (F3, c, d, a, b, in[11] + 0x6d9d6122, 16);    MD5STEP (F3, b, c, d, a, in[14] + 0xfde5380c, 23);    MD5STEP (F3, a, b, c, d, in[1] + 0xa4beea44, 4);    MD5STEP (F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);    MD5STEP (F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);    MD5STEP (F3, b, c, d, a, in[10] + 0xbebfbc70, 23);    MD5STEP (F3, a, b, c, d, in[13] + 0x289b7ec6, 4);    MD5STEP (F3, d, a, b, c, in[0] + 0xeaa127fa, 11);    MD5STEP (F3, c, d, a, b, in[3] + 0xd4ef3085, 16);    MD5STEP (F3, b, c, d, a, in[6] + 0x04881d05, 23);    MD5STEP (F3, a, b, c, d, in[9] + 0xd9d4d039, 4);    MD5STEP (F3, d, a, b, c, in[12] + 0xe6db99e5, 11);    MD5STEP (F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);    MD5STEP (F3, b, c, d, a, in[2] + 0xc4ac5665, 23);    MD5STEP (F4, a, b, c, d, in[0] + 0xf4292244, 6);    MD5STEP (F4, d, a, b, c, in[7] + 0x432aff97, 10);    MD5STEP (F4, c, d, a, b, in[14] + 0xab9423a7, 15);    MD5STEP (F4, b, c, d, a, in[5] + 0xfc93a039, 21);    MD5STEP (F4, a, b, c, d, in[12] + 0x655b59c3, 6);    MD5STEP (F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);    MD5STEP (F4, c, d, a, b, in[10] + 0xffeff47d, 15);    MD5STEP (F4, b, c, d, a, in[1] + 0x85845dd1, 21);    MD5STEP (F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);    MD5STEP (F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);    MD5STEP (F4, c, d, a, b, in[6] + 0xa3014314, 15);    MD5STEP (F4, b, c, d, a, in[13] + 0x4e0811a1, 21);    MD5STEP (F4, a, b, c, d, in[4] + 0xf7537e82, 6);    MD5STEP (F4, d, a, b, c, in[11] + 0xbd3af235, 10);    MD5STEP (F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);    MD5STEP (F4, b, c, d, a, in[9] + 0xeb86d391, 21);    hash[0] += a;    hash[1] += b;    hash[2] += c;    hash[3] += d;}static inline uint32_t swap (uint32_t x) {    return (((x & 0xff) << 24) | ((x & 0xff00) << 8) |	    ((x & 0xff0000) >> 8) | ((x & 0xff000000) >> 24));}static inline void little_endian (uint32_t * buf, unsigned int words){#ifdef WORDS_BIGENDIAN    while (words--)	buf[words] = swap (buf[words]);#endif}static void md5_writer (pgm_instance_t * instance, uint8_t * ptr, size_t size){    const unsigned int offset = instance->md5_bytes & 0x3f;    instance->md5_bytes += size;    if (offset + size < 64) {	memcpy ((char *)instance->md5_block + offset, ptr, size);	return;    } else if (offset) {	const int avail = 64 - offset;	memcpy ((char *)instance->md5_block + offset, ptr, avail);	little_endian (instance->md5_block, 16);	md5_transform (instance->md5_hash, instance->md5_block);	ptr += avail;	size -= avail;    }    while (size >= 64) {#ifndef ARCH_X86	memcpy (instance->md5_block, ptr, 64);	little_endian (instance->md5_block, 16);	md5_transform (instance->md5_hash, instance->md5_block);#else	md5_transform (instance->md5_hash, (uint32_t *)ptr);#endif	ptr += 64;	size -= 64;    }    memcpy (instance->md5_block, ptr, size);}static void md5_draw_frame (vo_instance_t * _instance,			    uint8_t * const * buf, void * id){    pgm_instance_t * instance = (pgm_instance_t *) _instance;    unsigned int offset;    char * p;    int padding;    instance->md5_hash[0] = 0x67452301;    instance->md5_hash[1] = 0xefcdab89;    instance->md5_hash[2] = 0x98badcfe;    instance->md5_hash[3] = 0x10325476;    instance->md5_bytes = 0;    internal_draw_frame (instance, buf);    offset = instance->md5_bytes & 0x3f;    p = (char *)instance->md5_block + offset;    padding = 55 - offset;    *p++ = 0x80;    if (padding < 0) {	memset (p, 0, padding + 8);	little_endian (instance->md5_block, 16);	md5_transform (instance->md5_hash, instance->md5_block);	p = (char *)instance->md5_block;	padding = 56;    }    memset (p, 0, padding);    instance->md5_block[14] = instance->md5_bytes << 3;    instance->md5_block[15] = instance->md5_bytes >> 29;    little_endian (instance->md5_block, 14);    md5_transform (instance->md5_hash, instance->md5_block);    printf ("%08x%08x%08x%08x *%d.pgm\n", swap (instance->md5_hash[0]),	    swap (instance->md5_hash[1]) , swap (instance->md5_hash[2]),	    swap (instance->md5_hash[3]), instance->framenum++);}vo_instance_t * vo_md5_open (void){    return internal_open (md5_draw_frame, md5_writer);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产欧美一区二区| 日韩精品乱码免费| 亚洲国产va精品久久久不卡综合 | 在线视频一区二区三| 911精品产国品一二三产区| 久久无码av三级| 亚洲成人av免费| 97精品国产露脸对白| 日韩免费一区二区| 夜夜嗨av一区二区三区| 国产v日产∨综合v精品视频| 5858s免费视频成人| 亚洲免费在线视频| 成人黄色a**站在线观看| 日韩欧美美女一区二区三区| 亚洲一区二区影院| 99精品在线免费| 欧美国产欧美综合| 国产精品一区三区| 久久嫩草精品久久久精品| 蜜芽一区二区三区| 欧美日韩高清一区二区| 一区二区三区资源| 91无套直看片红桃| 成人欧美一区二区三区白人| 国产黄色成人av| 亚洲精品在线观| 久久99精品一区二区三区三区| 欧美精品一级二级| 午夜久久久影院| 欧美人xxxx| 五月婷婷激情综合网| 欧美性色黄大片| 亚洲尤物在线视频观看| 欧洲视频一区二区| 亚洲一区电影777| 欧美久久久久免费| 青青草原综合久久大伊人精品 | 欧美大片免费久久精品三p| 亚洲第一综合色| 欧美精品在线一区二区三区| 亚洲国产wwwccc36天堂| 欧美美女一区二区| 免费成人av在线| 国产亚洲美州欧州综合国| 国产精品99久| 中文字幕字幕中文在线中不卡视频| 北条麻妃国产九九精品视频| 亚洲欧洲日韩在线| 欧美性色黄大片| 久久国产精品72免费观看| 久久精品欧美一区二区三区麻豆| 福利一区二区在线| 亚洲激情中文1区| 欧美男男青年gay1069videost| 免费人成在线不卡| 国产日韩欧美一区二区三区乱码| 成人一区二区三区| 香蕉久久夜色精品国产使用方法| 精品国产网站在线观看| 不卡视频一二三四| 天天色图综合网| 中文一区在线播放| 欧美人妖巨大在线| 国产精品一区二区在线看| 亚洲欧美视频一区| 日韩欧美一区在线观看| 岛国一区二区三区| 天天做天天摸天天爽国产一区| xvideos.蜜桃一区二区| 一本到高清视频免费精品| 免播放器亚洲一区| 亚洲另类在线一区| 国产亚洲欧洲997久久综合| 在线一区二区三区做爰视频网站| 美女久久久精品| 一区二区三区高清| 国产丝袜美腿一区二区三区| 欧美三级日韩三级国产三级| 国产69精品久久久久毛片| 视频一区视频二区中文| 国产精品美日韩| 日韩欧美中文一区| 在线免费观看成人短视频| 国产馆精品极品| 青娱乐精品视频在线| 一区二区三区四区蜜桃| 久久久国产午夜精品| 日韩欧美久久久| 日本电影亚洲天堂一区| 成人小视频在线| 国产一区二区剧情av在线| 天天做天天摸天天爽国产一区| 亚洲日本丝袜连裤袜办公室| 国产亚洲综合性久久久影院| 777奇米四色成人影色区| 在线亚洲一区二区| 成人午夜激情影院| 国产精品一区二区久久精品爱涩| 青娱乐精品视频| 亚洲成av人片| 亚洲电影在线免费观看| 一区av在线播放| 亚洲免费观看高清完整版在线 | 精品国产精品网麻豆系列| 欧美视频你懂的| 欧美亚洲动漫精品| 一本大道久久a久久精二百 | 国产不卡一区视频| 国内精品伊人久久久久av一坑| 蜜臀a∨国产成人精品| 丝袜亚洲另类丝袜在线| 亚洲福利电影网| 亚洲成av人片www| 天天综合网天天综合色| 日日摸夜夜添夜夜添精品视频 | 国产一区二区三区蝌蚪| 久久99热狠狠色一区二区| 日韩一区精品字幕| 美女视频网站黄色亚洲| 奇米影视在线99精品| 奇米色一区二区| 精品一区二区三区在线播放视频| 精品一区二区三区免费视频| 精品一区免费av| 国产福利一区在线观看| 成人精品鲁一区一区二区| av爱爱亚洲一区| 日本精品视频一区二区| 欧美高清www午色夜在线视频| 欧美精三区欧美精三区| 精品对白一区国产伦| 欧美国产综合色视频| 综合婷婷亚洲小说| 午夜av区久久| 久久91精品国产91久久小草| 国产精品一区二区三区乱码| 99精品视频一区二区| 欧美亚洲图片小说| 日韩三级电影网址| 日本一区二区在线不卡| 亚洲精品国产成人久久av盗摄| 亚洲狠狠爱一区二区三区| 美女视频黄久久| av电影一区二区| 欧美美女bb生活片| 国产亚洲精品超碰| 亚洲一区二区三区爽爽爽爽爽| 奇米一区二区三区| av一二三不卡影片| 欧美精品aⅴ在线视频| 久久久亚洲精品石原莉奈| 国产精品高潮呻吟久久| 婷婷综合另类小说色区| 丁香六月综合激情| 91麻豆精品国产91久久久| 国产色爱av资源综合区| 亚洲1区2区3区视频| 国产精品亚洲成人| 欧美日韩综合一区| 国产亚洲综合色| 青青草精品视频| 91国偷自产一区二区使用方法| 26uuu久久综合| 日韩黄色小视频| 97精品国产97久久久久久久久久久久| 日韩限制级电影在线观看| 亚洲精品高清视频在线观看| 国产精品自拍毛片| 91麻豆精品国产自产在线| 国产精品美女久久久久av爽李琼| 强制捆绑调教一区二区| 91九色最新地址| 亚洲国产精品成人综合| 青青草一区二区三区| 在线影视一区二区三区| 国产精品久久久久久久久图文区| 激情av综合网| 91精品国产综合久久婷婷香蕉| 一区二区三区在线不卡| 成人a免费在线看| 久久亚洲综合av| 美女脱光内衣内裤视频久久影院| 欧洲亚洲精品在线| 亚洲日本在线a| 91小视频在线免费看| 日本一区二区在线不卡| 国产精品综合久久| 精品国产一区二区在线观看| 天天做天天摸天天爽国产一区 | 成人av网站在线观看免费| 精品福利视频一区二区三区| 免播放器亚洲一区| 91精品国产色综合久久不卡蜜臀 | 欧美性xxxxxx少妇| 一区二区三区四区不卡视频| 成人高清视频免费观看| 中文字幕制服丝袜一区二区三区 | 成人在线一区二区三区| 久久蜜桃av一区精品变态类天堂|