Advertisement
Guest User

Untitled

a guest
May 23rd, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.06 KB | None | 0 0
  1. diff -ru ./ffmpeg-git/configure ./ffmpeg-git-copy/configure
  2. --- ./ffmpeg-git/configure 2012-05-19 00:44:23.000000000 -0400
  3. +++ ./ffmpeg-git-copy/configure 2012-05-23 13:08:34.000000000 -0400
  4. @@ -3293,7 +3293,7 @@
  5. # w32api 3.12 had it defined wrong
  6. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  7.  
  8. -check_type "dshow.h" IBaseFilter
  9. +check_type "dshow_capture.h" IBaseFilter
  10.  
  11. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  12. { check_header dev/bktr/ioctl_meteor.h &&
  13. diff -ru ./ffmpeg-git/libavdevice/dshow.c ./ffmpeg-git-copy/libavdevice/dshow.c
  14. --- ./ffmpeg-git/libavdevice/dshow.c 2012-02-06 20:47:56.000000000 -0500
  15. +++ ./ffmpeg-git-copy/libavdevice/dshow.c 2012-05-23 13:06:30.000000000 -0400
  16. @@ -23,7 +23,7 @@
  17. #include "libavutil/opt.h"
  18. #include "libavformat/internal.h"
  19. #include "avdevice.h"
  20. -#include "dshow.h"
  21. +#include "dshow_capture.h"
  22.  
  23. struct dshow_ctx {
  24. const AVClass *class;
  25. Only in ./ffmpeg-git-copy/libavdevice: dshow_capture.h
  26. diff -ru ./ffmpeg-git/libavdevice/dshow_common.c ./ffmpeg-git-copy/libavdevice/dshow_common.c
  27. --- ./ffmpeg-git/libavdevice/dshow_common.c 2011-12-22 02:05:52.000000000 -0500
  28. +++ ./ffmpeg-git-copy/libavdevice/dshow_common.c 2012-05-23 13:08:07.000000000 -0400
  29. @@ -19,7 +19,7 @@
  30. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  31. */
  32.  
  33. -#include "dshow.h"
  34. +#include "dshow_capture.h"
  35.  
  36. long ff_copy_dshow_media_type(AM_MEDIA_TYPE *dst, const AM_MEDIA_TYPE *src)
  37. {
  38. diff -ru ./ffmpeg-git/libavdevice/dshow_enummediatypes.c ./ffmpeg-git-copy/libavdevice/dshow_enummediatypes.c
  39. --- ./ffmpeg-git/libavdevice/dshow_enummediatypes.c 2011-12-22 02:05:52.000000000 -0500
  40. +++ ./ffmpeg-git-copy/libavdevice/dshow_enummediatypes.c 2012-05-23 13:07:58.000000000 -0400
  41. @@ -19,7 +19,7 @@
  42. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  43. */
  44.  
  45. -#include "dshow.h"
  46. +#include "dshow_capture.h"
  47.  
  48. DECLARE_QUERYINTERFACE(libAVEnumMediaTypes,
  49. { {&IID_IUnknown,0}, {&IID_IEnumPins,0} })
  50. diff -ru ./ffmpeg-git/libavdevice/dshow_enumpins.c ./ffmpeg-git-copy/libavdevice/dshow_enumpins.c
  51. --- ./ffmpeg-git/libavdevice/dshow_enumpins.c 2011-12-22 02:05:52.000000000 -0500
  52. +++ ./ffmpeg-git-copy/libavdevice/dshow_enumpins.c 2012-05-23 13:07:50.000000000 -0400
  53. @@ -19,7 +19,7 @@
  54. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  55. */
  56.  
  57. -#include "dshow.h"
  58. +#include "dshow_capture.h"
  59.  
  60. DECLARE_QUERYINTERFACE(libAVEnumPins,
  61. { {&IID_IUnknown,0}, {&IID_IEnumPins,0} })
  62. diff -ru ./ffmpeg-git/libavdevice/dshow_filter.c ./ffmpeg-git-copy/libavdevice/dshow_filter.c
  63. --- ./ffmpeg-git/libavdevice/dshow_filter.c 2012-02-21 20:34:24.000000000 -0500
  64. +++ ./ffmpeg-git-copy/libavdevice/dshow_filter.c 2012-05-23 13:07:37.000000000 -0400
  65. @@ -20,7 +20,7 @@
  66. */
  67.  
  68. #define NO_DSHOW_STRSAFE
  69. -#include "dshow.h"
  70. +#include "dshow_capture.h"
  71.  
  72. DECLARE_QUERYINTERFACE(libAVFilter,
  73. { {&IID_IUnknown,0}, {&IID_IBaseFilter,0} })
  74. Only in ./ffmpeg-git/libavdevice: dshow.h
  75. diff -ru ./ffmpeg-git/libavdevice/dshow_pin.c ./ffmpeg-git-copy/libavdevice/dshow_pin.c
  76. --- ./ffmpeg-git/libavdevice/dshow_pin.c 2012-02-21 20:34:24.000000000 -0500
  77. +++ ./ffmpeg-git-copy/libavdevice/dshow_pin.c 2012-05-23 13:05:48.000000000 -0400
  78. @@ -20,7 +20,7 @@
  79. */
  80.  
  81. #define NO_DSHOW_STRSAFE
  82. -#include "dshow.h"
  83. +#include "dshow_capture.h"
  84.  
  85. #include <stddef.h>
  86. #define imemoffset offsetof(libAVPin, imemvtbl)
  87. diff -ru ./ffmpeg-git/libavdevice/Makefile ./ffmpeg-git-copy/libavdevice/Makefile
  88. --- ./ffmpeg-git/libavdevice/Makefile 2012-05-19 00:44:23.000000000 -0400
  89. +++ ./ffmpeg-git-copy/libavdevice/Makefile 2012-05-23 13:05:22.000000000 -0400
  90. @@ -38,7 +38,7 @@
  91. OBJS-$(CONFIG_LIBCDIO_INDEV) += libcdio.o
  92. OBJS-$(CONFIG_LIBDC1394_INDEV) += libdc1394.o
  93.  
  94. -SKIPHEADERS-$(CONFIG_DSHOW_INDEV) += dshow.h
  95. +SKIPHEADERS-$(CONFIG_DSHOW_INDEV) += dshow_capture.h
  96. SKIPHEADERS-$(HAVE_ALSA_ASOUNDLIB_H) += alsa-audio.h
  97. SKIPHEADERS-$(HAVE_SNDIO_H) += sndio_common.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement