annotate libass/mputils.h @ 22697:2fe9bd97a7f6

Fix configure -march detection for athlon-xp The configure script uses SSE support to distinguish between athlon and athlon-xp, but SSE support was tested _after_ deciding the basic CPU type. Thus athlon-xp was always misdetected as athlon. Fix this by moving the CPU extensions check before the CPU type check. Patch from Andrew Savchenko, bircoph list ru.
author uau
date Sun, 18 Mar 2007 13:38:55 +0000
parents 6196ba31e97e
children 3f0d00abc073
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21026
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
1 #ifndef __ASS_MPUTILS_H__
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
2 #define __ASS_MPUTILS_H__
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
3
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
4 #include "mp_msg.h"
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
5 #include "help_mp.h"
21026
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
6 #include "libvo/font_load.h" // for blur()
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
7 #include "subreader.h" // for guess_buffer_cp
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
8 #include "libvo/sub.h" // for utf8_get_char
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
9 #include "libavutil/common.h"
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
10
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents:
diff changeset
11 #endif