annotate dec_audio.h @ 2798:ee2cd36a81a2

Code cleanup - emms is not required when MMX block is commented out. Special notes for Michael Niedermayer: Are you still here? If you don't like for(cond;cond;cond) C-constructions and prefer asm ones: "jb 1b" then use .align 16 pseudo assembler instructions else loops rather will be not aligned on correct boundary. (16 it's for K7 for pent should be 8). Your parts have a lot such lacks.
author nick
date Sat, 10 Nov 2001 18:40:49 +0000
parents 6a74454ea121
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
1
6a74454ea121 some cleanup
arpi
parents:
diff changeset
2 // dec_audio.c:
6a74454ea121 some cleanup
arpi
parents:
diff changeset
3 extern int init_audio(sh_audio_t *sh_audio);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
4 extern int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
5 extern void resync_audio_stream(sh_audio_t *sh_audio);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
6 extern void skip_audio_frame(sh_audio_t *sh_audio);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
7