annotate libass/mputils.h @ 24576:6704a924d4aa

According to MSDN a thread must call CoUninitialize once for each successful call it has made to CoInitialize or CoInitializeEx, including any call that returns S_FALSE. Only the CoUninitialize call corresponding to the CoInitialize or CoInitializeEx call that initialized the library can close it. patch by Gianluigi Tiesi, mplayer netfarm it
author diego
date Sun, 23 Sep 2007 20:37:33 +0000
parents 3f0d00abc073
children 3baf6a2283da
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23689
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 21066
diff changeset
1 #ifndef ASS_MPUTILS_H
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 21066
diff changeset
2 #define ASS_MPUTILS_H
21026
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