comparison mpegaudio.h @ 11939:ef338bd70180 libavcodec

SSE-optimized MP3 floating point windowing functions
author vitor
date Thu, 24 Jun 2010 07:44:50 +0000
parents 0e777af9160a
children 3f3d08bb5cf8
comparison
equal deleted inserted replaced
11938:a5c32cb046eb 11939:ef338bd70180
181 MPA_INT *synth_buf_ptr, int *synth_buf_offset, 181 MPA_INT *synth_buf_ptr, int *synth_buf_offset,
182 MPA_INT *window, int *dither_state, 182 MPA_INT *window, int *dither_state,
183 OUT_INT *samples, int incr, 183 OUT_INT *samples, int incr,
184 INTFLOAT sb_samples[SBLIMIT]); 184 INTFLOAT sb_samples[SBLIMIT]);
185 185
186 void ff_mpegaudiodec_init_mmx(MPADecodeContext *s);
187
186 /* fast header check for resync */ 188 /* fast header check for resync */
187 static inline int ff_mpa_check_header(uint32_t header){ 189 static inline int ff_mpa_check_header(uint32_t header){
188 /* header */ 190 /* header */
189 if ((header & 0xffe00000) != 0xffe00000) 191 if ((header & 0xffe00000) != 0xffe00000)
190 return -1; 192 return -1;