comparison adpcm.c @ 6679:034a316ecae3 libavcodec

remove no more needed field
author bcoudurier
date Fri, 25 Apr 2008 15:11:39 +0000
parents 92a91e7e7321
children f96c7be83736
comparison
equal deleted inserted replaced
6678:92a91e7e7321 6679:034a316ecae3
146 int coeff2; 146 int coeff2;
147 int idelta; 147 int idelta;
148 } ADPCMChannelStatus; 148 } ADPCMChannelStatus;
149 149
150 typedef struct ADPCMContext { 150 typedef struct ADPCMContext {
151 int channel; /* for stereo MOVs, decode left, then decode right, then tell it's decoded */
152 ADPCMChannelStatus status[6]; 151 ADPCMChannelStatus status[6];
153 } ADPCMContext; 152 } ADPCMContext;
154 153
155 /* XXX: implement encoding */ 154 /* XXX: implement encoding */
156 155