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

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

?? video_out_pgm.c

?? 比較早的MPEG-2的解碼源程序
?? 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一区二区三区免费野_久草精品视频
欧美一级视频精品观看| 亚洲一级在线观看| 欧美精品久久天天躁| av中文字幕一区| 国产高清在线观看免费不卡| 精品综合免费视频观看| 日本系列欧美系列| 日韩精品视频网| 日本不卡视频一二三区| 琪琪久久久久日韩精品| 免费精品视频在线| 精品一区二区免费视频| 国产久卡久卡久卡久卡视频精品| 久久国产尿小便嘘嘘尿| 国产自产2019最新不卡| 国产成人免费在线观看不卡| 成人久久视频在线观看| 成人爱爱电影网址| 日本精品一级二级| 欧美影院一区二区三区| 欧美一区二区三区日韩| 久久综合九色综合欧美就去吻 | 久久久.com| 精品动漫一区二区三区在线观看| 久久久久久9999| 中文字幕亚洲电影| 午夜伦理一区二区| 久久精品国产一区二区三| 成人免费观看av| 在线视频观看一区| 日韩欧美你懂的| 国产亚洲精品7777| 亚洲人成精品久久久久| 欧美aaa在线| 成人app网站| 欧美日韩视频专区在线播放| 精品国产sm最大网站免费看| 1024成人网色www| 奇米综合一区二区三区精品视频| 成人手机在线视频| 5月丁香婷婷综合| 国产精品久久久久一区二区三区共 | 欧美日本乱大交xxxxx| 欧美v亚洲v综合ⅴ国产v| 中文字幕一区二区三区乱码在线 | 免费一级片91| 成人aa视频在线观看| 日韩一级高清毛片| 亚洲欧美视频一区| 久久99国产精品成人| 91精品1区2区| 中文字幕电影一区| 久久精品国产77777蜜臀| 91老师国产黑色丝袜在线| 日韩一二三区不卡| 亚洲精品成人天堂一二三| 国产精品主播直播| 欧美二区乱c少妇| 亚洲另类中文字| 国产99久久精品| 日韩欧美精品在线视频| 亚洲自拍偷拍综合| 97久久超碰国产精品电影| www日韩大片| 美女视频黄免费的久久| 欧美精品久久99久久在免费线 | 日韩欧美中文字幕制服| 午夜精品久久久久久久久久 | 久久精品日产第一区二区三区高清版| 一区二区三区资源| 91亚洲国产成人精品一区二区三| 国产精品久久99| 国产在线精品一区二区不卡了| 欧美高清一级片在线| 亚洲123区在线观看| 欧美三级日韩在线| 亚洲国产视频a| 精品视频全国免费看| 亚洲福利视频导航| 欧美日韩亚洲综合在线| 亚洲一区二区三区国产| 色婷婷综合在线| 一区二区三区视频在线看| 91蝌蚪国产九色| 一区二区三区四区视频精品免费 | 久久蜜桃av一区二区天堂| 久久精品国产亚洲一区二区三区 | 亚洲国产精品欧美一二99| 国内精品免费在线观看| 欧美一级免费大片| 亚洲成人黄色小说| 日韩欧美中文字幕制服| 亚洲香蕉伊在人在线观| 欧美一区二区在线免费观看| 亚洲国产精品综合小说图片区| 欧美丝袜第三区| 亚洲成人av一区二区三区| 欧美肥妇free| 免费在线看成人av| 国产视频一区二区在线观看| 国产露脸91国语对白| 亚洲精品视频免费观看| 在线观看视频91| 美腿丝袜亚洲三区| 亚洲精品一线二线三线无人区| 国产成人免费视频一区| 国产精品卡一卡二| 欧美日韩黄视频| 麻豆精品在线看| 国产精品欧美久久久久一区二区| 不卡一区中文字幕| 视频一区欧美精品| 久久综合九色综合97婷婷女人| 99re成人精品视频| 一区二区三区不卡视频在线观看| 欧美一卡二卡三卡四卡| 国产一区欧美日韩| 国产亚洲成年网址在线观看| 99久久久久久| 蜜乳av一区二区| 国产精品天美传媒| 91美女在线观看| 国产一区二区三区四区在线观看| 久久九九99视频| 在线成人av影院| 韩国欧美国产1区| 一区二区三区在线影院| 日韩小视频在线观看专区| 色偷偷一区二区三区| 日韩精品欧美精品| 亚洲在线免费播放| 7777精品伊人久久久大香线蕉超级流畅| 国产麻豆精品在线| 一区二区三区电影在线播| 国产精品色哟哟| 欧美一级日韩一级| 欧美伊人精品成人久久综合97| 精品一区二区三区日韩| 亚洲第一激情av| 国产精品毛片高清在线完整版| 精品国产网站在线观看| 91蝌蚪porny| 欧美日韩中字一区| 一区二区在线看| 国产精品伦一区| 91性感美女视频| 秋霞午夜鲁丝一区二区老狼| 最新国产の精品合集bt伙计| www成人在线观看| 欧美人妖巨大在线| 成人av电影在线| 国产福利一区二区三区视频| 精品伊人久久久久7777人| 亚洲国产精品视频| 亚洲国产一区二区三区青草影视| 久久婷婷国产综合精品青草| 精品久久久久久久久久久久久久久久久| 美女视频黄a大片欧美| 调教+趴+乳夹+国产+精品| 亚洲久本草在线中文字幕| 亚洲国产精品t66y| 日韩一区二区三免费高清| 欧美性一二三区| 欧美色精品在线视频| 在线观看亚洲成人| 欧美在线观看视频在线| 91国产成人在线| 538在线一区二区精品国产| 欧美午夜寂寞影院| 欧美一区二区国产| 日韩免费成人网| 久久久精品tv| 久久久精品天堂| 亚洲卡通动漫在线| 亚洲成av人**亚洲成av**| 亚洲尤物视频在线| 日日摸夜夜添夜夜添精品视频 | 看电影不卡的网站| 日韩精品亚洲专区| 久久99精品久久久久婷婷| 精品一区二区三区欧美| 国产精品一级在线| 成人黄页在线观看| 欧美日韩国产经典色站一区二区三区 | 久久国产精品99精品国产| 麻豆91精品视频| eeuss鲁片一区二区三区 | 国产精品国产馆在线真实露脸 | 九九视频精品免费| 国产麻豆9l精品三级站| 91在线视频在线| 欧美性欧美巨大黑白大战| 欧美mv和日韩mv国产网站| 欧美国产日本韩| 日韩av网站免费在线| 丝袜a∨在线一区二区三区不卡| 久久99精品一区二区三区| 91原创在线视频| 欧美福利一区二区| 国产精品青草久久|