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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? x264.c.bak

?? linux下編譯已經(jīng)通過
?? BAK
?? 第 1 頁 / 共 3 頁
字號:
/***************************************************************************** * x264: h264 encoder testing program. ***************************************************************************** * Copyright (C) 2003 Laurent Aimar * $Id: x264.c,v 1.1 2004/06/03 19:24:12 fenrir Exp $ * * Authors: Laurent Aimar <fenrir@via.ecp.fr> * * This program 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. * * This program 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, USA. *****************************************************************************/#include <stdlib.h>#include <math.h>#include <signal.h>#define _GNU_SOURCE#include <getopt.h>#include "common/common.h"#include "x264.h"#include "muxers.h"#ifndef _MSC_VER#include "config.h"#endifuint8_t *mux_buffer = NULL;int mux_buffer_size = 0;/* Ctrl-C handler */static int     b_ctrl_c = 0;static int     b_exit_on_ctrl_c = 0;static void    SigIntHandler( int a ){    if( b_exit_on_ctrl_c )        exit(0);    b_ctrl_c = 1;}typedef struct {    int b_progress;    int i_seek;    hnd_t hin;    hnd_t hout;    FILE *qpfile;} cli_opt_t;/* input file operation function pointers */int (*p_open_infile)( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param );int (*p_get_frame_total)( hnd_t handle );int (*p_read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame );int (*p_close_infile)( hnd_t handle );/* output file operation function pointers */static int (*p_open_outfile)( char *psz_filename, hnd_t *p_handle );static int (*p_set_outfile_param)( hnd_t handle, x264_param_t *p_param );static int (*p_write_nalu)( hnd_t handle, uint8_t *p_nal, int i_size );static int (*p_set_eop)( hnd_t handle, x264_picture_t *p_picture );static int (*p_close_outfile)( hnd_t handle );static void Help( x264_param_t *defaults, int b_longhelp );static int  Parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt );static int  Encode( x264_param_t *param, cli_opt_t *opt );/**************************************************************************** * main: ****************************************************************************/int main( int argc, char **argv ){    x264_param_t param;    cli_opt_t opt;    int ret;#ifdef PTW32_STATIC_LIB    pthread_win32_process_attach_np();    pthread_win32_thread_attach_np();#endif#ifdef _MSC_VER    _setmode(_fileno(stdin), _O_BINARY);    _setmode(_fileno(stdout), _O_BINARY);#endif    x264_param_default( &param );    /* Parse command line */    if( Parse( argc, argv, &param, &opt ) < 0 )        return -1;    /* Control-C handler */    signal( SIGINT, SigIntHandler );    ret = Encode( &param, &opt );#ifdef PTW32_STATIC_LIB    pthread_win32_thread_detach_np();    pthread_win32_process_detach_np();#endif    return ret;}static char const *strtable_lookup( const char * const table[], int index ){    int i = 0; while( table[i] ) i++;    return ( ( index >= 0 && index < i ) ? table[ index ] : "???" );}/***************************************************************************** * Help: *****************************************************************************/static void Help( x264_param_t *defaults, int b_longhelp ){#define H0 printf#define H1 if(b_longhelp) printf    H0( "x264 core:%d%s\n"        "Syntax: x264 [options] -o outfile infile [widthxheight]\n"        "\n"        "Infile can be raw YUV 4:2:0 (in which case resolution is required),\n"        "  or YUV4MPEG 4:2:0 (*.y4m),\n"        "  or AVI or Avisynth if compiled with AVIS support (%s).\n"        "Outfile type is selected by filename:\n"        " .264 -> Raw bytestream\n"        " .mkv -> Matroska\n"        " .mp4 -> MP4 if compiled with GPAC support (%s)\n"        "\n"        "Options:\n"        "\n"        "  -h, --help                  List the more commonly used options\n"        "      --longhelp              List all options\n"        "\n",        X264_BUILD, X264_VERSION,#ifdef AVIS_INPUT        "yes",#else        "no",#endif#ifdef MP4_OUTPUT        "yes"#else        "no"#endif      );    H0( "Frame-type options:\n" );    H0( "\n" );    H0( "  -I, --keyint <integer>      Maximum GOP size [%d]\n", defaults->i_keyint_max );    H1( "  -i, --min-keyint <integer>  Minimum GOP size [%d]\n", defaults->i_keyint_min );    H1( "      --scenecut <integer>    How aggressively to insert extra I-frames [%d]\n", defaults->i_scenecut_threshold );    H1( "      --pre-scenecut          Faster, less precise scenecut detection.\n"        "                                  Required and implied by multi-threading.\n" );    H0( "  -b, --bframes <integer>     Number of B-frames between I and P [%d]\n", defaults->i_bframe );    H1( "      --no-b-adapt            Disable adaptive B-frame decision\n" );    H1( "      --b-bias <integer>      Influences how often B-frames are used [%d]\n", defaults->i_bframe_bias );    H0( "      --b-pyramid             Keep some B-frames as references\n" );    H0( "      --no-cabac              Disable CABAC\n" );    H0( "  -r, --ref <integer>         Number of reference frames [%d]\n", defaults->i_frame_reference );    H1( "      --no-deblock            Disable loop filter\n" );    H0( "  -f, --deblock <alpha:beta>  Loop filter AlphaC0 and Beta parameters [%d:%d]\n",                                       defaults->i_deblocking_filter_alphac0, defaults->i_deblocking_filter_beta );    H0( "      --interlaced            Enable pure-interlaced mode\n" );    H0( "\n" );    H0( "Ratecontrol:\n" );    H0( "\n" );    H0( "  -q, --qp <integer>          Set QP (0=lossless) [%d]\n", defaults->rc.i_qp_constant );    H0( "  -B, --bitrate <integer>     Set bitrate (kbit/s)\n" );    H0( "      --crf <float>           Quality-based VBR (nominal QP)\n" );    H1( "      --vbv-maxrate <integer> Max local bitrate (kbit/s) [%d]\n", defaults->rc.i_vbv_max_bitrate );    H0( "      --vbv-bufsize <integer> Enable CBR and set size of the VBV buffer (kbit) [%d]\n", defaults->rc.i_vbv_buffer_size );    H1( "      --vbv-init <float>      Initial VBV buffer occupancy [%.1f]\n", defaults->rc.f_vbv_buffer_init );    H1( "      --qpmin <integer>       Set min QP [%d]\n", defaults->rc.i_qp_min );    H1( "      --qpmax <integer>       Set max QP [%d]\n", defaults->rc.i_qp_max );    H1( "      --qpstep <integer>      Set max QP step [%d]\n", defaults->rc.i_qp_step );    H0( "      --ratetol <float>       Allowed variance of average bitrate [%.1f]\n", defaults->rc.f_rate_tolerance );    H0( "      --ipratio <float>       QP factor between I and P [%.2f]\n", defaults->rc.f_ip_factor );    H0( "      --pbratio <float>       QP factor between P and B [%.2f]\n", defaults->rc.f_pb_factor );    H1( "      --chroma-qp-offset <integer>  QP difference between chroma and luma [%d]\n", defaults->analyse.i_chroma_qp_offset );    H0( "\n" );    H0( "  -p, --pass <1|2|3>          Enable multipass ratecontrol\n"        "                                  - 1: First pass, creates stats file\n"        "                                  - 2: Last pass, does not overwrite stats file\n"        "                                  - 3: Nth pass, overwrites stats file\n" );    H0( "      --stats <string>        Filename for 2 pass stats [\"%s\"]\n", defaults->rc.psz_stat_out );    H1( "      --rceq <string>         Ratecontrol equation [\"%s\"]\n", defaults->rc.psz_rc_eq );    H0( "      --qcomp <float>         QP curve compression: 0.0 => CBR, 1.0 => CQP [%.2f]\n", defaults->rc.f_qcompress );    H1( "      --cplxblur <float>      Reduce fluctuations in QP (before curve compression) [%.1f]\n", defaults->rc.f_complexity_blur );    H1( "      --qblur <float>         Reduce fluctuations in QP (after curve compression) [%.1f]\n", defaults->rc.f_qblur );    H0( "      --zones <zone0>/<zone1>/...  Tweak the bitrate of some regions of the video\n" );    H1( "                              Each zone is of the form\n"        "                                  <start frame>,<end frame>,<option>\n"        "                                  where <option> is either\n"        "                                      q=<integer> (force QP)\n"        "                                  or  b=<float> (bitrate multiplier)\n" );    H1( "      --qpfile <string>       Force frametypes and QPs\n" );    H0( "\n" );    H0( "Analysis:\n" );    H0( "\n" );    H0( "  -A, --partitions <string>   Partitions to consider [\"p8x8,b8x8,i8x8,i4x4\"]\n"        "                                  - p8x8, p4x4, b8x8, i8x8, i4x4\n"        "                                  - none, all\n"        "                                  (p4x4 requires p8x8. i8x8 requires --8x8dct.)\n" );    H0( "      --direct <string>       Direct MV prediction mode [\"%s\"]\n"        "                                  - none, spatial, temporal, auto\n",                                       strtable_lookup( x264_direct_pred_names, defaults->analyse.i_direct_mv_pred ) );    H1( "      --direct-8x8 <-1|0|1>   Direct prediction size [%d]\n"        "                                  -  0: 4x4\n"        "                                  -  1: 8x8\n"        "                                  - -1: smallest possible according to level\n",                                       defaults->analyse.i_direct_8x8_inference );    H0( "  -w, --weightb               Weighted prediction for B-frames\n" );    H0( "      --me <string>           Integer pixel motion estimation method [\"%s\"]\n",                                       strtable_lookup( x264_motion_est_names, defaults->analyse.i_me_method ) );    H1( "                                  - dia: diamond search, radius 1 (fast)\n"        "                                  - hex: hexagonal search, radius 2\n"        "                                  - umh: uneven multi-hexagon search\n"        "                                  - esa: exhaustive search (slow)\n" );    else H0( "                                  - dia, hex, umh\n" );    H0( "      --merange <integer>     Maximum motion vector search range [%d]\n", defaults->analyse.i_me_range );    H1( "      --mvrange <integer>     Maximum motion vector length [-1 (auto)]\n" );    H1( "      --mvrange-thread <int>  Minimum buffer between threads [-1 (auto)]\n" );    H0( "  -m, --subme <integer>       Subpixel motion estimation and partition\n"        "                                  decision quality: 1=fast, 7=best. [%d]\n", defaults->analyse.i_subpel_refine );    H0( "      --b-rdo                 RD based mode decision for B-frames. Requires subme 6.\n" );    H0( "      --mixed-refs            Decide references on a per partition basis\n" );    H1( "      --no-chroma-me          Ignore chroma in motion estimation\n" );    H1( "      --bime                  Jointly optimize both MVs in B-frames\n" );    H0( "  -8, --8x8dct                Adaptive spatial transform size\n" );    H0( "  -t, --trellis <integer>     Trellis RD quantization. Requires CABAC. [%d]\n"        "                                  - 0: disabled\n"        "                                  - 1: enabled only on the final encode of a MB\n"        "                                  - 2: enabled on all mode decisions\n", defaults->analyse.i_trellis );    H0( "      --no-fast-pskip         Disables early SKIP detection on P-frames\n" );    H0( "      --no-dct-decimate       Disables coefficient thresholding on P-frames\n" );    H0( "      --nr <integer>          Noise reduction [%d]\n", defaults->analyse.i_noise_reduction );    H1( "\n" );    H1( "      --deadzone-inter <int>  Set the size of the inter luma quantization deadzone [%d]\n", defaults->analyse.i_luma_deadzone[0] );    H1( "      --deadzone-intra <int>  Set the size of the intra luma quantization deadzone [%d]\n", defaults->analyse.i_luma_deadzone[1] );    H1( "                                  Deadzones should be in the range 0 - 32.\n" );    H1( "      --cqm <string>          Preset quant matrices [\"flat\"]\n"        "                                  - jvt, flat\n" );    H0( "      --cqmfile <string>      Read custom quant matrices from a JM-compatible file\n" );    H1( "                                  Overrides any other --cqm* options.\n" );    H1( "      --cqm4 <list>           Set all 4x4 quant matrices\n"        "                                  Takes a comma-separated list of 16 integers.\n" );    H1( "      --cqm8 <list>           Set all 8x8 quant matrices\n"        "                                  Takes a comma-separated list of 64 integers.\n" );    H1( "      --cqm4i, --cqm4p, --cqm8i, --cqm8p\n"        "                              Set both luma and chroma quant matrices\n" );    H1( "      --cqm4iy, --cqm4ic, --cqm4py, --cqm4pc\n"        "                              Set individual quant matrices\n" );    H1( "\n" );    H1( "Video Usability Info (Annex E):\n" );    H1( "The VUI settings are not used by the encoder but are merely suggestions to\n" );    H1( "the playback equipment. See doc/vui.txt for details. Use at your own risk.\n" );    H1( "\n" );    H1( "      --overscan <string>     Specify crop overscan setting [\"%s\"]\n"        "                                  - undef, show, crop\n",                                       strtable_lookup( x264_overscan_names, defaults->vui.i_overscan ) );    H1( "      --videoformat <string>  Specify video format [\"%s\"]\n"        "                                  - component, pal, ntsc, secam, mac, undef\n",                                       strtable_lookup( x264_vidformat_names, defaults->vui.i_vidformat ) );    H1( "      --fullrange <string>    Specify full range samples setting [\"%s\"]\n"        "                                  - off, on\n",                                       strtable_lookup( x264_fullrange_names, defaults->vui.b_fullrange ) );    H1( "      --colorprim <string>    Specify color primaries [\"%s\"]\n"        "                                  - undef, bt709, bt470m, bt470bg\n"        "                                    smpte170m, smpte240m, film\n",                                       strtable_lookup( x264_colorprim_names, defaults->vui.i_colorprim ) );    H1( "      --transfer <string>     Specify transfer characteristics [\"%s\"]\n"        "                                  - undef, bt709, bt470m, bt470bg, linear,\n"        "                                    log100, log316, smpte170m, smpte240m\n",                                       strtable_lookup( x264_transfer_names, defaults->vui.i_transfer ) );    H1( "      --colormatrix <string>  Specify color matrix setting [\"%s\"]\n"        "                                  - undef, bt709, fcc, bt470bg\n"

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二区三区精华液| 国产精品久久毛片a| 成人激情图片网| 日本不卡视频一二三区| 中文字幕欧美激情| 日韩欧美综合一区| 欧美性色黄大片| 成人一级视频在线观看| 奇米四色…亚洲| 亚洲精品视频观看| 欧美经典三级视频一区二区三区| 欧美一级二级在线观看| 99久久精品国产导航| 国产一区二区精品久久99| 亚洲1区2区3区视频| 中文字幕在线观看一区| 欧美精品一区二区三区在线播放| 欧美伊人久久久久久午夜久久久久| 成人一区二区三区中文字幕| 国产精品一区二区在线播放| 日韩va亚洲va欧美va久久| 一区二区三区四区精品在线视频 | 首页国产丝袜综合| 中文字幕一区二区三区在线观看| 久久久www免费人成精品| 日韩视频不卡中文| 欧美一区二区三区四区久久| 欧美日韩亚洲综合| 欧美视频在线一区二区三区 | 久久视频一区二区| 91精品久久久久久久99蜜桃| 欧美日韩国产高清一区二区| 欧美中文一区二区三区| 欧美午夜在线一二页| av电影在线观看完整版一区二区| 国产福利不卡视频| 国产成a人亚洲精品| 国产福利91精品一区二区三区| 国产高清一区日本| 成人午夜又粗又硬又大| 成人美女视频在线看| 99免费精品视频| 色一情一乱一乱一91av| 欧美在线免费播放| 欧美日韩一二三| 欧美精品久久一区二区三区| 91麻豆精品国产91久久久使用方法 | 天天色综合天天| 日韩精品1区2区3区| 日本女人一区二区三区| 精品亚洲欧美一区| 国产精品亚洲一区二区三区在线 | 99re热这里只有精品视频| 97久久久精品综合88久久| 色一区在线观看| 欧美欧美午夜aⅴ在线观看| 日韩亚洲电影在线| 精品久久久久久综合日本欧美| 国产丝袜欧美中文另类| 国产精品天干天干在线综合| 亚洲欧美区自拍先锋| 亚洲国产日韩a在线播放| 天天免费综合色| 成人午夜av电影| 91丝袜呻吟高潮美腿白嫩在线观看| 欧美主播一区二区三区| 日韩一区二区三区免费观看| 久久久久久久久99精品| 中文字幕一区视频| 日韩不卡一区二区| 成人免费av网站| 欧美三级三级三级爽爽爽| 欧美videofree性高清杂交| 国产精品你懂的| 日韩av高清在线观看| 国产黄人亚洲片| 在线免费观看日本一区| 欧美成人精品二区三区99精品| 18涩涩午夜精品.www| 视频一区视频二区中文| 成人高清视频在线| 欧美日韩国产免费一区二区| 日本一区二区三级电影在线观看 | 一区二区三区免费网站| 久久66热偷产精品| 日本高清视频一区二区| 精品粉嫩超白一线天av| 亚洲激情网站免费观看| 国产中文字幕一区| 欧美色手机在线观看| 国产欧美日韩中文久久| 日韩高清在线一区| 99久久国产综合精品麻豆| 欧美成人在线直播| 亚洲国产精品影院| av亚洲精华国产精华| 欧美哺乳videos| 亚洲国产精品视频| av中文字幕一区| 久久这里都是精品| 麻豆一区二区99久久久久| 在线视频欧美区| 国产精品久久精品日日| 激情成人午夜视频| 欧美夫妻性生活| 一区二区三区四区av| 成人美女在线观看| 久久久国际精品| 久久精品国产免费看久久精品| 欧美色偷偷大香| 亚洲伦理在线免费看| 成人伦理片在线| 久久先锋影音av鲁色资源网| 日本成人在线不卡视频| 欧美专区亚洲专区| 亚洲精品综合在线| 成人激情图片网| 欧美国产日本视频| 国产成人精品亚洲日本在线桃色 | 午夜精品一区二区三区电影天堂| 一本一本大道香蕉久在线精品| 国产精品色噜噜| 粉嫩av一区二区三区在线播放| 欧美xxx久久| 精油按摩中文字幕久久| 日韩精品一区在线观看| 蜜芽一区二区三区| 日韩欧美亚洲国产另类 | 一本久久综合亚洲鲁鲁五月天| 国产欧美一区二区精品忘忧草| 国产精品主播直播| 国产喂奶挤奶一区二区三区| 国产精品77777竹菊影视小说| 欧美不卡激情三级在线观看| 老司机免费视频一区二区| 日韩手机在线导航| 九色综合狠狠综合久久| 26uuu另类欧美亚洲曰本| 黄页网站大全一区二区| 久久日一线二线三线suv| 国产一区二区三区香蕉| 国产精品色眯眯| 91免费看片在线观看| 亚洲福利视频导航| 欧美一级欧美三级在线观看| 久久99久国产精品黄毛片色诱| 精品国产一区二区国模嫣然| 国产一区视频导航| 国产精品嫩草久久久久| 91丨九色丨黑人外教| 一区二区视频在线| 欧美日韩国产免费一区二区| 麻豆精品一区二区av白丝在线| 久久色在线观看| 一本大道久久a久久精二百| 亚洲国产一区二区三区| 欧美一区午夜精品| 国产v综合v亚洲欧| 亚洲嫩草精品久久| 日韩一区二区在线观看视频 | 在线免费亚洲电影| 日韩avvvv在线播放| 久久久精品免费网站| 99久久精品免费| 日韩精品福利网| 国产精品欧美经典| 欧美吞精做爰啪啪高潮| 久久超碰97人人做人人爱| 欧美激情一区二区三区全黄| 欧日韩精品视频| 国内精品免费在线观看| 亚洲欧美日韩在线不卡| 91精品欧美综合在线观看最新| 国产一区二区福利视频| 一区二区三区在线视频观看58| 欧美一区二区三区播放老司机| 国产成人99久久亚洲综合精品| 亚洲在线视频网站| 国产夜色精品一区二区av| 日韩精品一区二区三区视频播放 | 国产精品伦一区二区三级视频| 91久久精品一区二区三| 久久99精品国产.久久久久久 | 亚洲乱码国产乱码精品精小说 | 亚洲va天堂va国产va久| 久久一区二区三区国产精品| 在线亚洲+欧美+日本专区| 国内精品伊人久久久久av影院| 亚洲精品免费看| 国产日韩高清在线| 欧美精品成人一区二区三区四区| 成人国产精品免费观看动漫 | 91免费观看在线| 久久精品久久精品| 亚洲国产精品久久一线不卡| 国产欧美精品一区aⅴ影院 | 日韩西西人体444www| av电影天堂一区二区在线| 裸体一区二区三区| 亚洲成人久久影院|