代码搜索:coded
找到约 2,797 项符合「coded」的源代码
代码结果 2,797
www.eeworm.com/read/108518/15584684
c getpic.c
/* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
/*
* Disclaimer of Warranty
*
* These software programs are available to the user without any license fee or
*
www.eeworm.com/read/104466/15691654
h mpegaudio.h
/**
* @file mpegaudio.h
* mpeg audio declarations for both encoder and decoder.
*/
/* max frame size, in samples */
#define MPA_FRAME_SIZE 1152
/* max compressed frame size */
#define MPA_MAX_CO
www.eeworm.com/read/289444/8550871
c coder_sh_o1sb.c
//#define PACK_SIGNS_AND_RESIDUALS
/** helps compression 0.02 bpp, doesn't affect speed much ;
turning this off does amortize the damage for small flush_quanta **/
//#define LOG
//#define DE
www.eeworm.com/read/186394/8935079
m conv_encoder_2.m
%%采用约束长度为9、编码速率为1/2的卷积编码
function coded_bits=conv_encoder_2(inf_bits)
global ofdm_para;
codegenerator=[1 0 1 1 1 0 0 0 1;1 1 1 1 0 1 0 1 1]; %得到生成多项式
rows_num=size(codegen
www.eeworm.com/read/186394/8935087
m conv_encoder_3.m
%%采用约束长度为9、编码速率为1/3的卷积编码
function coded_bits=conv_encoder_3(inf_bits)
global ofdm_para;
codegenerator=[1 0 1 1 0 1 1 1 1;1 1 0 1 1 0 0 1 1;1 1 1 0 0 1 0 0 1]; %得到生成多项式
rows_num=si
www.eeworm.com/read/375404/9361761
c explicit_gop.c
/*!
*************************************************************************************
* \file explicit_gop.c
*
* \brief
* Code for explicit gop support and hierarchical coding.
*
www.eeworm.com/read/177943/9426730
m tx_conv_encoder.m
%
% Convolutional encoding with unipolar data
function coded_bits = tx_conv_encoder(in_bits)
global sim_consts;
ConvCodeGenPoly=[1 0 1 1 0 1 1;1 1 1 1 0 0 1 ]
number_rows = size(ConvCodeGenP
www.eeworm.com/read/177349/9458424
m tx_conv_encoder.m
%
% Convolutional encoding with unipolar data
function coded_bits = tx_conv_encoder(in_bits)
global SimulationConstants;
number_rows = size(SimulationConstants.ConvCodeGenPoly, 1);
number_
www.eeworm.com/read/175483/9545308
c mp4_picture.c
/********************************************************************************
* *
* This code has been developed by Project Mayo. This software is an *
* implementation
www.eeworm.com/read/161429/10413834
c coder_sh_o1sb.c
//#define PACK_SIGNS_AND_RESIDUALS
/** helps compression 0.02 bpp, doesn't affect speed much ;
turning this off does amortize the damage for small flush_quanta **/
//#define LOG
//#define DE