~ubuntu-branches/ubuntu/utopic/libav/utopic

« back to all changes in this revision

Viewing changes to libavdevice/vfwcap.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-09-13 15:36:38 UTC
  • mfrom: (1.3.49 sid)
  • Revision ID: package-import@ubuntu.com-20140913153638-6rfush77baz008o9
Tags: 6:11-1
* Upload final 11 release
  - matroskadec: parse stereo mode on decoding (Closes: #757185)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <windows.h>
28
28
#include <vfw.h>
29
29
 
30
 
/* Defines for VFW missing from MinGW.
31
 
 * Remove this when MinGW incorporates them. */
32
 
#define HWND_MESSAGE                ((HWND)-3)
33
 
 
34
 
#define BI_RGB                      0
35
 
 
36
 
/* End of missing MinGW defines */
 
30
/* Some obsolete versions of MinGW32 before 4.0.0 lack this. */
 
31
#ifndef HWND_MESSAGE
 
32
#define HWND_MESSAGE ((HWND) -3)
 
33
#endif
37
34
 
38
35
struct vfw_ctx {
39
36
    const AVClass *class;