⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x264.c

📁 video linux conference
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * x264.c: h264 video encoder ***************************************************************************** * Copyright (C) 2004 VideoLAN * $Id: x264.c 11330 2005-06-07 12:33:58Z gbazin $ * * 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. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <vlc/vlc.h>#include <vlc/vout.h>#include <vlc/sout.h>#include <vlc/decoder.h>#include <x264.h>#define SOUT_CFG_PREFIX "sout-x264-"/***************************************************************************** * Module descriptor *****************************************************************************/static int  Open ( vlc_object_t * );static void Close( vlc_object_t * );#define QP_TEXT N_("Quantizer parameter")#define QP_LONGTEXT N_( \    "This selects the quantizer to use (1 to 51). Lower values result in " \    "better fidelity, but higher bitrates. 26 is a good default value." )#define QPMIN_TEXT N_("Minimum quantizer parameter")#define QPMIN_LONGTEXT N_( "Minimum quantizer, 15/35 seems to be a useful " \    "range." )#define QPMAX_TEXT N_("Maximum quantizer parameter")#define QPMAX_LONGTEXT N_( "Maximum quantizer parameter." )#define CABAC_TEXT N_("Enable CABAC")#define CABAC_LONGTEXT N_( "Enable CABAC (Context-Adaptive Binary Arithmetic "\    "Coding). Slightly slows down encoding and decoding, but should save " \    "10-15% bitrate." )#define LOOPF_TEXT N_("Enable loop filter")#define LOOPF_LONGTEXT N_( "Use deblocking loop filter (increases quality).")#define ANALYSE_TEXT N_("Analyse mode")#define ANALYSE_LONGTEXT N_( "This selects the analysing mode.")#define TOLERANCE_TEXT N_("Bitrate tolerance")#define TOLERANCE_LONGTEXT N_( "Sets the allowed variance in average " \    "bitrate.")#define VBV_MAXRATE_TEXT N_("Maximum local bitrate")#define VBV_MAXRATE_LONGTEXT N_( "Sets a maximum local bitrate in kbits/s.")#define VBV_BUFSIZE_TEXT N_("Averaging period for the maximum local bitrate")#define VBV_BUFSIZE_LONGTEXT N_( "Sets an averaging period for the maximum " \    "local bitrate, in kbits/s.")#define VBV_INIT_TEXT N_("Initial buffer occupancy")#define VBV_INIT_LONGTEXT N_( "Sets the initial buffer occupancy as a " \    "fraction of the buffer size.")#define KEYINT_TEXT N_("Sets maximum interval between IDR-frames")#define KEYINT_LONGTEXT N_( "Larger values save bits, thus improve quality "\    "for a given bitrate, at the cost of seeking precision." )#define KEYINT_MIN_TEXT N_("Sets minimum interval between IDR-frames")#define KEYINT_MIN_LONGTEXT N_("In H.264, I-Frames do not necessarily bound " \    "a closed GOP because it is allowable for a P-frame to be predicted from "\    "more frames than just the one frame before it (also see frameref). " \    "Therefore, I-frames are not necessarily seekable. " \    "IDR-Frames restrict subsequent P-frames from referring to any frame " \    "prior to the IDR-Frame. \n" \    "If scenecuts appear within this interval, they are still encoded as " \    "I-frames, but do not start a new GOP. Default value is keyint * 0.4." )#define BFRAMES_TEXT N_("B frames")#define BFRAMES_LONGTEXT N_( "Number of consecutive B-Frames between I and " \    "P-frames." )#define BPYRAMID_TEXT N_("B pyramid")#define BPYRAMID_LONGTEXT N_( "Allows B-frames to be used as references for " \    "predicting other frames." )#define FRAMEREF_TEXT N_("Number of previous frames used as predictors.")#define FRAMEREF_LONGTEXT N_( "This is effective in Anime, but seems to " \    "make little difference in live-action source material. Some decoders " \    "are unable to deal with large frameref values." )#define SCENE_TEXT N_("Scene-cut detection.")#define SCENE_LONGTEXT N_( "Controls how aggressively to insert extra " \    "I-frames. With small values of scenecut, the codec often has to force " \    "an I-frame when it would exceed keyint. " \    "Good values of scenecut may find a better location for the I-frame. " \    "Large values use more I-frames than necessary, thus wasting bits. " \    "-1 disables scene-cut detection, so I-frames are be inserted only every "\    "other keyint frames, which probably leads to ugly encoding artifacts." )#define SUBPEL_TEXT N_("Sub-pixel refinement quality.")#define SUBPEL_LONGTEXT N_( "This parameter controls quality versus speed " \    "tradeoffs involved in the motion estimation decision process " \    "(lower = quicker and higher = better quality)." )static char *enc_analyse_list[] =  { "", "all", "normal", "fast", "none" };static char *enc_analyse_list_text[] =  { N_("default"), N_("all"), N_("normal"), N_("fast"), N_("none") };vlc_module_begin();    set_description( _("h264 video encoder using x264 library"));    set_capability( "encoder", 200 );    set_callbacks( Open, Close );    set_category( CAT_INPUT );    set_subcategory( SUBCAT_INPUT_VCODEC );    add_integer( SOUT_CFG_PREFIX "qp", 0, NULL, QP_TEXT, QP_LONGTEXT,                 VLC_FALSE );        change_integer_range( 0, 51 );    add_integer( SOUT_CFG_PREFIX "qp-min", 10, NULL, QPMIN_TEXT,                 QPMIN_LONGTEXT, VLC_FALSE );        change_integer_range( 0, 51 );    add_integer( SOUT_CFG_PREFIX "qp-max", 51, NULL, QPMAX_TEXT,                 QPMAX_LONGTEXT, VLC_FALSE );        change_integer_range( 0, 51 );    add_bool( SOUT_CFG_PREFIX "cabac", 1, NULL, CABAC_TEXT, CABAC_LONGTEXT,              VLC_FALSE );    add_bool( SOUT_CFG_PREFIX "loopfilter", 1, NULL, LOOPF_TEXT,              LOOPF_LONGTEXT, VLC_FALSE );    add_string( SOUT_CFG_PREFIX "analyse", "", NULL, ANALYSE_TEXT,                ANALYSE_LONGTEXT, VLC_FALSE );        change_string_list( enc_analyse_list, enc_analyse_list_text, 0 );    add_float( SOUT_CFG_PREFIX "tolerance", 1.0, NULL, TOLERANCE_TEXT,               TOLERANCE_LONGTEXT, VLC_FALSE );        change_float_range( 0, 100 );    add_integer( SOUT_CFG_PREFIX "vbv-maxrate", 0, NULL, VBV_MAXRATE_TEXT,                 VBV_MAXRATE_LONGTEXT, VLC_FALSE );    add_integer( SOUT_CFG_PREFIX "vbv-bufsize", 0, NULL, VBV_BUFSIZE_TEXT,                 VBV_BUFSIZE_LONGTEXT, VLC_FALSE );    add_float( SOUT_CFG_PREFIX "vbv-init", 0.9, NULL, VBV_INIT_TEXT,               VBV_INIT_LONGTEXT, VLC_FALSE );        change_float_range( 0, 1 );    add_integer( SOUT_CFG_PREFIX "keyint", 250, NULL, KEYINT_TEXT,                 KEYINT_LONGTEXT, VLC_FALSE );    add_integer( SOUT_CFG_PREFIX "keyint-min", 0, NULL, KEYINT_MIN_TEXT,                 KEYINT_MIN_LONGTEXT, VLC_FALSE );    add_integer( SOUT_CFG_PREFIX "bframes", 0, NULL, BFRAMES_TEXT,                 BFRAMES_LONGTEXT, VLC_FALSE );        change_integer_range( 0, 16 );    add_bool( SOUT_CFG_PREFIX "bpyramid", 0, NULL, BPYRAMID_TEXT,              BPYRAMID_LONGTEXT, VLC_FALSE );    add_integer( SOUT_CFG_PREFIX "frameref", 1, NULL, FRAMEREF_TEXT,                 FRAMEREF_LONGTEXT, VLC_FALSE );        change_integer_range( 1, 15 );    add_integer( SOUT_CFG_PREFIX "scenecut", 40, NULL, SCENE_TEXT,                 SCENE_LONGTEXT, VLC_FALSE );        change_integer_range( -1, 100 );    add_integer( SOUT_CFG_PREFIX "subpel", 5, NULL, SUBPEL_TEXT,                 SUBPEL_LONGTEXT, VLC_FALSE );        change_integer_range( 1, 5 );vlc_module_end();/***************************************************************************** * Local prototypes *****************************************************************************/static const char *ppsz_sout_options[] = {    "qp", "qp-min", "qp-max", "cabac", "loopfilter", "analyse",    "keyint", "keyint-min", "bframes", "bpyramid", "frameref", "scenecut",    "subpel", "tolerance", "vbv-maxrate", "vbv-bufsize", "vbv-init", NULL};static block_t *Encode( encoder_t *, picture_t * );struct encoder_sys_t{    x264_t          *h;    x264_param_t    param;    int             i_buffer;    uint8_t         *p_buffer;    mtime_t         i_last_ref_pts;};/***************************************************************************** * Open: probe the encoder *****************************************************************************/static int  Open ( vlc_object_t *p_this ){    encoder_t     *p_enc = (encoder_t *)p_this;    encoder_sys_t *p_sys;    vlc_value_t    val;    int i_qmin = 0, i_qmax = 0;    if( p_enc->fmt_out.i_codec != VLC_FOURCC( 'h', '2', '6', '4' ) &&        !p_enc->b_force )    {        return VLC_EGENERIC;    }    if( p_enc->fmt_in.video.i_width % 16 != 0 ||        p_enc->fmt_in.video.i_height % 16!= 0 )    {        msg_Warn( p_enc, "size is not a multiple of 16 (%ix%i)",                  p_enc->fmt_in.video.i_width, p_enc->fmt_in.video.i_height );        if( p_enc->fmt_in.video.i_width < 16 ||            p_enc->fmt_in.video.i_height < 16 )        {            msg_Err( p_enc, "video is too small to be cropped" );            return VLC_EGENERIC;        }        msg_Warn( p_enc, "cropping video to %ix%i",                  p_enc->fmt_in.video.i_width >> 4 << 4,                  p_enc->fmt_in.video.i_height >> 4 << 4 );    }    sout_CfgParse( p_enc, SOUT_CFG_PREFIX, ppsz_sout_options, p_enc->p_cfg );    p_enc->fmt_out.i_codec = VLC_FOURCC( 'h', '2', '6', '4' );    p_enc->fmt_in.i_codec = VLC_FOURCC('I','4','2','0');    p_enc->pf_encode_video = Encode;    p_enc->pf_encode_audio = NULL;    p_enc->p_sys = p_sys = malloc( sizeof( encoder_sys_t ) );    p_sys->i_last_ref_pts = 0;    x264_param_default( &p_sys->param );    p_sys->param.i_width  = p_enc->fmt_in.video.i_width >> 4 << 4;    p_sys->param.i_height = p_enc->fmt_in.video.i_height >> 4 << 4;    var_Get( p_enc, SOUT_CFG_PREFIX "qp-min", &val );    if( val.i_int >= 1 && val.i_int <= 51 ) i_qmin = val.i_int;    var_Get( p_enc, SOUT_CFG_PREFIX "qp-max", &val );    if( val.i_int >= 1 && val.i_int <= 51 ) i_qmax = val.i_int;    var_Get( p_enc, SOUT_CFG_PREFIX "qp", &val );    if( val.i_int >= 1 && val.i_int <= 51 )    {        if( i_qmin > val.i_int ) i_qmin = val.i_int;        if( i_qmax < val.i_int ) i_qmax = val.i_int;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -