summaryrefslogtreecommitdiff
path: root/libavcodec/w32thread.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2008-03-07 19:47:44 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-03-07 19:47:44 +0000
commit5dea940937caacc3baf974b134a961601834e802 (patch)
tree8e7f82d10fd059048753ca9ed2342ecb22552574 /libavcodec/w32thread.c
parent0e32c8c65a1c42d9f6489eca2231dde17716d139 (diff)
__stdcall -> WINAPI
Windows x64 has no __stdcall. It is not yet supported, but someday it might... Originally committed as revision 12363 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/w32thread.c')
-rw-r--r--libavcodec/w32thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/w32thread.c b/libavcodec/w32thread.c
index fbc0a581e2..5758c692ab 100644
--- a/libavcodec/w32thread.c
+++ b/libavcodec/w32thread.c
@@ -36,7 +36,7 @@ typedef struct ThreadContext{
}ThreadContext;
-static unsigned __stdcall attribute_align_arg thread_func(void *v){
+static unsigned WINAPI attribute_align_arg thread_func(void *v){
ThreadContext *c= v;
for(;;){