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

📄 son_gc_detectreset.c

📁 C写的MPEG4音频源代码(G.723/G.729)
💻 C
字号:
/*******************************************************************This software module was originally developed byYasuhiro Toguri (Sony Corporation) in the course of development of the MPEG-2 NBC/MPEG-4 System/MPEG-4Video/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3. Thissoftware module is an implementation of a part of one or more MPEG-2NBC/MPEG-4 System/MPEG-4 Video/MPEG-4 Audio tools as specified by theMPEG-2 NBC/MPEG-4 System/MPEG-4 Video/MPEG-4 Audio standard. ISO/IECgives users of the MPEG-2 NBC/MPEG-4 System/MPEG-4 Video/MPEG-4 Audiostandards free license to this software module or modificationsthereof for use in hardware or software products claiming conformanceto the MPEG-2 NBC/MPEG-4 System/MPEG-4 Video/MPEG-4 Audiostandards. Those intending to use this software module in hardware orsoftware products are advised that this use may infringe existingpatents. The original developer of this software module and his/hercompany, the subsequent editors and their companies, and ISO/IEC haveno liability for use of this software module or modifications thereofin an implementation. Copyright is not released for non MPEG-2NBC/MPEG-4 System/MPEG-4 Video/MPEG-4 Audio conforming products.Theoriginal developer retains full right to use the code for his/her ownpurpose, assign or donate the code to a third party and to inhibitthird party from using the code for non MPEG-2 NBC/MPEG-4System/MPEG-4 Video/MPEG-4 Audio conforming products. This copyrightnotice must be included in all copies or derivative works.Copyright (C) 1996.*******************************************************************/#include <stdio.h>#include "buffersHandle.h"       /* handler, defines, enums */#include "resilienceHandle.h"    /* handler, defines, enums */#include "tf_mainHandle.h"       /* handler, defines, enums */#include	"sony_local.h"#include	<stdlib.h>#include	<math.h>void	son_gc_detect_reset(	double	*bandSigChForGCAnalysis[],	int	block_size_samples,	int	window_sequence,	int	ch,	GAINC	*g_info_curCh[]	){	int	i;    int wd;	for (i = 0; i < NBANDS; i++) {		switch(window_sequence) {		case EIGHT_SHORT_SEQUENCE:			for(wd=0;wd< SHORT_WIN_IN_LONG;wd++)				g_info_curCh[i][wd].natks = 0;			break;		case ONLY_LONG_SEQUENCE:			g_info_curCh[i][0].natks = 0;			break;		case LONG_START_SEQUENCE:			g_info_curCh[i][0].natks = 0;			break;		case LONG_STOP_SEQUENCE:			g_info_curCh[i][0].natks = 0;			break;		default:			fprintf(stderr, "detect_reset:invalid window_sequence: %d\n", window_sequence);			exit(-1);			break;		}	}}

⌨️ 快捷键说明

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