Advertisement
Guest User

Reaper

a guest
Nov 9th, 2010
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. Index: libmpcodecs/vd.c
  2. ===================================================================
  3. --- libmpcodecs/vd.c (revision 32493)
  4. +++ libmpcodecs/vd.c (working copy)
  5. @@ -40,6 +40,7 @@
  6. extern const vd_functions_t mpcodecs_vd_ffmpeg;
  7. extern const vd_functions_t mpcodecs_vd_theora;
  8. extern const vd_functions_t mpcodecs_vd_dshow;
  9. +extern const vd_functions_t mpcodecs_vd_dshowserver;
  10. extern const vd_functions_t mpcodecs_vd_dmo;
  11. extern const vd_functions_t mpcodecs_vd_vfw;
  12. extern const vd_functions_t mpcodecs_vd_vfwex;
  13. @@ -71,6 +72,7 @@
  14. #ifdef CONFIG_OGGTHEORA
  15. &mpcodecs_vd_theora,
  16. #endif
  17. + &mpcodecs_vd_dshowserver,
  18. #ifdef CONFIG_WIN32DLL
  19. &mpcodecs_vd_dshow,
  20. &mpcodecs_vd_dmo,
  21. Index: Makefile
  22. ===================================================================
  23. --- Makefile (revision 32493)
  24. +++ Makefile (working copy)
  25. @@ -20,6 +20,7 @@
  26. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  27.  
  28. include config.mak
  29. +EXTRALIBS += -lrt
  30.  
  31. ###### variable declarations #######
  32.  
  33. @@ -515,6 +516,7 @@
  34. stream/stream_mf.c \
  35. stream/stream_null.c \
  36. stream/url.c \
  37. + libmpcodecs/vd_dshowserver.c \
  38. sub/eosd.c \
  39. sub/find_sub.c \
  40. sub/osd.c \
  41. @@ -905,6 +907,8 @@
  42. libdvdread4/%: CFLAGS := -Ilibdvdread4 -D_GNU_SOURCE $(CFLAGS_LIBDVDCSS_DVDREAD) $(CFLAGS)
  43. libfaad2/%: CFLAGS := -Ilibfaad2 -DHAVE_CONFIG_H $(CFLAGS_FAAD_FIXED) $(CFLAGS)
  44.  
  45. +libmpcodecs/%: CFLAGS := $(CFLAGS) -g -O0
  46. +
  47. loader/%: CFLAGS += -fno-omit-frame-pointer $(CFLAGS_NO_OMIT_LEAF_FRAME_POINTER)
  48. #loader/%: CFLAGS += -Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT
  49. loader/win32%: CFLAGS += $(CFLAGS_STACKREALIGN)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement