diff options
author | Don Moir <donmoir@comcast.net> | 2014-03-08 13:46:05 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-03-08 13:46:05 +0100 |
commit | 24e2a82f75abbe977b7ddab52a90ce4d3e57a9f8 (patch) | |
tree | 08259a512c9190bdf6fdb06454ff2d225a7aa75d | |
parent | 6208bb965d30027730418e466dc56601e50a42a0 (diff) | |
download | ffmpeg-24e2a82f75abbe977b7ddab52a90ce4d3e57a9f8.tar.gz |
Make 32bit RGB dshow input opaque.
-rw-r--r-- | libavdevice/dshow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index 1d500bdb3a..96ca813a47 100644 --- a/libavdevice/dshow.c +++ b/libavdevice/dshow.c @@ -89,7 +89,7 @@ static enum AVPixelFormat dshow_pixfmt(DWORD biCompression, WORD biBitCount) case 24: return AV_PIX_FMT_BGR24; case 32: - return AV_PIX_FMT_RGB32; + return AV_PIX_FMT_0RGB32; } } return avpriv_find_pix_fmt(ff_raw_pix_fmt_tags, biCompression); // all others |