vfwcap.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. /*
  2. * VFW capture interface
  3. * Copyright (c) 2006-2008 Ramiro Polla
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavformat/internal.h"
  22. #include "libavutil/log.h"
  23. #include "libavutil/opt.h"
  24. #include "libavutil/parseutils.h"
  25. #include <windows.h>
  26. #include <vfw.h>
  27. #include "avdevice.h"
  28. /* Defines for VFW missing from MinGW.
  29. * Remove this when MinGW incorporates them. */
  30. #define HWND_MESSAGE ((HWND)-3)
  31. /* End of missing MinGW defines */
  32. struct vfw_ctx {
  33. const AVClass *class;
  34. HWND hwnd;
  35. HANDLE mutex;
  36. HANDLE event;
  37. AVPacketList *pktl;
  38. unsigned int curbufsize;
  39. unsigned int frame_num;
  40. char *video_size; /**< A string describing video size, set by a private option. */
  41. char *framerate; /**< Set by a private option. */
  42. };
  43. static enum AVPixelFormat vfw_pixfmt(DWORD biCompression, WORD biBitCount)
  44. {
  45. switch(biCompression) {
  46. case MKTAG('U', 'Y', 'V', 'Y'):
  47. return AV_PIX_FMT_UYVY422;
  48. case MKTAG('Y', 'U', 'Y', '2'):
  49. return AV_PIX_FMT_YUYV422;
  50. case MKTAG('I', '4', '2', '0'):
  51. return AV_PIX_FMT_YUV420P;
  52. case BI_RGB:
  53. switch(biBitCount) { /* 1-8 are untested */
  54. case 1:
  55. return AV_PIX_FMT_MONOWHITE;
  56. case 4:
  57. return AV_PIX_FMT_RGB4;
  58. case 8:
  59. return AV_PIX_FMT_RGB8;
  60. case 16:
  61. return AV_PIX_FMT_RGB555;
  62. case 24:
  63. return AV_PIX_FMT_BGR24;
  64. case 32:
  65. return AV_PIX_FMT_RGB32;
  66. }
  67. }
  68. return AV_PIX_FMT_NONE;
  69. }
  70. static enum AVCodecID vfw_codecid(DWORD biCompression)
  71. {
  72. switch(biCompression) {
  73. case MKTAG('d', 'v', 's', 'd'):
  74. return AV_CODEC_ID_DVVIDEO;
  75. case MKTAG('M', 'J', 'P', 'G'):
  76. case MKTAG('m', 'j', 'p', 'g'):
  77. return AV_CODEC_ID_MJPEG;
  78. }
  79. return AV_CODEC_ID_NONE;
  80. }
  81. #define dstruct(pctx, sname, var, type) \
  82. av_log(pctx, AV_LOG_DEBUG, #var":\t%"type"\n", sname->var)
  83. static void dump_captureparms(AVFormatContext *s, CAPTUREPARMS *cparms)
  84. {
  85. av_log(s, AV_LOG_DEBUG, "CAPTUREPARMS\n");
  86. dstruct(s, cparms, dwRequestMicroSecPerFrame, "lu");
  87. dstruct(s, cparms, fMakeUserHitOKToCapture, "d");
  88. dstruct(s, cparms, wPercentDropForError, "u");
  89. dstruct(s, cparms, fYield, "d");
  90. dstruct(s, cparms, dwIndexSize, "lu");
  91. dstruct(s, cparms, wChunkGranularity, "u");
  92. dstruct(s, cparms, fUsingDOSMemory, "d");
  93. dstruct(s, cparms, wNumVideoRequested, "u");
  94. dstruct(s, cparms, fCaptureAudio, "d");
  95. dstruct(s, cparms, wNumAudioRequested, "u");
  96. dstruct(s, cparms, vKeyAbort, "u");
  97. dstruct(s, cparms, fAbortLeftMouse, "d");
  98. dstruct(s, cparms, fAbortRightMouse, "d");
  99. dstruct(s, cparms, fLimitEnabled, "d");
  100. dstruct(s, cparms, wTimeLimit, "u");
  101. dstruct(s, cparms, fMCIControl, "d");
  102. dstruct(s, cparms, fStepMCIDevice, "d");
  103. dstruct(s, cparms, dwMCIStartTime, "lu");
  104. dstruct(s, cparms, dwMCIStopTime, "lu");
  105. dstruct(s, cparms, fStepCaptureAt2x, "d");
  106. dstruct(s, cparms, wStepCaptureAverageFrames, "u");
  107. dstruct(s, cparms, dwAudioBufferSize, "lu");
  108. dstruct(s, cparms, fDisableWriteCache, "d");
  109. dstruct(s, cparms, AVStreamMaster, "u");
  110. }
  111. static void dump_videohdr(AVFormatContext *s, VIDEOHDR *vhdr)
  112. {
  113. #ifdef DEBUG
  114. av_log(s, AV_LOG_DEBUG, "VIDEOHDR\n");
  115. dstruct(s, vhdr, lpData, "p");
  116. dstruct(s, vhdr, dwBufferLength, "lu");
  117. dstruct(s, vhdr, dwBytesUsed, "lu");
  118. dstruct(s, vhdr, dwTimeCaptured, "lu");
  119. dstruct(s, vhdr, dwUser, "lu");
  120. dstruct(s, vhdr, dwFlags, "lu");
  121. dstruct(s, vhdr, dwReserved[0], "lu");
  122. dstruct(s, vhdr, dwReserved[1], "lu");
  123. dstruct(s, vhdr, dwReserved[2], "lu");
  124. dstruct(s, vhdr, dwReserved[3], "lu");
  125. #endif
  126. }
  127. static void dump_bih(AVFormatContext *s, BITMAPINFOHEADER *bih)
  128. {
  129. av_log(s, AV_LOG_DEBUG, "BITMAPINFOHEADER\n");
  130. dstruct(s, bih, biSize, "lu");
  131. dstruct(s, bih, biWidth, "ld");
  132. dstruct(s, bih, biHeight, "ld");
  133. dstruct(s, bih, biPlanes, "d");
  134. dstruct(s, bih, biBitCount, "d");
  135. dstruct(s, bih, biCompression, "lu");
  136. av_log(s, AV_LOG_DEBUG, " biCompression:\t\"%.4s\"\n",
  137. (char*) &bih->biCompression);
  138. dstruct(s, bih, biSizeImage, "lu");
  139. dstruct(s, bih, biXPelsPerMeter, "lu");
  140. dstruct(s, bih, biYPelsPerMeter, "lu");
  141. dstruct(s, bih, biClrUsed, "lu");
  142. dstruct(s, bih, biClrImportant, "lu");
  143. }
  144. static int shall_we_drop(AVFormatContext *s)
  145. {
  146. struct vfw_ctx *ctx = s->priv_data;
  147. static const uint8_t dropscore[] = {62, 75, 87, 100};
  148. const int ndropscores = FF_ARRAY_ELEMS(dropscore);
  149. unsigned int buffer_fullness = (ctx->curbufsize*100)/s->max_picture_buffer;
  150. if(dropscore[++ctx->frame_num%ndropscores] <= buffer_fullness) {
  151. av_log(s, AV_LOG_ERROR,
  152. "real-time buffer %d%% full! frame dropped!\n", buffer_fullness);
  153. return 1;
  154. }
  155. return 0;
  156. }
  157. static LRESULT CALLBACK videostream_cb(HWND hwnd, LPVIDEOHDR vdhdr)
  158. {
  159. AVFormatContext *s;
  160. struct vfw_ctx *ctx;
  161. AVPacketList **ppktl, *pktl_next;
  162. s = (AVFormatContext *) GetWindowLongPtr(hwnd, GWLP_USERDATA);
  163. ctx = s->priv_data;
  164. dump_videohdr(s, vdhdr);
  165. if(shall_we_drop(s))
  166. return FALSE;
  167. WaitForSingleObject(ctx->mutex, INFINITE);
  168. pktl_next = av_mallocz(sizeof(AVPacketList));
  169. if(!pktl_next)
  170. goto fail;
  171. if(av_new_packet(&pktl_next->pkt, vdhdr->dwBytesUsed) < 0) {
  172. av_free(pktl_next);
  173. goto fail;
  174. }
  175. pktl_next->pkt.pts = vdhdr->dwTimeCaptured;
  176. memcpy(pktl_next->pkt.data, vdhdr->lpData, vdhdr->dwBytesUsed);
  177. for(ppktl = &ctx->pktl ; *ppktl ; ppktl = &(*ppktl)->next);
  178. *ppktl = pktl_next;
  179. ctx->curbufsize += vdhdr->dwBytesUsed;
  180. SetEvent(ctx->event);
  181. ReleaseMutex(ctx->mutex);
  182. return TRUE;
  183. fail:
  184. ReleaseMutex(ctx->mutex);
  185. return FALSE;
  186. }
  187. static int vfw_read_close(AVFormatContext *s)
  188. {
  189. struct vfw_ctx *ctx = s->priv_data;
  190. AVPacketList *pktl;
  191. if(ctx->hwnd) {
  192. SendMessage(ctx->hwnd, WM_CAP_SET_CALLBACK_VIDEOSTREAM, 0, 0);
  193. SendMessage(ctx->hwnd, WM_CAP_DRIVER_DISCONNECT, 0, 0);
  194. DestroyWindow(ctx->hwnd);
  195. }
  196. if(ctx->mutex)
  197. CloseHandle(ctx->mutex);
  198. if(ctx->event)
  199. CloseHandle(ctx->event);
  200. pktl = ctx->pktl;
  201. while (pktl) {
  202. AVPacketList *next = pktl->next;
  203. av_destruct_packet(&pktl->pkt);
  204. av_free(pktl);
  205. pktl = next;
  206. }
  207. return 0;
  208. }
  209. static int vfw_read_header(AVFormatContext *s)
  210. {
  211. struct vfw_ctx *ctx = s->priv_data;
  212. AVCodecContext *codec;
  213. AVStream *st;
  214. int devnum;
  215. int bisize;
  216. BITMAPINFO *bi = NULL;
  217. CAPTUREPARMS cparms;
  218. DWORD biCompression;
  219. WORD biBitCount;
  220. int ret;
  221. AVRational framerate_q;
  222. if (!strcmp(s->filename, "list")) {
  223. for (devnum = 0; devnum <= 9; devnum++) {
  224. char driver_name[256];
  225. char driver_ver[256];
  226. ret = capGetDriverDescription(devnum,
  227. driver_name, sizeof(driver_name),
  228. driver_ver, sizeof(driver_ver));
  229. if (ret) {
  230. av_log(s, AV_LOG_INFO, "Driver %d\n", devnum);
  231. av_log(s, AV_LOG_INFO, " %s\n", driver_name);
  232. av_log(s, AV_LOG_INFO, " %s\n", driver_ver);
  233. }
  234. }
  235. return AVERROR(EIO);
  236. }
  237. ctx->hwnd = capCreateCaptureWindow(NULL, 0, 0, 0, 0, 0, HWND_MESSAGE, 0);
  238. if(!ctx->hwnd) {
  239. av_log(s, AV_LOG_ERROR, "Could not create capture window.\n");
  240. return AVERROR(EIO);
  241. }
  242. /* If atoi fails, devnum==0 and the default device is used */
  243. devnum = atoi(s->filename);
  244. ret = SendMessage(ctx->hwnd, WM_CAP_DRIVER_CONNECT, devnum, 0);
  245. if(!ret) {
  246. av_log(s, AV_LOG_ERROR, "Could not connect to device.\n");
  247. DestroyWindow(ctx->hwnd);
  248. return AVERROR(ENODEV);
  249. }
  250. SendMessage(ctx->hwnd, WM_CAP_SET_OVERLAY, 0, 0);
  251. SendMessage(ctx->hwnd, WM_CAP_SET_PREVIEW, 0, 0);
  252. ret = SendMessage(ctx->hwnd, WM_CAP_SET_CALLBACK_VIDEOSTREAM, 0,
  253. (LPARAM) videostream_cb);
  254. if(!ret) {
  255. av_log(s, AV_LOG_ERROR, "Could not set video stream callback.\n");
  256. goto fail;
  257. }
  258. SetWindowLongPtr(ctx->hwnd, GWLP_USERDATA, (LONG_PTR) s);
  259. st = avformat_new_stream(s, NULL);
  260. if(!st) {
  261. vfw_read_close(s);
  262. return AVERROR(ENOMEM);
  263. }
  264. /* Set video format */
  265. bisize = SendMessage(ctx->hwnd, WM_CAP_GET_VIDEOFORMAT, 0, 0);
  266. if(!bisize)
  267. goto fail;
  268. bi = av_malloc(bisize);
  269. if(!bi) {
  270. vfw_read_close(s);
  271. return AVERROR(ENOMEM);
  272. }
  273. ret = SendMessage(ctx->hwnd, WM_CAP_GET_VIDEOFORMAT, bisize, (LPARAM) bi);
  274. if(!ret)
  275. goto fail;
  276. dump_bih(s, &bi->bmiHeader);
  277. ret = av_parse_video_rate(&framerate_q, ctx->framerate);
  278. if (ret < 0) {
  279. av_log(s, AV_LOG_ERROR, "Could not parse framerate '%s'.\n", ctx->framerate);
  280. goto fail;
  281. }
  282. if (ctx->video_size) {
  283. ret = av_parse_video_size(&bi->bmiHeader.biWidth, &bi->bmiHeader.biHeight, ctx->video_size);
  284. if (ret < 0) {
  285. av_log(s, AV_LOG_ERROR, "Couldn't parse video size.\n");
  286. goto fail;
  287. }
  288. }
  289. if (0) {
  290. /* For testing yet unsupported compressions
  291. * Copy these values from user-supplied verbose information */
  292. bi->bmiHeader.biWidth = 320;
  293. bi->bmiHeader.biHeight = 240;
  294. bi->bmiHeader.biPlanes = 1;
  295. bi->bmiHeader.biBitCount = 12;
  296. bi->bmiHeader.biCompression = MKTAG('I','4','2','0');
  297. bi->bmiHeader.biSizeImage = 115200;
  298. dump_bih(s, &bi->bmiHeader);
  299. }
  300. ret = SendMessage(ctx->hwnd, WM_CAP_SET_VIDEOFORMAT, bisize, (LPARAM) bi);
  301. if(!ret) {
  302. av_log(s, AV_LOG_ERROR, "Could not set Video Format.\n");
  303. goto fail;
  304. }
  305. biCompression = bi->bmiHeader.biCompression;
  306. biBitCount = bi->bmiHeader.biBitCount;
  307. /* Set sequence setup */
  308. ret = SendMessage(ctx->hwnd, WM_CAP_GET_SEQUENCE_SETUP, sizeof(cparms),
  309. (LPARAM) &cparms);
  310. if(!ret)
  311. goto fail;
  312. dump_captureparms(s, &cparms);
  313. cparms.fYield = 1; // Spawn a background thread
  314. cparms.dwRequestMicroSecPerFrame =
  315. (framerate_q.den*1000000) / framerate_q.num;
  316. cparms.fAbortLeftMouse = 0;
  317. cparms.fAbortRightMouse = 0;
  318. cparms.fCaptureAudio = 0;
  319. cparms.vKeyAbort = 0;
  320. ret = SendMessage(ctx->hwnd, WM_CAP_SET_SEQUENCE_SETUP, sizeof(cparms),
  321. (LPARAM) &cparms);
  322. if(!ret)
  323. goto fail;
  324. codec = st->codec;
  325. codec->time_base = av_inv_q(framerate_q);
  326. codec->codec_type = AVMEDIA_TYPE_VIDEO;
  327. codec->width = bi->bmiHeader.biWidth;
  328. codec->height = bi->bmiHeader.biHeight;
  329. codec->pix_fmt = vfw_pixfmt(biCompression, biBitCount);
  330. if(codec->pix_fmt == AV_PIX_FMT_NONE) {
  331. codec->codec_id = vfw_codecid(biCompression);
  332. if(codec->codec_id == AV_CODEC_ID_NONE) {
  333. av_log(s, AV_LOG_ERROR, "Unknown compression type. "
  334. "Please report verbose (-v 9) debug information.\n");
  335. vfw_read_close(s);
  336. return AVERROR_PATCHWELCOME;
  337. }
  338. codec->bits_per_coded_sample = biBitCount;
  339. } else {
  340. codec->codec_id = AV_CODEC_ID_RAWVIDEO;
  341. if(biCompression == BI_RGB) {
  342. codec->bits_per_coded_sample = biBitCount;
  343. codec->extradata = av_malloc(9 + FF_INPUT_BUFFER_PADDING_SIZE);
  344. if (codec->extradata) {
  345. codec->extradata_size = 9;
  346. memcpy(codec->extradata, "BottomUp", 9);
  347. }
  348. }
  349. }
  350. av_freep(&bi);
  351. avpriv_set_pts_info(st, 32, 1, 1000);
  352. ctx->mutex = CreateMutex(NULL, 0, NULL);
  353. if(!ctx->mutex) {
  354. av_log(s, AV_LOG_ERROR, "Could not create Mutex.\n" );
  355. goto fail;
  356. }
  357. ctx->event = CreateEvent(NULL, 1, 0, NULL);
  358. if(!ctx->event) {
  359. av_log(s, AV_LOG_ERROR, "Could not create Event.\n" );
  360. goto fail;
  361. }
  362. ret = SendMessage(ctx->hwnd, WM_CAP_SEQUENCE_NOFILE, 0, 0);
  363. if(!ret) {
  364. av_log(s, AV_LOG_ERROR, "Could not start capture sequence.\n" );
  365. goto fail;
  366. }
  367. return 0;
  368. fail:
  369. av_freep(&bi);
  370. vfw_read_close(s);
  371. return AVERROR(EIO);
  372. }
  373. static int vfw_read_packet(AVFormatContext *s, AVPacket *pkt)
  374. {
  375. struct vfw_ctx *ctx = s->priv_data;
  376. AVPacketList *pktl = NULL;
  377. while(!pktl) {
  378. WaitForSingleObject(ctx->mutex, INFINITE);
  379. pktl = ctx->pktl;
  380. if(ctx->pktl) {
  381. *pkt = ctx->pktl->pkt;
  382. ctx->pktl = ctx->pktl->next;
  383. av_free(pktl);
  384. }
  385. ResetEvent(ctx->event);
  386. ReleaseMutex(ctx->mutex);
  387. if(!pktl) {
  388. if(s->flags & AVFMT_FLAG_NONBLOCK) {
  389. return AVERROR(EAGAIN);
  390. } else {
  391. WaitForSingleObject(ctx->event, INFINITE);
  392. }
  393. }
  394. }
  395. ctx->curbufsize -= pkt->size;
  396. return pkt->size;
  397. }
  398. #define OFFSET(x) offsetof(struct vfw_ctx, x)
  399. #define DEC AV_OPT_FLAG_DECODING_PARAM
  400. static const AVOption options[] = {
  401. { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
  402. { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "ntsc"}, 0, 0, DEC },
  403. { NULL },
  404. };
  405. static const AVClass vfw_class = {
  406. .class_name = "VFW indev",
  407. .item_name = av_default_item_name,
  408. .option = options,
  409. .version = LIBAVUTIL_VERSION_INT,
  410. };
  411. AVInputFormat ff_vfwcap_demuxer = {
  412. .name = "vfwcap",
  413. .long_name = NULL_IF_CONFIG_SMALL("VfW video capture"),
  414. .priv_data_size = sizeof(struct vfw_ctx),
  415. .read_header = vfw_read_header,
  416. .read_packet = vfw_read_packet,
  417. .read_close = vfw_read_close,
  418. .flags = AVFMT_NOFILE,
  419. .priv_class = &vfw_class,
  420. };