自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(34)
  • 资源 (284)
  • 收藏
  • 关注

原创 x264 - x264_reference_build_list

static inline void x264_reference_build_list( x264_t *h, int i_poc ){    int b_ok;    /* build ref list 0/1 */    // 初始化 h->i_ref[0], h->i_ref[1]为0    // h->i_ref[0]为参考帧队列ref[0]的索引    // h

2014-06-19 20:49:04 1321 1

原创 x264 - x264_mb_analyse_inter_p16x16

static void x264_mb_analyse_inter_p16x16( x264_t *h, x264_mb_analysis_t *a ){    x264_me_t m;    int i_mvc;    ALIGNED_4( int16_t mvc[8][2] );    int i_halfpel_thresh = INT_MAX;    int *p_

2014-06-14 13:39:31 1475

原创 x264 - get_ref

static pixel *get_ref( pixel *dst,   intptr_t *i_dst_stride,                       pixel *src[4], intptr_t i_src_stride,                       int mvx, int mvy,                       int i_width

2014-06-12 14:15:44 987

原创 x264 - x264_macroblock_cache_load

1280x720 => w = 80 16x16mbs         => h = 45 16x16mbstotal mbs = 3600Now analysing mb 1, mb_x = 1, mb_y = 0static void ALWAYS_INLINE x264_macroblock_cache_load( x264_t *h, int mb_x, int mb_y,

2014-06-09 14:25:51 1339

原创 x264 - x264_mb_encode_i16x16

/* All encoding functions must output the correct CBP and NNZ values. * The entropy coding functions will check CBP first, then NNZ, before * actually reading the DCT coefficients.  NNZ still must

2014-06-05 10:19:42 1375

原创 vlc android project create

android-libs                   -- android shared library(e.g. libbinder.so libmedia.so libstagefright.so libutils.so)vlc/contrib/android            -- 3rdparty library package unzip pathvlc/contri

2014-06-26 15:47:29 817

原创 x264 - x264_ratecontrol_summary

// 输出 final ratefactor 日志void x264_ratecontrol_summary( x264_t *h ){    x264_ratecontrol_t *rc = h->rc;    if( rc->b_abr && h->param.rc.i_rc_method == X264_RC_ABR && rc->cbr_decay > .9999 ) 

2014-06-25 08:36:17 644

原创 x264 - x264_ratecontrol_set_weights

void x264_ratecontrol_set_weights( x264_t *h, x264_frame_t *frm ){    ratecontrol_entry_t *rce = &h->rc->entry[frm->i_frame];    if( h->param.analyse.i_weighted_pred         return;    if( r

2014-06-25 08:35:24 586

原创 x264 - x264_ratecontrol_init_reconfigurable

void x264_ratecontrol_init_reconfigurable( x264_t *h, int b_init ){    x264_ratecontrol_t *rc = h->rc;    if( !b_init && rc->b_2pass )        return;    if( h->param.rc.i_rc_method == X264_R

2014-06-25 08:34:13 1123

原创 x264 - rate_estimate_qscale

// 依据到目前为止编码bit数估算一帧的qscale// update qscale for 1 frame based on actual bits used so farstatic float rate_estimate_qscale( x264_t *h ){    float q;    x264_ratecontrol_t *rcc = h->rc;    r

2014-06-25 08:33:19 1720

原创 x264 - x264_ratecontrol_slice_type

/* In 2pass, force the same frame types as in the 1st pass */int x264_ratecontrol_slice_type( x264_t *h, int frame_num ){    x264_ratecontrol_t *rc = h->rc;    if( h->param.rc.b_stat_read ) 

2014-06-25 08:31:41 1191

原创 x264 - x264_ratecontrol_mb

/* TODO: *  eliminate all use of qp in row ratecontrol: make it entirely qscale-based. *  make this function stop being needlessly O(N^2) *  update more often than once per row? */int x264_rat

2014-06-25 08:30:27 1749

原创 x264 - x264_ratecontrol_end

// 编码一帧后, 保存码率控制状态信息/* After encoding one frame, save stats and update ratecontrol state */int x264_ratecontrol_end( x264_t *h, int bits, int *filler ){    x264_ratecontrol_t *rc = h->rc;   

2014-06-25 08:28:45 1858

原创 x264 - x264_ratecontrol_start

// 在编码一帧前,为该帧选择qp/* Before encoding a frame, choose a QP for it */void x264_ratecontrol_start( x264_t *h, int i_force_qp, int overhead ){    x264_ratecontrol_t *rc = h->rc;    ratecontrol_en

2014-06-25 08:27:32 1462

原创 x264 - x264_ratecontrol_delete

// 释放ratecontrol各种对象和资源void x264_ratecontrol_delete( x264_t *h ){    x264_ratecontrol_t *rc = h->rc;    int b_regular_file;        if( rc->p_stat_file_out )    {        // 关闭stat 文件, 并

2014-06-25 08:26:15 657

原创 x264 - x264_ratecontrol_new

int x264_ratecontrol_new( x264_t *h ){    x264_ratecontrol_t *rc;    x264_emms();    // 依据线程数, 为h->rc分配内存空间    CHECKED_MALLOCZERO( h->rc, h->param.i_threads * sizeof(x264_ratecontrol_t) );

2014-06-25 08:24:45 2562

原创 x264 - open gop and closed gop

x264 - open gop and closed gopGOP即Group of picture(图像组),指两个I帧之间的距离;Reference(参考周期)指两个P帧之间的距离简而言之, 参考可跨gop的,成为open gop;参考在同一gop进行的称为closed gop。

2014-06-20 09:29:42 2118

原创 x264 - x264_slicetype_frame_cost

static int x264_slicetype_frame_cost( x264_t *h, x264_mb_analysis_t *a,                                      x264_frame_t **frames, int p0, int p1, int b,                                      int

2014-06-20 08:45:24 1384

原创 x264 - x264_mb_encode_i16x16

/* All encoding functions must output the correct CBP and NNZ values. * The entropy coding functions will check CBP first, then NNZ, before * actually reading the DCT coefficients.  NNZ still must

2014-06-19 20:54:10 578

原创 x264 - x264_reference_update

static inline int x264_reference_update( x264_t *h ){    if( !h->fdec->b_kept_as_ref )    {        // 如果h->fdec 不作为参考帧        if( h->i_thread_frames > 1 )        {            // 如果 i_thr

2014-06-19 20:51:38 1007

原创 x264 - x264_reference_check_reorder

/* Check to see whether we have chosen a reference list ordering different * from the standard's default. */static inline void x264_reference_check_reorder( x264_t *h ){    /* The reorder chec

2014-06-19 20:50:25 726

原创 x264 - x264_reference_hierarchy_reset

static inline void x264_reference_hierarchy_reset( x264_t *h ){    int ref;    int b_hasdelayframe = 0;    // 非参考B帧一般是IS_DISPOSABLE    /* look for delay frames -- chain must only contain f

2014-06-19 20:47:24 1133

原创 x264 - x264_reference_reset

// 这个函数一般是在待编码帧类型为IDR时被调用static inline void x264_reference_reset( x264_t *h ){    // 清空参考帧队列    while( h->frames.reference[0] )        x264_frame_push_unused( h, x264_frame_pop( h->frames.re

2014-06-19 20:45:34 767

原创 x264 - x264_slicetype_mb_cost

/* Output buffers are separated by 128 bytes to avoid false sharing of cachelines * in multithreaded lookahead. */#define PAD_SIZE 32/* cost_est, cost_est_aq, intra_mbs, num rows */#define NUM

2014-06-19 20:43:53 1736 1

原创 x264 - x264_slicetype_slice_cost

static void x264_slicetype_slice_cost( x264_slicetype_slice_t *s ){    x264_t *h = s->h;    /* Lowres lookahead goes backwards because the MVs are used as predictors in the main encode.     *

2014-06-19 20:42:20 996

原创 x264 - x264_mb_analyse_inter_b16x16

static void x264_mb_analyse_inter_b16x16( x264_t *h, x264_mb_analysis_t *a ){    // 声明数组变量 pixel pix0[16*16], pix1[16*16];    // 一个16x16宏块大小    ALIGNED_ARRAY_N( pixel, pix0,[16*16] );    ALI

2014-06-19 20:36:36 858

原创 x264 - x264_slicetype_analyse

void x264_slicetype_analyse( x264_t *h, int intra_minigop ){    x264_mb_analysis_t a;    x264_frame_t *frames[X264_LOOKAHEAD_MAX+3] = { NULL, };    int num_frames, orig_num_frames, keyint_limi

2014-06-17 22:19:59 1525

原创 x264 - x264_me_search_ref

void x264_me_search_ref( x264_t *h, x264_me_t *m, int16_t (*mvc)[2], int i_mvc, int *p_halfpel_thresh ){    const int bw = x264_pixel_size[m->i_pixel].w;    const int bh = x264_pixel_size[m->i_p

2014-06-11 17:16:25 2006

原创 x264 - x264_mb_predict_mv_16x16

void x264_mb_predict_mv_16x16( x264_t *h, int i_list, int i_ref, int16_t mvp[2] ){    // left of ref    int     i_refa = h->mb.cache.ref[i_list][X264_SCAN8_0 - 1];    // left of mv    int16_

2014-06-11 15:20:08 803

原创 x264 - x264_mb_predict_mv_ref16x16

/* This just improves encoder performance, it's not part of the spec */void x264_mb_predict_mv_ref16x16( x264_t *h, int i_list, int i_ref, int16_t mvc[9][2], int *i_mvc ){    int16_t (*mvr)[2] =

2014-06-11 15:12:56 1521

转载 x264 - vbv-bufsize vbv-maxrate

http://forum.doom9.org/showthread.php?p=1642809H.264 has predefined levels to help choosing the correct --vbv-maxrate and --vbv-bufsize values:Last edited by sneaker_ger; 4th S

2014-06-10 10:26:07 3715

原创 RSA padding schemes

1.  RSA_PKCS1_PADDING     plaintext length should be

2014-06-06 10:14:04 1456

原创 x264 - ssd_mb

static inline int ssd_mb( x264_t *h ){    //  PIXEL_16X16 = 0, chroma_size = 3    int chroma_size = h->luma2chroma_pixel[PIXEL_16x16];    // calc two chroma blocks' ssd    int chroma_ssd = s

2014-06-05 20:42:29 753

原创 x264 - x264_macroblock_encode

void x264_macroblock_encode( x264_t *h ){    if( CHROMA444 )        x264_macroblock_encode_internal( h, 3, 0 );    else        x264_macroblock_encode_internal( h, 1, 1 );}/**************

2014-06-05 11:47:19 1055

嵌入式系统Linux内核开发实战指南 ARM平台 王洪辉.7z.003

王洪辉 潜心力作-嵌入式Linux开发 ARM 平台。pdf 文档, 被分割成三部分压缩。这是第三部分。

2014-07-04

A First Course on Wavelets

Eugenio Hernandez graduated from the Universidad Complutense de Madrid in 1977 and obtained his Ph.D. degree from Washington University in St. Louis in 1981. He has been a member of the faculty of the Universidad Autonoma de Madrid since 1982 and is now Professor of Mathematics. During the academic year 1987-88 Dr. Hernandez was a Fulbright Fellow and a member of the Mathematical Sciences Research Institute in Berkeley, California. He was a visiting professor at Washington University in St. Louis in 1994-95. His research interests lie in the areas of the theory of interpolation of operators, weighted inequalities, and most recently, in the theory of wavelets. Guido Weiss obtained his undergraduate and graduate degrees from the University of Chicago, receiving his Ph.D. degree in 1956. He served on the faculty at DePaul University from 1955 to 1960, and joined the faculty of Washington University in 1960 where he is now the Elinor Anheuser Professor of Mathematics. During the past 35 years he has had leaves of absence that have allowed him to be visiting professor in several different institutions: the Sorbonne, the University of Geneva, the University of Paris in Orsay, the Mathematical Sciences Research Institute in Berkeley, California (in each case for an academic year). He also was visiting professor during semester academic leave at the Universidad de Buenos Aires, Peking University, Beijing Normal University, and the Universidad Autonoma de Madrid. His research involves a broad area of mathematical analysis, particularly harmonic analysis. Some of his work, especially his contributions to the atomic and molecular characterizations of certain function spaces (particularly the Hardy spaces), is closely related to the theory of wavelets, a subject that has commanded his attention during the last few years. He has been awarded several honorsamong them the Chauvenet Prize and honorary degrees from Beijing Normal University, the University of Milano, and the University of Barcelona.

2014-07-02

VC-1 and H.264 video compression standards for broadband video services

The VC-1 and H.264 video compression standards for broadband video services pdf document, mpeg4 and h.264 classical english instruction book.

2014-04-13

aes encrypt source code

aes cbc encrypt and decrypt source code from openssl source code.

2014-03-18

x264 h264_find_frame_end flow diagram

x264 h264_find_frame_end state transfer diagram with visio format

2014-03-11

ffmpeg analyse document

ffmpeg analyse document, including flow diagram in visio format.

2014-03-10

Head First Design Patterns (English Edition)

Head First Design Patterns (English Edition), clear pdf document.

2013-11-21

数字图像处理第二版(冈萨雷斯)习题答案

数字图像处理第二版(冈萨雷斯)习题答案 pdf document.

2013-10-27

Android 技术内幕.系统卷

Android 技术内幕.系统卷, pdf document, 作者:杨丰盛 2011-05

2013-10-18

OpenCV 2 Computer Vision Application Programming Cookbook

OpenCV 2 Computer Vision Application Programming Cookbook, including pdf document and source code.

2013-10-18

Mastering OpenCV with Practical Computer Vision Projects (full version)

Mastering OpenCV with Practical Computer Vision Projects (full version) - by Daniel Lélis Baggio etc, pdf document.

2013-10-18

Learning OpenCV

Learning OpenCV - by Gary Bradski and Adrian Kaehler, pdf document

2013-10-18

OpenGL Programming Guide 8th Edition - 2013

OpenGL Programming Guide 8th Edition - 2013, pdf document

2013-10-14

OPENCL异构计算

OPENCL异构计算, 中文, pdf 文档。 作者:Benedict Gaster 等

2013-09-25

Heterogeneous Computing with OpenCL

Heterogeneous Computing with OpenCL, english, pdf document.

2013-09-25

Network Programming for Microsoft Windows, 2nd Edition

Network Programming for Microsoft Windows, 2nd Edition, English. chm document

2013-09-22

Windows via CC++ 5th edition

Windows via CC++ 5th edition, english. chm document

2013-09-22

H264_And_MPEG4_Video_Compression_Video_Coding_For_Next_Generation_Multimedia

H264 And MPEG4 Video Compression Video Coding For Next Generation Multimedia pdf document

2013-08-23

Discrete-Time Signal Processing 3rd edition (oppenheim)

Discrete-Time Signal Processing 3rd edition (oppenheim) pdf document, about 70M size.

2013-07-03

Intel® 64 and IA-32 Architectures Software Developer’s Manual

Intel® 64 and IA-32 Architectures Software Developer’s Manual pdf document, 33M size.

2013-07-03

H264Visa-1.15 cracked version

H264 codec stream analyse softwore version 1.15 cracked

2013-07-01

source code of many av codecs

a source code tarball of all kinds of audio/video encode/decode for convenient download, including aacplus, fdk-aac, amrnb, amrwb, ogg, vorbis, xvidcore, vpx, bluray etc.

2013-05-10

mpeg4ip source code

mpeg4ip can be used to generate track hint for mp4 file, this is a must for Darwin Streaming Server. mpeg4ip source code and SDL source code for convenient download. The SDL is a must for Configure and compile mpeg4ip. Additionally, The libtool is also a must, but it can be install by apt-get install libtool on ubuntu. For pass the compiling, you need process the compiling error manually when compiling mpeg4ip.

2013-05-08

hevc-h265 draft specification

latest HEVC (H265) draft specification pdf document.

2013-04-25

hevc-h265-hm10

HEVC (H265) test model source code 10 for convenient download

2013-04-25

HEVC test model source code 1.0

HEVC (h265) test model source code 1.0 for convenient download.

2013-04-24

Multiple View Geometry in Computer Vision

Multiple View Geometry in Computer Vision (Richard Hartley 2nd Edition) clear pdf document

2013-03-31

Image Processing, Analysis, and Machine Vision

Image Processing, Analysis, and Machine Vision (Sonka 3rd Edition 2007) clear pdf document

2013-03-31

Computer Vision-A Modern Approach

Computer Vision-A Modern Approach (D.A Forsyth) original edition clear pdf document

2013-03-31

Computer Vision Algorithms and Applications

Computer Vision Algorithms and Applications (Richard Szeliski 09-2010) original version clear pdf document

2013-03-31

The Scientist and Engineer's and Guide to Digital Signal Processing.pdf

Digital Signal Processing is one of the most powerful technologies that will shape science and engineering in the twenty-first century. Revolutionary changes have already been made in a broad range of fields: communications, medical imaging, radar & sonar, high fidelity music reproduction, and oil prospecting, to name just a few. Each of these areas has developed a deep DSP technology, with its own algorithms, mathematics, and specialized techniques. This combination of breath and depth makes it impossible for any one individual to master all of the DSP technology that has been developed. DSP education involves two tasks: learning general concepts that apply to the field as a whole, and learning specialized techniques for your particular area of interest. This chapter starts our journey into the world of Digital Signal Processing by describing the dramatic effect that DSP has made in several diverse fields.

2019-06-05

High Efficiency Video Coding (HEVC) - Algorithms and Architectures

This book provides developers, engineers, researchers and students with detailed knowledge about the High Efficiency Video Coding (HEVC) standard. HEVC is the successor to the widely successful H.264/AVC video compression standard, and it provides around twice as much compression as H.264/AVC for the same level of quality.

2015-04-02

High Efficiency Video Coding - Coding Tools and Specification

The video coding standard High Efficiency Video Coding (HEVC) targets at improved compression performance for video resolutions of HD and beyond, providing Ultra HD video at similar compressed bit rates as for HD video encoded with the well-established video coding standard H.264/AVC. Based on known concepts, new coding structures and improved coding tools have been developed and specified in HEVC.

2015-04-02

Machine Learning - The Art and Science of Algorithms that Make Sense of Data

Machine Learning: Making Sense of Data - Peter Flach (University of Bristol)

2015-03-16

H264-2014-02

Summary Recommendation ITU-T H.264 | International Standard ISO/IEC 14496-10 represents an evolution of the existing video coding standards (ITU-T H.261, ITU-T H.262, and ITU-T H.263) and it was developed in response to the growing need for higher compression of moving pictures for various applications such as videoconferencing, digital storage media, television broadcasting, Internet streaming, and communication. It is also designed to enable the use of the coded video representation in a flexible manner for a wide variety of network environments. The use of this Recommendation | International Standard allows motion video to be manipulated as a form of computer data and to be stored on various storage media, transmitted and received over existing and future networks and distributed on existing and future broadcasting channels.

2015-03-06

H265-2014-10

Rec. ITU-T H.265 v2 (10/2014) i Recommendation ITU-T H.265 High efficiency video coding Summary Recommendation ITU-T H.265 | International Standard ISO/IEC 23008-2 represents an evolution of the existing video coding Recommendations (ITU-T H.261, ITU-T H.262, ITU-T H.263 and ITU-T H.264) and was developed in response to the growing need for higher compression of moving pictures for various applications such as Internet streaming, communication, videoconferencing, digital storage media and television broadcasting. It is also designed to enable the use of the coded video representation in a flexible manner for a wide variety of network environments. The use of this Recommendation | International Standard allows motion video to be manipulated as a form of computer data and to be stored on various storage media, transmitted and received over existing and future networks and distributed on existing and future broadcasting channels. This Recommendation | International Standard was developed jointly with ISO/IEC JTC 1/SC 29/WG 11 (MPEG) and corresponds in a technically aligned manner to ISO/IEC 23008-2.

2015-03-06

Voice over IP Fundamentals

This book is designed to provide information about Voice over IP. Every effort has been made to make this book as complete and as accurate as possible, but no warranty or fitness is implied.

2014-10-22

ISO-IEC-14496-1-2-3

ISO the International Organization for Standardization and IEC the International Electrotechnical Commission form the specialized system for worldwide standardization National bodies that are members of ISO or IEC participate in the development of International Standards through technical committees established by the respective organization to deal with particular fields of technical activity ISO and IEC technical committees collaborate in fields of mutual interest Other international organizations governmental and non governmental in liaison with ISO and IEC also take part in the work In the field of information technology ISO and IEC have established a joint technical committee ISO IEC JTC 1 ">ISO the International Organization for Standardization and IEC the International Electrotechnical Commission form the specialized system for worldwide standardization National bodies that are members of ISO or IEC participate in the development of International Standards through technical commi [更多]

2014-08-29

嵌入式系统Linux内核开发实战指南 ARM平台 王洪辉.7z.002

王洪辉 潜心力作-嵌入式Linux开发 ARM 平台。pdf 文档, 被分割成三部分压缩。这是第二部分。

2014-07-04

嵌入式系统Linux内核开发实战指南 ARM平台 王洪辉.7z.001

王洪辉 潜心力作-嵌入式Linux开发 ARM 平台。pdf 文档, 被分割成三部分压缩。这是第一部分。

2014-07-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除