vld20150616005,mp4

softmp4 经过优化了的MPEG-4的代码,可以做到实时,是纯c 大家 Streaming_ 4 流媒体/ 4/MP4 240万源代码下载-
&文件名称: softmp4
& & & & &&]
&&所属分类:
&&开发工具: Visual C++
&&文件大小: 2345 KB
&&上传时间:
&&下载次数: 144
&&提 供 者:
&详细说明:经过优化了的MPEG-4的代码,可以做到实时,是纯c的代码,大家可以-After optimization of the MPEG-4 code, can do real-time, pure c code, we can s
文件列表(日期:~)(点击判断是否您需要的文件,如果是垃圾请在下面评价投诉):
&&softmp&&.................\new&&.................\...\&&.................\...\&&.................\...\EncodeMain.c.bak&&.................\...\&&.................\...\&&.................\...\include&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\idct.h&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\.......\&&.................\...\&&.................\...\&&.................\...\&&.................\...\&&.................\...\&&.................\...\&&.................\...\&&.................\...\softMp4&&.................\...\.......\Debug&&.................\...\.......\Release&&.................\...\.......\softMp4.dsp&&.................\...\.......\softMp4.dsw&&.................\...\.......\softMp4.ncb&&.................\...\.......\softMp4.opt&&.................\...\.......\softMp4.plg&&.................\...\&&.................\...\&&.................\...\&&.................\...\text_code_mb.c.bak&&.................\...\&&.................\...\
&[]:一般,勉强可用
&近期下载过的用户:
&相关搜索:
&输入关键字,在本站240万海量源码库中尽情搜索:
&[] - 经过优化了的MPEG-4的代码,可以做到实时编码及解码,并且是纯c的代码
&[] - 采用FFmpeg对H.264文件进行解码的优秀例子。
&[] - 研究h.264解码器的优化方法,以及分析浪费时间多的模块
&[] - real-time MPEG-1/MPEG-4 encoder
&[] - 用来创建MP4流、将视频编码成符合MPEG-4的流、将音频编码成AAC、回放MP4文件的工具以及很多其他的工具。
&[] - 包含MPEG-4视频和音频编解码
&[] - 多媒体编程,含acc, amr, avi, mp4等
相关函数/类:
QueryPerformanceCounter QueryPerformanceFrequency>> mp4_header.c - G729、h263、h264、MPEG4四种最流
点击查看更多 ▼
点击收缩隐藏 ▲
mp4_header.c - G729、h263、h264、MPEG4四种最流
源码下载: &
#include &stdlib.h&
#include &math.h&
#include &mp4_vars.h&
#include &getbits.h&
#include &debug.h&
#include &mp4_header.h&
void next_start_code();
//得到视频对象层头
int getvolhdr()
if (showbits(27) == VO_START_CODE)
getbits(27);
getbits(5);
if (getbits(28) != VOL_START_CODE)
exit(101);
mp4_state-&hdr.ident = getbits(4);
mp4_state-&hdr.random_accessible_vol = getbits(1);
mp4_state-&hdr.type_indication = getbits(8);
mp4_state-&hdr.is_object_layer_identifier = getbits(1);
if (mp4_state-&hdr.is_object_layer_identifier) {
mp4_state-&hdr.visual_object_layer_verid = getbits(4);
mp4_state-&hdr.visual_object_layer_priority = getbits(3);
mp4_state-&hdr.visual_object_layer_verid = 1;
mp4_state-&hdr.visual_object_layer_priority = 1;
mp4_state-&hdr.aspect_ratio_info = getbits(4);
mp4_state-&hdr.vol_control_parameters = getbits(1);
if (mp4_state-&hdr.vol_control_parameters) {
mp4_state-&hdr.chroma_format = getbits(2);
mp4_state-&hdr.low_delay = getbits(1);
mp4_state-&hdr.vbv_parameters = getbits(1);
if (mp4_state-&hdr.vbv_parameters) {
mp4_state-&hdr.first_half_bit_rate = getbits(15);
getbits1();
mp4_state-&hdr.latter_half_bit_rate = getbits(15);
getbits1();
mp4_state-&hdr.first_half_vbv_buffer_size = getbits(15);
getbits1();
mp4_state-&hdr.latter_half_vbv_buffer_size = getbits(3);
mp4_state-&hdr.first_half_vbv_occupancy = getbits(11);
getbits1();
mp4_state-&hdr.latter_half_vbv_occupancy = getbits(15);
getbits1();
mp4_state-&hdr.shape = getbits(2);
getbits1();
mp4_state-&hdr.time_increment_resolution = getbits(16);
getbits1();
mp4_state-&hdr.fixed_vop_rate = getbits(1);
if (mp4_state-&hdr.fixed_vop_rate) {
int bits = (int) ceil(log((double)mp4_state-&hdr.time_increment_resolution)/log(2.0));
if (bits & 1)
mp4_state-&hdr.fixed_vop_time_increment = getbits(bits);
if (mp4_state-&hdr.shape != BINARY_SHAPE_ONLY)
if(mp4_state-&hdr.shape == 0)
getbits1();
mp4_state-&hdr.width = getbits(13);
getbits1();
mp4_state-&hdr.height = getbits(13);
getbits1();
mp4_state-&hdr.interlaced = getbits(1);
mp4_state-&hdr.obmc_disable = getbits(1);
if (mp4_state-&hdr.visual_object_layer_verid == 1) {
mp4_state-&hdr.sprite_usage = getbits(1);
mp4_state-&hdr.sprite_usage = getbits(2);
mp4_state-&hdr.not_8_bit = getbits(1);
if (mp4_state-&hdr.not_8_bit)
mp4_state-&hdr.quant_precision = getbits(4);
mp4_state-&hdr.bits_per_pixel = getbits(4);
mp4_state-&hdr.quant_precision = 5;
mp4_state-&hdr.bits_per_pixel = 8;
if (mp4_state-&hdr.shape == GRAY_SCALE) {
exit(102);
mp4_state-&hdr.quant_type = getbits(1);
if (mp4_state-&hdr.quant_type)
mp4_state-&hdr.load_intra_quant_matrix = getbits(1);
if (mp4_state-&hdr.load_intra_quant_matrix) {
int i, k = 0;
val = getbits(8);
mp4_tables-&intra_quant_matrix[mp4_tables-&zig_zag_scan[k]] =
} while ((k & 64) && (val != 0));
for (i = i & 64; i++) {
mp4_tables-&intra_quant_matrix[mp4_tables-&zig_zag_scan[i]] =
mp4_tables-&intra_quant_matrix[mp4_tables-&zig_zag_scan[k-1]];
mp4_state-&hdr.load_nonintra_quant_matrix = getbits(1);
if (mp4_state-&hdr.load_nonintra_quant_matrix) {
int i, k = 0;
val = getbits(8);
mp4_tables-&nonintra_quant_matrix[mp4_tables-&zig_zag_scan[k]] =
} while ((k & 64) && (val != 0));
for (i = i & 64; i++) {
mp4_tables-&nonintra_quant_matrix[mp4_tables-&zig_zag_scan[i]] =
mp4_tables-&nonintra_quant_matrix[mp4_tables-&zig_zag_scan[k-1]];
if (mp4_state-&hdr.visual_object_layer_verid/*ident*/ != 1) {
mp4_state-&hdr.quarter_pixel = getbits(1);
mp4_state-&hdr.quarter_pixel = 0;
mp4_state-&plexity_estimation_disable = getbits(1);
mp4_state-&hdr.error_res_disable = getbits(1);
mp4_state-&hdr.data_partitioning = getbits(1);
if (mp4_state-&hdr.data_partitioning) {
exit(102);
mp4_state-&hdr.error_res_disable = 1;
mp4_state-&hdr.intra_acdc_pred_disable = 0;
mp4_state-&hdr.scalability = getbits(1);
if (mp4_state-&hdr.scalability) {
exit(103);
if (showbits(32) == USER_DATA_START_CODE) {
exit(104);
return 0; // // 没有视频对象启动代码
// 得到图像组头
int getgophdr()
if (nextbits(32) == GOP_START_CODE)
getbits(32);
mp4_state-&hdr.time_code = getbits(18);
mp4_state-&hdr.closed_gov = getbits(1);
mp4_state-&hdr.broken_link = getbits(1);
// 得到视频对象平面的头
int getvophdr()
next_start_code();
if(getbits(32) != (int) VOP_START_CODE)
_Print(&Vop start_code NOT found\n&);
mp4_state-&hdr.prediction_type = getbits(2);
while (getbits(1) == 1) // 临时的时间起点
mp4_state-&hdr.time_base++;
getbits1();
int bits = (int) ceil(log(mp4_state-&hdr.time_increment_resolution)/log(2.0));
if (bits & 1) bits = 1;
mp4_state-&hdr.time_inc = getbits(bits);
getbits1();
mp4_state-&hdr.vop_coded = getbits(1);
if (mp4_state-&hdr.vop_coded == 0)
next_start_code();
if ((mp4_state-&hdr.shape != BINARY_SHAPE_ONLY) &&
(mp4_state-&hdr.prediction_type == P_VOP))
mp4_state-&hdr.rounding_type = getbits(1);
mp4_state-&hdr.rounding_type = 0;
if (mp4_state-&hdr.shape != RECTANGULAR)
if (! (mp4_state-&hdr.sprite_usage == STATIC_SPRITE &&
mp4_state-&hdr.prediction_type==I_VOP) )
mp4_state-&hdr.width = getbits(13);
getbits1();
mp4_state-&hdr.height = getbits(13);
getbits1();
mp4_state-&hdr.hor_spat_ref = getbits(13);
getbits1();
mp4_state-&hdr.ver_spat_ref = getbits(13);
getbits1();
mp4_state-&hdr.change_CR_disable = getbits(1);
mp4_state-&hdr.constant_alpha = getbits(1);
if (mp4_state-&hdr.constant_alpha) {
mp4_state-&hdr.constant_alpha_value = getbits(8);
if (! (mp4_state-&plexity_estimation_disable)) {
exit(108);
if (mp4_state-&hdr.shape != BINARY_SHAPE_ONLY)
mp4_state-&hdr.intra_dc_vlc_thr = getbits(3);
if (mp4_state-&hdr.interlaced) {
exit(109);
if (mp4_state-&hdr.shape != BINARY_SHAPE_ONLY)
mp4_state-&hdr.quantizer = getbits(mp4_state-&hdr.quant_precision); // vop quant
if (mp4_state-&hdr.prediction_type != I_VOP)
mp4_state-&hdr.fcode_for = getbits(3);
if (! mp4_state-&hdr.scalability) {
if (mp4_state-&hdr.shape && mp4_state-&hdr.prediction_type!=I_VOP)
// 视频对象平面编码类型
mp4_state-&hdr.shape_coding_type = getbits(1);
int __inline nextbits(int nbit)
return showbits(nbit);
int __inline bytealigned(int nbit)
return (((ld-&bitcnt + nbit) % 8) == 0);
void __inline next_start_code()
if (mp4_state-&juice_flag)
if (! bytealigned(0))
getbits(1);
while (! bytealigned(0)) {
flushbits(1);
getbits(1);
while (! bytealigned(0)) {
flushbits(1);
int __inline nextbits_bytealigned(int nbit)
int skipcnt = 0;
if (bytealigned(skipcnt))
if (showbits(8) == 127) {
skipcnt += 8;
while (! bytealigned(skipcnt)) {
skipcnt += 1;
code = showbits(nbit + skipcnt);
return ((code && skipcnt) && skipcnt);
源码下载: &
Sponsored links
源码文件列表
温馨提示: 点击源码文件名可预览文件内容哦 ^_^
名称大小日期
&6.80 kB21-07-93 05:00
&2.76 kB12-08-93 00:50
&2.31 kB07-05-94 01:13
&3.28 kB07-05-94 01:12
&10.25 kB14-08-93 04:32
&2.90 kB14-08-93 04:34
&1.50 kB13-08-93 03:37
&6.06 kB14-08-93 04:33
&6.33 kB14-08-93 04:33
&3.75 kB13-08-93 23:06
&14.44 kB14-08-93 04:33
&1.31 kB13-08-93 05:05
&5.32 kB14-08-93 04:33
&ez.ach791.00 B21-07-93 01:45
&4.62 kB14-08-93 04:33
&2.89 kB23-07-93 20:07
&6.75 kB14-08-93 04:33
&6.59 kB14-08-93 04:34
&2.00 kB14-08-93 04:33
&3.93 kB14-08-93 04:34
&1.21 kB17-07-93 07:45
&11.80 kB14-08-93 04:34
&1.64 kB13-08-93 04:38
&108.00 B14-08-93 03:09
&ccelp.dsp5.15 kB07-08-02 11:45
&ccelp.dsw533.00 B07-08-02 11:42
&ccelp.ncb57.00 kB07-08-02 11:45
&ccelp.opt67.00 kB02-12-99 11:45
&266.00 B19-08-03 07:04
&22.80 kB08-01-04 15:15
&5.98 kB18-07-03 09:03
&14.89 kB08-01-04 15:32
&41.19 kB08-01-04 16:46
&123.00 B09-01-04 13:00
&4.54 kB08-01-04 15:26
&1.71 kB07-01-04 17:20
&1.87 kB18-07-03 09:03
&29.70 kB03-02-04 16:26
&129.00 B07-01-04 17:47
&11.78 kB06-02-04 11:04
&23.73 kB08-01-04 15:15
&1.37 kB27-10-03 21:32
&1.95 kB27-10-03 21:33
&1.61 kB18-07-03 09:03
&3.14 kB08-01-04 15:15
&3.47 kB07-01-04 17:44
&1.85 kB08-01-04 17:07
&12.97 kB18-07-03 09:03
&10.51 kB08-01-04 15:14
&5.99 kB18-07-03 09:03
&405.00 B11-06-03 07:10
&12.58 kB11-06-03 07:10
&5.00 kB11-06-03 07:10
&2.27 kB26-11-03 18:28
&3.51 kB26-11-03 20:48
&26.05 kB08-01-04 17:50
&2.26 kB26-11-03 14:33
&8.09 kB11-06-03 07:10
&7.59 kB26-11-03 14:36
&6.06 kB08-01-04 16:37
&4.68 kB11-06-03 07:10
&3.75 kB11-06-03 07:10
&20.97 kB26-11-03 18:32
&4.35 kB26-11-03 14:36
&12.43 kB11-06-03 07:10
&10.30 kB26-11-03 20:40
&1.32 kB11-06-03 07:10
&15.24 kB09-01-04 16:36
&15.21 kB11-06-03 07:10
&4.00 kB26-11-03 17:23
&153.00 B26-11-03 19:12
&1.56 kB27-08-02 10:22
&3.19 kB26-04-04 13:10
&8.51 kB01-03-04 18:05
&57.71 kB06-07-04 16:23
&46.93 kB06-07-04 16:23
&31.71 kB17-07-05 14:38
&11.86 kB14-01-04 15:19
&20.58 kB16-01-04 21:37
&32.57 kB06-07-04 15:15
&3.29 kB28-07-04 19:38
&21.25 kB25-05-04 15:54
&19.02 kB17-07-05 10:56
&68.97 kB09-09-04 14:18
&3.18 kB13-05-03 12:58
&8.81 kB13-05-03 12:58
&62.07 kB17-07-05 14:56
&18.96 kB22-03-04 14:34
&113.02 kB19-08-04 15:31
&16.90 kB16-09-04 15:40
&110.30 kB16-09-04 17:20
&9.33 kB14-01-04 15:19
&88.74 kB16-09-04 17:20
&4.38 kB14-01-04 15:19
&2.44 kB26-04-04 13:10
&1.56 kB11-06-03 20:08
&6.25 kB06-07-04 16:23
&24.86 kB04-08-04 15:18
&2.49 kB26-04-04 13:10
&46.58 kB16-09-04 17:20
&92.77 kB16-09-04 17:20
&6.48 kB06-07-04 16:23
&4.13 kB14-01-04 15:19
&18.11 kB26-04-04 13:10
&48.95 kB26-04-04 13:10
&23.33 kB06-08-04 15:09
&27.69 kB26-04-04 13:10
&12.15 kB06-07-04 16:23
&645.00 B13-05-03 12:58
&4.15 kB13-05-03 12:58
&3.94 kB13-05-03 12:58
&2.92 kB27-01-04 15:26
&7.96 kB06-07-04 16:23
&748.00 B13-05-03 12:58
&6.26 kB06-07-04 16:41
&45.18 kB16-01-04 21:37
&5.57 kB04-08-04 15:18
&3.30 kB16-09-04 17:20
&10.84 kB06-07-04 15:15
&1.01 kB25-05-04 15:54
&38.90 kB04-08-04 15:18
&496.00 B13-05-03 12:58
&779.00 B01-12-03 13:47
&696.00 B13-05-03 12:58
&932.00 B13-05-03 12:58
&1.15 kB13-05-03 12:58
&984.00 B11-06-03 20:08
&7.33 kB23-07-04 20:12
&1.24 kB14-01-04 15:19
&427.00 B13-05-03 12:58
&645.00 B06-07-04 16:41
&854.00 B13-05-03 12:58
&1.67 kB23-08-04 16:09
&589.00 B13-05-03 12:58
&1.27 kB13-08-03 12:37
&9.27 kB21-07-04 10:25
&4.54 kB16-01-04 21:37
&1.33 kB13-05-03 12:58
&759.00 B14-01-04 15:19
&2.65 kB06-07-04 16:41
&6.76 kB26-04-04 13:10
&2.36 kB13-05-03 12:58
&1.60 kB15-10-04 19:27
&3.17 kB15-10-04 19:27
&8.95 kB15-10-04 22:20
&81.66 kB01-12-04 20:26
&49.13 kB04-11-04 23:46
&36.74 kB22-12-04 19:24
&12.03 kB04-12-04 00:11
&20.77 kB04-11-04 23:46
&16.75 kB19-11-04 22:29
&30.56 kB18-11-04 00:56
&3.63 kB04-12-04 00:11
&21.16 kB01-11-04 22:52
&17.41 kB15-11-04 22:59
&75.03 kB22-12-04 18:52
&3.17 kB13-11-04 00:24
&8.85 kB15-10-04 19:27
&79.38 kB06-07-05 11:09
&20.64 kB18-11-04 21:03
&132.36 kB23-12-04 01:17
&17.13 kB15-10-04 19:27
&113.08 kB04-12-04 00:11
&16.20 kB09-11-04 23:26
&97.10 kB04-12-04 00:11
&4.30 kB30-10-04 06:51
&2.40 kB15-10-04 19:27
&1.47 kB15-10-04 19:27
&13.71 kB13-11-04 00:24
&35.56 kB04-12-04 00:11
&2.46 kB15-10-04 19:27
&17.97 kB22-11-04 21:52
&11.79 kB22-11-04 21:52
&49.57 kB09-11-04 23:26
&179.55 kB25-12-04 16:19
&6.48 kB15-10-04 19:27
&2.24 kB04-12-04 00:11
&4.08 kB15-10-04 19:27
&17.90 kB15-10-04 19:27
&50.60 kB13-11-04 00:24
&32.75 kB04-12-04 00:11
&63.88 kB22-11-04 21:52
&30.43 kB12-11-04 19:13
&12.68 kB10-12-04 20:00
&Entries1.80 kB22-12-04 11:53
&Entries.Extra702.00 B22-12-04 11:53
&Repository21.00 B22-12-04 11:53
&Root53.00 B22-12-04 11:53
&690.00 B15-10-04 19:27
&4.15 kB15-10-04 19:27
&5.11 kB12-11-04 19:13
&2.98 kB15-10-04 19:27
&22.69 kB06-07-05 10:23
&790.00 B04-12-04 00:11
&6.40 kB15-10-04 23:19
&49.96 kB15-10-04 19:27
&6.42 kB22-11-04 21:52
&3.28 kB15-10-04 19:27
&791.00 B15-10-04 19:27
&10.88 kB13-11-04 01:54
&1.01 kB01-11-04 22:52
&44.42 kB23-12-04 01:13
&496.00 B13-05-03 19:58
&953.00 B04-12-04 00:11
&673.00 B15-10-04 19:27
&911.00 B15-10-04 19:27
&2.87 kB12-11-04 19:13
&984.00 B12-06-03 03:08
&7.19 kB04-12-04 00:11
&2.02 kB09-11-04 23:26
&454.00 B15-10-04 19:27
&701.00 B12-11-04 19:13
&854.00 B13-05-03 19:58
&1.67 kB23-08-04 23:09
&671.00 B19-10-04 23:38
&1.67 kB04-12-04 00:11
&10.05 kB04-12-04 00:11
&1.26 kB22-11-04 21:52
&738.00 B22-11-04 21:52
&3.19 kB15-10-04 19:27
&1.30 kB15-10-04 19:27
&732.00 B15-10-04 19:27
&2.61 kB15-10-04 19:27
&6.76 kB26-04-04 20:10
&1.05 kB04-11-04 23:46
&2.36 kB13-05-03 19:58
&Entries1.65 kB22-12-04 11:53
&Entries.Extra646.00 B22-12-04 11:53
&Repository21.00 B22-12-04 11:53
&Root53.00 B22-12-04 11:53
&Entries64.00 B22-12-04 11:53
&Entries.Extra37.00 B22-12-04 11:53
&Repository17.00 B22-12-04 11:53
&Root53.00 B22-12-04 11:53
&1.56 kB27-08-02 10:22
&9.45 kB16-09-04 17:18
&9.83 kB25-03-04 20:03
&35.65 kB16-09-04 17:18
&51.32 kB11-05-04 16:56
&3.18 kB25-06-03 20:35
&13.46 kB23-07-04 19:56
&18.48 kB12-08-03 18:03
&26.65 kB23-07-04 19:56
&6.04 kB06-07-04 16:41
&3.68 kB08-07-04 12:02
&16.91 kB14-01-04 15:19
&24.87 kB09-09-04 12:10
&51.91 kB16-09-04 17:18
&20.50 kB16-09-04 22:35
&4.32 kB13-05-03 12:58
&18.97 kB26-07-04 09:39
&139.68 kB16-09-04 17:20
&16.94 kB16-09-04 15:40
&110.54 kB16-09-04 17:20
&9.35 kB14-01-04 15:19
&2.99 kB12-08-03 18:03
&1.35 kB21-07-03 18:07
&953.00 B12-08-03 18:03
&1.54 kB13-06-03 18:49
&13.25 kB08-09-04 16:55
&15.19 kB03-08-04 13:49
&7.96 kB03-08-04 13:49
&11.04 kB23-08-04 16:09
&47.59 kB28-07-04 13:57
&32.44 kB01-12-03 12:38
&648.00 B16-09-04 17:18
&1.27 kB13-05-03 12:58
&677.00 B13-05-03 12:58
&2.57 kB10-06-03 17:13
&598.00 B13-06-03 18:49
&6.06 kB06-07-04 16:41
&45.19 kB01-12-03 12:38
&4.11 kB16-09-04 22:38
&3.55 kB06-07-04 16:41
&3.84 kB13-05-03 12:58
&1.63 kB13-05-03 12:58
&1.63 kB13-06-03 18:49
&436.00 B13-05-03 12:58
&680.00 B13-05-03 12:58
&22.83 kB03-08-04 13:49
&499.00 B23-07-04 19:56
&646.00 B13-05-03 12:58
&677.00 B13-05-03 12:58
&431.00 B23-07-04 19:56
&2.11 kB13-05-03 12:58
&984.00 B11-06-03 20:08
&7.71 kB03-08-04 13:49
&1.25 kB14-01-04 15:19
&712.00 B13-05-03 12:58
&1.67 kB23-08-04 16:07
&670.00 B16-09-04 22:35
&1.07 kB28-07-04 13:57
&9.44 kB10-09-04 10:09
&1.94 kB06-07-04 16:41
&2.87 kB13-05-03 12:58
&2.27 kB13-05-03 12:58
&1.60 kB15-10-04 19:27
&9.45 kB17-09-04 00:18
&9.84 kB15-10-04 19:27
&44.93 kB16-11-04 22:44
&53.68 kB30-10-04 06:51
&3.31 kB15-10-04 19:27
&13.53 kB04-12-04 00:11
&18.52 kB15-10-04 19:27
&28.16 kB30-10-04 06:51
&6.04 kB06-07-04 23:41
&3.68 kB15-10-04 19:27
&16.89 kB15-10-04 19:27
&24.92 kB15-10-04 19:27
&56.68 kB04-12-04 00:11
&26.34 kB17-07-05 16:40
&4.32 kB13-05-03 19:58
&20.10 kB18-11-04 03:12
&175.24 kB04-12-04 00:11
&17.21 kB30-10-04 06:51
&110.95 kB04-12-04 00:11
&11.68 kB15-10-04 19:27
&2.97 kB15-10-04 19:27
&1.35 kB22-07-03 01:07
&953.00 B13-08-03 01:03
&1.54 kB15-10-04 19:27
&20.15 kB19-11-04 00:38
&26.69 kB04-12-04 00:11
&7.96 kB15-10-04 19:27
&11.04 kB23-08-04 23:09
&47.86 kB15-10-04 19:27
&36.35 kB15-10-04 22:20
&35.22 kB30-10-04 06:51
&Entries1.34 kB22-12-04 11:53
&Entries.Extra511.00 B22-12-04 11:53
&Repository21.00 B22-12-04 11:53
&Root53.00 B22-12-04 11:53
&648.00 B17-09-04 00:18
&1.27 kB13-05-03 19:58
&848.00 B16-11-04 22:44
&2.70 kB15-10-04 19:27
&598.00 B14-06-03 01:49
&6.08 kB15-10-04 23:19
&49.96 kB15-10-04 19:27
&4.76 kB30-10-04 06:51
&3.55 kB06-07-04 23:41
&3.86 kB30-10-04 06:51
&1.63 kB15-10-04 19:27
&1.66 kB15-10-04 19:27
&436.00 B13-05-03 19:58
&680.00 B13-05-03 19:58
&25.19 kB18-11-04 21:02
&495.00 B15-10-04 19:27
&591.00 B15-10-04 19:27
&677.00 B13-05-03 19:58
&431.00 B24-07-04 02:56
&9.02 kB16-11-04 22:44
&984.00 B12-06-03 03:08
&7.83 kB04-12-04 00:11
&1.47 kB15-10-04 19:27
&712.00 B13-05-03 19:58
&1.67 kB23-08-04 23:07
&748.00 B19-10-04 23:38
&1.35 kB15-10-04 22:20
&10.69 kB04-12-04 00:11
&1.94 kB06-07-04 23:41
&2.87 kB15-10-04 19:27
&1.16 kB19-10-04 23:38
&2.34 kB15-10-04 22:20
&Entries1.38 kB22-12-04 11:53
&Entries.Extra537.00 B22-12-04 11:53
&Repository21.00 B22-12-04 11:53
&Root53.00 B22-12-04 11:53
&Entries64.00 B22-12-04 11:53
&Entries.Extra37.00 B22-12-04 11:53
&Repository17.00 B22-12-04 11:53
&Root53.00 B22-12-04 11:53
&1.31 kB11-07-04 14:16
&397.00 B11-07-04 14:16
&8.53 kB11-07-04 14:16
&780.00 B11-07-04 14:16
&1.59 kB11-07-04 14:16
&5.80 kB11-07-04 14:16
&3.19 kB11-07-04 14:16
&1.38 kB11-07-04 14:16
&6.10 kB11-07-04 14:16
&1.10 kB11-07-04 14:16
&5.69 kB11-07-04 14:16
&8.84 kB11-07-04 14:16
&403.00 B11-07-04 14:16
&11.99 kB11-07-04 14:16
&391.00 B11-07-04 14:16
&15.02 kB11-07-04 14:16
&848.00 B11-07-04 14:16
&5.86 kB11-07-04 14:16
&1.33 kB11-07-04 14:16
&273.00 B11-07-04 14:16
&19.14 kB11-07-04 14:16
&1.43 kB11-07-04 14:16
&3.14 kB11-07-04 14:16
&321.00 B11-07-04 14:16
&14.57 kB11-07-04 14:16
&1.02 kB11-07-04 14:16
&17.85 kB11-07-04 14:16
&609.00 B11-07-04 14:16
&7.23 kB11-07-04 14:16
&361.00 B11-07-04 14:16
&3.39 kB11-07-04 14:16
&166.00 B11-07-04 14:16
&391.00 B11-07-04 14:16
&15.44 kB11-07-04 14:16
&3.12 kB11-07-04 14:16
&616.00 B11-07-04 14:16
&6.37 kB11-07-04 14:16
&558.00 B11-07-04 14:16
&1.09 kB11-07-04 14:16
&13.36 kB11-07-04 14:16
&11.55 kB11-07-04 14:16
&Entries109.00 B11-07-04 14:16
&Repository31.00 B11-07-04 14:16
&Root51.00 B11-07-04 14:16
&encore.dsp5.82 kB11-07-04 14:16
&encore.dsw534.00 B11-07-04 14:16
&encore.ncb105.00 kB11-07-04 14:16
&encore.opt47.50 kB20-09-04 13:32
&encore.plg8.40 kB20-09-04 13:32
&Entries95.00 B11-07-04 14:16
&Repository29.00 B11-07-04 14:16
&Root51.00 B11-07-04 14:16
&5.75 kB26-04-04 14:24
&1.16 kB08-07-04 16:36
&582.00 B08-07-04 16:52
&9.94 kB08-07-04 16:36
&2.38 kB08-07-04 17:16
&3.30 kB13-04-01 03:35
&250.00 B13-04-01 03:35
&416.00 B08-07-04 16:36
&2.58 kB08-07-04 16:52
&1.03 kB08-07-04 16:52
&2.84 kB08-07-04 16:36
&145.00 B19-01-01 06:34
&276.00 B08-07-04 16:43
&3.67 kB08-07-04 16:52
&6.75 kB08-07-04 16:43
&7.53 kB08-07-04 16:52
&469.00 B08-07-04 16:52
&1.36 kB08-07-04 16:47
&154.00 B08-07-04 16:52
&1.27 kB08-07-04 16:52
&1.32 kB08-07-04 16:52
&10.13 kB08-07-04 16:47
&5.20 kB08-07-04 16:36
&1.16 kB08-07-04 16:52
&301.00 B08-07-04 16:26
&124.00 B08-07-04 16:52
&623.00 B03-05-04 14:05
&197.00 B27-07-02 17:14
&7.65 kB08-07-04 16:36
&77.00 B08-07-04 16:52
&3.97 kB08-07-04 16:39
&442.00 B08-07-04 16:52
&7.89 kB08-07-04 16:36
&2.64 kB08-07-04 16:52
&912.00 B08-07-04 16:36
&182.00 B08-07-04 16:52
&7.38 kB08-07-04 16:36
&332.00 B08-07-04 16:52
&8.54 kB08-07-04 16:36
&8.38 kB08-07-04 17:15
&444.00 B08-07-04 16:52
&3.09 kB08-07-04 16:36
&9.15 kB08-07-04 16:43
&16.74 kB08-07-04 16:47
&965.00 B08-07-04 16:52
&815.00 B08-07-04 16:47
&172.00 B08-07-04 16:52
&13.73 kB08-07-04 17:10
&23.27 kB08-07-04 17:10
&219.00 B08-07-04 17:10
&8.96 kB08-07-04 17:15
&22.34 kB08-07-04 17:15
&84.00 B08-07-04 17:05
&1.79 kB08-07-04 17:00
&142.00 B08-07-04 17:00
&1.01 kB08-07-04 17:00
&6.01 kB08-07-04 16:59
&4.96 kB08-07-04 17:00
&2.89 kB08-07-04 17:00
&1.50 kB08-07-04 17:05
&4.18 kB08-07-04 17:05
&2.21 kB08-07-04 17:05
&10.61 kB08-07-04 17:05
&17.94 kB08-07-04 17:05
&7.17 kB08-07-04 17:05
&1.56 kB08-07-04 17:05
&1.97 kB08-07-04 17:06
&1.25 kB08-07-04 17:07
&1.55 kB08-07-04 17:07
&15.43 kB19-04-01 11:12
&DECORE.DSP18.08 kB20-04-01 08:53
&DECORE.DSW724.00 B27-07-02 17:11
&DECORE.OPT103.00 kB08-07-04 17:18
&DECORE.ncb257.00 kB08-07-04 17:18
&console.dsp7.08 kB27-07-02 17:19
&console.plg248.00 B08-07-04 17:16
&test_basic_prediction.dsp4.03 kB21-03-01 19:07
&test_basic_prediction.dsw566.00 B21-03-01 19:07
&test_basic_prediction.ncb41.00 kB08-07-04 16:25
&test_basic_prediction.opt74.00 kB08-07-04 16:25
&test_basic_prediction.plg276.00 B08-07-04 16:24
&&CVS&0.00 B20-08-07 11:34
&&Debug&0.00 B20-08-07 11:34
&&CVS&0.00 B20-08-07 11:34
&&postprocess&0.00 B20-08-07 11:34
&&TEST&0.00 B20-08-07 11:34
&&CVS&0.00 B20-08-07 11:33
&&CVS&0.00 B20-08-07 11:33
&&CVS&0.00 B20-08-07 11:33
&&CVS&0.00 B20-08-07 11:33
&&intel_mmx&0.00 B20-08-07 11:34
&&win32&0.00 B20-08-07 11:34
&&intel_mmx&0.00 B20-08-07 11:34
&&ATT_MMX&0.00 B20-08-07 11:34
&&WIN32&0.00 B20-08-07 11:34
&&Debug&0.00 B20-08-07 11:34
&&src&0.00 B20-08-07 11:33
&&inc&0.00 B20-08-07 11:33
&&src&0.00 B20-08-07 11:33
&&inc&0.00 B20-08-07 11:33
&&CVS&0.00 B20-08-07 11:33
&&src&0.00 B20-08-07 11:33
&&inc&0.00 B20-08-07 11:33
&&src&0.00 B20-08-07 11:33
&&inc&0.00 B20-08-07 11:33
&&CVS&0.00 B20-08-07 11:33
&&src&0.00 B20-08-07 11:34
&&build&0.00 B20-08-07 11:34
&&TEST&0.00 B20-08-07 11:34
&&SRC&0.00 B20-08-07 11:34
&&BUILD&0.00 B20-08-07 11:34
&&ccelp&0.00 B20-08-07 11:34
&&2&0.00 B20-08-07 11:33
&&1&0.00 B20-08-07 11:33
&&2&0.00 B20-08-07 11:33
&&1&0.00 B20-08-07 11:33
&&encore&0.00 B20-08-07 11:34
&&DECORE&0.00 B20-08-07 11:34
&&G729(LD-CELP)&0.00 B20-08-07 11:34
&&H263编码&0.00 B20-08-07 11:33
&&H263解码&0.00 B20-08-07 11:33
&&H264编码&0.00 B20-08-07 11:33
&&H264解码&0.00 B20-08-07 11:33
&&MPEG-4编码技术&0.00 B20-08-07 11:34
&&MPEG-4解码技术&0.00 B20-08-07 11:34
&&G729、h263、h264、MPEG4四种最流行的音频和视频标准的压缩和解压算法的源代码&0.00 B20-08-07 11:35
Sponsored links
21 篇源代码 13 篇源代码 9 篇源代码 6 篇源代码 6 篇源代码
276 篇源代码 173 篇源代码 48 篇源代码 42 篇源代码 36 篇源代码
登录 CodeForge
还没有CodeForge账号?
Switch to the English version?
CF仔没有找到您要的代码,请去留下您的问题吧,可能会有大神帮助你哦!
该用户暂时未开通博客
请按 Ctrl+D 键添加到收藏夹。

我要回帖

更多关于 vld2 的文章

 

随机推荐