# HG changeset patch # User rtognimp # Date 1116113489 0 # Node ID 40adf41c9b29e0716d072707879d8668ab98309c # Parent c1a6002fb14030c0ce5d666bb215096ea9346337 FRAPS decoder (FPS1) with binary dll Patch by Gianluigi Tiesi diff -r c1a6002fb140 -r 40adf41c9b29 etc/codecs.conf --- a/etc/codecs.conf Sat May 14 21:35:35 2005 +0000 +++ b/etc/codecs.conf Sat May 14 23:31:29 2005 +0000 @@ -1724,6 +1724,16 @@ dll "tsccvid.dll" out BGR32,BGR24,BGR15,BGR8 query,flip +; Fraps - Realtime Video Capture - http://www.fraps.com/ +videocodec fraps + info "FRAPS: Realtime Video Capture" + comment "Requires a processor with SSE???" + status working + fourcc FPS1,fps1 + driver vfw + dll "frapsvid.dll" + out BGR32 flip + ; raw formats: (now RGB formats are autodetected) ; these raw codecs are used mostly by TV input diff -r c1a6002fb140 -r 40adf41c9b29 loader/win32.c --- a/loader/win32.c Sat May 14 21:35:35 2005 +0000 +++ b/loader/win32.c Sat May 14 23:31:29 2005 +0000 @@ -4951,6 +4951,9 @@ FF(printf,-1) FF(getenv,-1) FF(floor,-1) +/* needed by frapsvid.dll */ + {"strstr",-1,(char *)&strstr}, + {"qsort",-1,(void *)&qsort}, #ifdef MPLAYER FF(_EH_prolog,-1) #endif