decklink_dec.cpp 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339
  1. /*
  2. * Blackmagic DeckLink input
  3. * Copyright (c) 2013-2014 Luca Barbato, Deti Fliegl
  4. * Copyright (c) 2014 Rafaël Carré
  5. * Copyright (c) 2017 Akamai Technologies, Inc.
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include <atomic>
  24. #include <vector>
  25. using std::atomic;
  26. /* Include internal.h first to avoid conflict between winsock.h (used by
  27. * DeckLink headers) and winsock2.h (used by libavformat) in MSVC++ builds */
  28. extern "C" {
  29. #include "libavformat/internal.h"
  30. }
  31. #include <DeckLinkAPI.h>
  32. extern "C" {
  33. #include "config.h"
  34. #include "libavcodec/packet_internal.h"
  35. #include "libavformat/avformat.h"
  36. #include "libavutil/avassert.h"
  37. #include "libavutil/avutil.h"
  38. #include "libavutil/common.h"
  39. #include "libavutil/internal.h"
  40. #include "libavutil/imgutils.h"
  41. #include "libavutil/intreadwrite.h"
  42. #include "libavutil/time.h"
  43. #include "libavutil/timecode.h"
  44. #include "libavutil/mathematics.h"
  45. #include "libavutil/reverse.h"
  46. #include "avdevice.h"
  47. #if CONFIG_LIBZVBI
  48. #include <libzvbi.h>
  49. #endif
  50. }
  51. #include "decklink_common.h"
  52. #include "decklink_dec.h"
  53. #define MAX_WIDTH_VANC 1920
  54. const BMDDisplayMode AUTODETECT_DEFAULT_MODE = bmdModeNTSC;
  55. typedef struct VANCLineNumber {
  56. BMDDisplayMode mode;
  57. int vanc_start;
  58. int field0_vanc_end;
  59. int field1_vanc_start;
  60. int vanc_end;
  61. } VANCLineNumber;
  62. /* These VANC line numbers need not be very accurate. In any case
  63. * GetBufferForVerticalBlankingLine() will return an error when invalid
  64. * ancillary line number was requested. We just need to make sure that the
  65. * entire VANC region is covered, while making sure we don't decode VANC of
  66. * another source during switching*/
  67. static VANCLineNumber vanc_line_numbers[] = {
  68. /* SD Modes */
  69. {bmdModeNTSC, 11, 19, 274, 282},
  70. {bmdModeNTSC2398, 11, 19, 274, 282},
  71. {bmdModePAL, 7, 22, 320, 335},
  72. {bmdModeNTSCp, 11, -1, -1, 39},
  73. {bmdModePALp, 7, -1, -1, 45},
  74. /* HD 1080 Modes */
  75. {bmdModeHD1080p2398, 8, -1, -1, 42},
  76. {bmdModeHD1080p24, 8, -1, -1, 42},
  77. {bmdModeHD1080p25, 8, -1, -1, 42},
  78. {bmdModeHD1080p2997, 8, -1, -1, 42},
  79. {bmdModeHD1080p30, 8, -1, -1, 42},
  80. {bmdModeHD1080i50, 8, 20, 570, 585},
  81. {bmdModeHD1080i5994, 8, 20, 570, 585},
  82. {bmdModeHD1080i6000, 8, 20, 570, 585},
  83. {bmdModeHD1080p50, 8, -1, -1, 42},
  84. {bmdModeHD1080p5994, 8, -1, -1, 42},
  85. {bmdModeHD1080p6000, 8, -1, -1, 42},
  86. /* HD 720 Modes */
  87. {bmdModeHD720p50, 8, -1, -1, 26},
  88. {bmdModeHD720p5994, 8, -1, -1, 26},
  89. {bmdModeHD720p60, 8, -1, -1, 26},
  90. /* For all other modes, for which we don't support VANC */
  91. {bmdModeUnknown, 0, -1, -1, -1}
  92. };
  93. class decklink_allocator : public IDeckLinkMemoryAllocator
  94. {
  95. public:
  96. decklink_allocator(): _refs(1) { }
  97. virtual ~decklink_allocator() { }
  98. // IDeckLinkMemoryAllocator methods
  99. virtual HRESULT STDMETHODCALLTYPE AllocateBuffer(unsigned int bufferSize, void* *allocatedBuffer)
  100. {
  101. void *buf = av_malloc(bufferSize + AV_INPUT_BUFFER_PADDING_SIZE);
  102. if (!buf)
  103. return E_OUTOFMEMORY;
  104. *allocatedBuffer = buf;
  105. return S_OK;
  106. }
  107. virtual HRESULT STDMETHODCALLTYPE ReleaseBuffer(void* buffer)
  108. {
  109. av_free(buffer);
  110. return S_OK;
  111. }
  112. virtual HRESULT STDMETHODCALLTYPE Commit() { return S_OK; }
  113. virtual HRESULT STDMETHODCALLTYPE Decommit() { return S_OK; }
  114. // IUnknown methods
  115. virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
  116. virtual ULONG STDMETHODCALLTYPE AddRef(void) { return ++_refs; }
  117. virtual ULONG STDMETHODCALLTYPE Release(void)
  118. {
  119. int ret = --_refs;
  120. if (!ret)
  121. delete this;
  122. return ret;
  123. }
  124. private:
  125. std::atomic<int> _refs;
  126. };
  127. extern "C" {
  128. static void decklink_object_free(void *opaque, uint8_t *data)
  129. {
  130. IUnknown *obj = (class IUnknown *)opaque;
  131. obj->Release();
  132. }
  133. }
  134. static int get_vanc_line_idx(BMDDisplayMode mode)
  135. {
  136. unsigned int i;
  137. for (i = 0; i < FF_ARRAY_ELEMS(vanc_line_numbers); i++) {
  138. if (mode == vanc_line_numbers[i].mode)
  139. return i;
  140. }
  141. /* Return the VANC idx for Unknown mode */
  142. return i - 1;
  143. }
  144. static inline void clear_parity_bits(uint16_t *buf, int len) {
  145. int i;
  146. for (i = 0; i < len; i++)
  147. buf[i] &= 0xff;
  148. }
  149. static int check_vanc_parity_checksum(uint16_t *buf, int len, uint16_t checksum) {
  150. int i;
  151. uint16_t vanc_sum = 0;
  152. for (i = 3; i < len - 1; i++) {
  153. uint16_t v = buf[i];
  154. int np = v >> 8;
  155. int p = av_parity(v & 0xff);
  156. if ((!!p ^ !!(v & 0x100)) || (np != 1 && np != 2)) {
  157. // Parity check failed
  158. return -1;
  159. }
  160. vanc_sum += v;
  161. }
  162. vanc_sum &= 0x1ff;
  163. vanc_sum |= ((~vanc_sum & 0x100) << 1);
  164. if (checksum != vanc_sum) {
  165. // Checksum verification failed
  166. return -1;
  167. }
  168. return 0;
  169. }
  170. /* The 10-bit VANC data is packed in V210, we only need the luma component. */
  171. static void extract_luma_from_v210(uint16_t *dst, const uint8_t *src, int width)
  172. {
  173. int i;
  174. for (i = 0; i < width / 3; i++) {
  175. *dst++ = (src[1] >> 2) + ((src[2] & 15) << 6);
  176. *dst++ = src[4] + ((src[5] & 3) << 8);
  177. *dst++ = (src[6] >> 4) + ((src[7] & 63) << 4);
  178. src += 8;
  179. }
  180. }
  181. static void unpack_v210(uint16_t *dst, const uint8_t *src, int width)
  182. {
  183. int i;
  184. for (i = 0; i < width * 2 / 3; i++) {
  185. *dst++ = src[0] + ((src[1] & 3) << 8);
  186. *dst++ = (src[1] >> 2) + ((src[2] & 15) << 6);
  187. *dst++ = (src[2] >> 4) + ((src[3] & 63) << 4);
  188. src += 4;
  189. }
  190. }
  191. static uint8_t calc_parity_and_line_offset(int line)
  192. {
  193. uint8_t ret = (line < 313) << 5;
  194. if (line >= 7 && line <= 22)
  195. ret += line;
  196. if (line >= 320 && line <= 335)
  197. ret += (line - 313);
  198. return ret;
  199. }
  200. static void fill_data_unit_head(int line, uint8_t *tgt)
  201. {
  202. tgt[0] = 0x02; // data_unit_id
  203. tgt[1] = 0x2c; // data_unit_length
  204. tgt[2] = calc_parity_and_line_offset(line); // field_parity, line_offset
  205. tgt[3] = 0xe4; // framing code
  206. }
  207. #if CONFIG_LIBZVBI
  208. static uint8_t* teletext_data_unit_from_vbi_data(int line, uint8_t *src, uint8_t *tgt, vbi_pixfmt fmt)
  209. {
  210. vbi_bit_slicer slicer;
  211. vbi_bit_slicer_init(&slicer, 720, 13500000, 6937500, 6937500, 0x00aaaae4, 0xffff, 18, 6, 42 * 8, VBI_MODULATION_NRZ_MSB, fmt);
  212. if (vbi_bit_slice(&slicer, src, tgt + 4) == FALSE)
  213. return tgt;
  214. fill_data_unit_head(line, tgt);
  215. return tgt + 46;
  216. }
  217. static uint8_t* teletext_data_unit_from_vbi_data_10bit(int line, uint8_t *src, uint8_t *tgt)
  218. {
  219. uint8_t y[720];
  220. uint8_t *py = y;
  221. uint8_t *pend = y + 720;
  222. /* The 10-bit VBI data is packed in V210, but libzvbi only supports 8-bit,
  223. * so we extract the 8 MSBs of the luma component, that is enough for
  224. * teletext bit slicing. */
  225. while (py < pend) {
  226. *py++ = (src[1] >> 4) + ((src[2] & 15) << 4);
  227. *py++ = (src[4] >> 2) + ((src[5] & 3 ) << 6);
  228. *py++ = (src[6] >> 6) + ((src[7] & 63) << 2);
  229. src += 8;
  230. }
  231. return teletext_data_unit_from_vbi_data(line, y, tgt, VBI_PIXFMT_YUV420);
  232. }
  233. #endif
  234. static uint8_t* teletext_data_unit_from_op47_vbi_packet(int line, uint16_t *py, uint8_t *tgt)
  235. {
  236. int i;
  237. if (py[0] != 0x255 || py[1] != 0x255 || py[2] != 0x227)
  238. return tgt;
  239. fill_data_unit_head(line, tgt);
  240. py += 3;
  241. tgt += 4;
  242. for (i = 0; i < 42; i++)
  243. *tgt++ = ff_reverse[py[i] & 255];
  244. return tgt;
  245. }
  246. static int linemask_matches(int line, int64_t mask)
  247. {
  248. int shift = -1;
  249. if (line >= 6 && line <= 22)
  250. shift = line - 6;
  251. if (line >= 318 && line <= 335)
  252. shift = line - 318 + 17;
  253. return shift >= 0 && ((1ULL << shift) & mask);
  254. }
  255. static uint8_t* teletext_data_unit_from_op47_data(uint16_t *py, uint16_t *pend, uint8_t *tgt, int64_t wanted_lines)
  256. {
  257. if (py < pend - 9) {
  258. if (py[0] == 0x151 && py[1] == 0x115 && py[3] == 0x102) { // identifier, identifier, format code for WST teletext
  259. uint16_t *descriptors = py + 4;
  260. int i;
  261. py += 9;
  262. for (i = 0; i < 5 && py < pend - 45; i++, py += 45) {
  263. int line = (descriptors[i] & 31) + (!(descriptors[i] & 128)) * 313;
  264. if (line && linemask_matches(line, wanted_lines))
  265. tgt = teletext_data_unit_from_op47_vbi_packet(line, py, tgt);
  266. }
  267. }
  268. }
  269. return tgt;
  270. }
  271. static uint8_t* teletext_data_unit_from_ancillary_packet(uint16_t *py, uint16_t *pend, uint8_t *tgt, int64_t wanted_lines, int allow_multipacket)
  272. {
  273. uint16_t did = py[0]; // data id
  274. uint16_t sdid = py[1]; // secondary data id
  275. uint16_t dc = py[2] & 255; // data count
  276. py += 3;
  277. pend = FFMIN(pend, py + dc);
  278. if (did == 0x143 && sdid == 0x102) { // subtitle distribution packet
  279. tgt = teletext_data_unit_from_op47_data(py, pend, tgt, wanted_lines);
  280. } else if (allow_multipacket && did == 0x143 && sdid == 0x203) { // VANC multipacket
  281. py += 2; // priority, line/field
  282. while (py < pend - 3) {
  283. tgt = teletext_data_unit_from_ancillary_packet(py, pend, tgt, wanted_lines, 0);
  284. py += 4 + (py[2] & 255); // ndid, nsdid, ndc, line/field
  285. }
  286. }
  287. return tgt;
  288. }
  289. static uint8_t *vanc_to_cc(AVFormatContext *avctx, uint16_t *buf, size_t words,
  290. unsigned &cc_count)
  291. {
  292. size_t i, len = (buf[5] & 0xff) + 6 + 1;
  293. uint8_t cdp_sum, rate;
  294. uint16_t hdr, ftr;
  295. uint8_t *cc;
  296. uint16_t *cdp = &buf[6]; // CDP follows
  297. if (cdp[0] != 0x96 || cdp[1] != 0x69) {
  298. av_log(avctx, AV_LOG_WARNING, "Invalid CDP header 0x%.2x 0x%.2x\n", cdp[0], cdp[1]);
  299. return NULL;
  300. }
  301. len -= 7; // remove VANC header and checksum
  302. if (cdp[2] != len) {
  303. av_log(avctx, AV_LOG_WARNING, "CDP len %d != %zu\n", cdp[2], len);
  304. return NULL;
  305. }
  306. cdp_sum = 0;
  307. for (i = 0; i < len - 1; i++)
  308. cdp_sum += cdp[i];
  309. cdp_sum = cdp_sum ? 256 - cdp_sum : 0;
  310. if (cdp[len - 1] != cdp_sum) {
  311. av_log(avctx, AV_LOG_WARNING, "CDP checksum invalid 0x%.4x != 0x%.4x\n", cdp_sum, cdp[len-1]);
  312. return NULL;
  313. }
  314. rate = cdp[3];
  315. if (!(rate & 0x0f)) {
  316. av_log(avctx, AV_LOG_WARNING, "CDP frame rate invalid (0x%.2x)\n", rate);
  317. return NULL;
  318. }
  319. rate >>= 4;
  320. if (rate > 8) {
  321. av_log(avctx, AV_LOG_WARNING, "CDP frame rate invalid (0x%.2x)\n", rate);
  322. return NULL;
  323. }
  324. if (!(cdp[4] & 0x43)) /* ccdata_present | caption_service_active | reserved */ {
  325. av_log(avctx, AV_LOG_WARNING, "CDP flags invalid (0x%.2x)\n", cdp[4]);
  326. return NULL;
  327. }
  328. hdr = (cdp[5] << 8) | cdp[6];
  329. if (cdp[7] != 0x72) /* ccdata_id */ {
  330. av_log(avctx, AV_LOG_WARNING, "Invalid ccdata_id 0x%.2x\n", cdp[7]);
  331. return NULL;
  332. }
  333. cc_count = cdp[8];
  334. if (!(cc_count & 0xe0)) {
  335. av_log(avctx, AV_LOG_WARNING, "Invalid cc_count 0x%.2x\n", cc_count);
  336. return NULL;
  337. }
  338. cc_count &= 0x1f;
  339. if ((len - 13) < cc_count * 3) {
  340. av_log(avctx, AV_LOG_WARNING, "Invalid cc_count %d (> %zu)\n", cc_count * 3, len - 13);
  341. return NULL;
  342. }
  343. if (cdp[len - 4] != 0x74) /* footer id */ {
  344. av_log(avctx, AV_LOG_WARNING, "Invalid footer id 0x%.2x\n", cdp[len-4]);
  345. return NULL;
  346. }
  347. ftr = (cdp[len - 3] << 8) | cdp[len - 2];
  348. if (ftr != hdr) {
  349. av_log(avctx, AV_LOG_WARNING, "Header 0x%.4x != Footer 0x%.4x\n", hdr, ftr);
  350. return NULL;
  351. }
  352. cc = (uint8_t *)av_malloc(cc_count * 3);
  353. if (cc == NULL) {
  354. av_log(avctx, AV_LOG_WARNING, "CC - av_malloc failed for cc_count = %d\n", cc_count);
  355. return NULL;
  356. }
  357. for (size_t i = 0; i < cc_count; i++) {
  358. cc[3*i + 0] = cdp[9 + 3*i+0] /* & 3 */;
  359. cc[3*i + 1] = cdp[9 + 3*i+1];
  360. cc[3*i + 2] = cdp[9 + 3*i+2];
  361. }
  362. cc_count *= 3;
  363. return cc;
  364. }
  365. static uint8_t *get_metadata(AVFormatContext *avctx, uint16_t *buf, size_t width,
  366. uint8_t *tgt, size_t tgt_size, AVPacket *pkt)
  367. {
  368. decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
  369. uint16_t *max_buf = buf + width;
  370. while (buf < max_buf - 6) {
  371. int len;
  372. uint16_t did = buf[3] & 0xFF; // data id
  373. uint16_t sdid = buf[4] & 0xFF; // secondary data id
  374. /* Check for VANC header */
  375. if (buf[0] != 0 || buf[1] != 0x3ff || buf[2] != 0x3ff) {
  376. return tgt;
  377. }
  378. len = (buf[5] & 0xff) + 6 + 1;
  379. if (len > max_buf - buf) {
  380. av_log(avctx, AV_LOG_WARNING, "Data Count (%d) > data left (%zu)\n",
  381. len, max_buf - buf);
  382. return tgt;
  383. }
  384. if (did == 0x43 && (sdid == 0x02 || sdid == 0x03) && cctx->teletext_lines &&
  385. width == 1920 && tgt_size >= 1920) {
  386. if (check_vanc_parity_checksum(buf, len, buf[len - 1]) < 0) {
  387. av_log(avctx, AV_LOG_WARNING, "VANC parity or checksum incorrect\n");
  388. goto skip_packet;
  389. }
  390. tgt = teletext_data_unit_from_ancillary_packet(buf + 3, buf + len, tgt, cctx->teletext_lines, 1);
  391. } else if (did == 0x61 && sdid == 0x01) {
  392. unsigned int data_len;
  393. uint8_t *data;
  394. if (check_vanc_parity_checksum(buf, len, buf[len - 1]) < 0) {
  395. av_log(avctx, AV_LOG_WARNING, "VANC parity or checksum incorrect\n");
  396. goto skip_packet;
  397. }
  398. clear_parity_bits(buf, len);
  399. data = vanc_to_cc(avctx, buf, width, data_len);
  400. if (data) {
  401. if (av_packet_add_side_data(pkt, AV_PKT_DATA_A53_CC, data, data_len) < 0)
  402. av_free(data);
  403. }
  404. } else {
  405. av_log(avctx, AV_LOG_DEBUG, "Unknown meta data DID = 0x%.2x SDID = 0x%.2x\n",
  406. did, sdid);
  407. }
  408. skip_packet:
  409. buf += len;
  410. }
  411. return tgt;
  412. }
  413. static void handle_klv(AVFormatContext *avctx, decklink_ctx *ctx, IDeckLinkVideoInputFrame *videoFrame, int64_t pts)
  414. {
  415. const uint8_t KLV_DID = 0x44;
  416. const uint8_t KLV_IN_VANC_SDID = 0x04;
  417. struct KLVPacket
  418. {
  419. uint16_t sequence_counter;
  420. std::vector<uint8_t> data;
  421. };
  422. size_t total_size = 0;
  423. std::vector<std::vector<KLVPacket>> klv_packets(256);
  424. IDeckLinkVideoFrameAncillaryPackets *packets = nullptr;
  425. if (videoFrame->QueryInterface(IID_IDeckLinkVideoFrameAncillaryPackets, (void**)&packets) != S_OK)
  426. return;
  427. IDeckLinkAncillaryPacketIterator *it = nullptr;
  428. if (packets->GetPacketIterator(&it) != S_OK) {
  429. packets->Release();
  430. return;
  431. }
  432. IDeckLinkAncillaryPacket *packet = nullptr;
  433. while (it->Next(&packet) == S_OK) {
  434. uint8_t *data = nullptr;
  435. uint32_t size = 0;
  436. if (packet->GetDID() == KLV_DID && packet->GetSDID() == KLV_IN_VANC_SDID) {
  437. av_log(avctx, AV_LOG_DEBUG, "Found KLV VANC packet on line: %d\n", packet->GetLineNumber());
  438. if (packet->GetBytes(bmdAncillaryPacketFormatUInt8, (const void**) &data, &size) == S_OK) {
  439. // MID and PSC
  440. if (size > 3) {
  441. uint8_t mid = data[0];
  442. uint16_t psc = data[1] << 8 | data[2];
  443. av_log(avctx, AV_LOG_DEBUG, "KLV with MID: %d and PSC: %d\n", mid, psc);
  444. auto& list = klv_packets[mid];
  445. uint16_t expected_psc = list.size() + 1;
  446. if (psc == expected_psc) {
  447. uint32_t data_len = size - 3;
  448. total_size += data_len;
  449. KLVPacket packet{ psc };
  450. packet.data.resize(data_len);
  451. memcpy(packet.data.data(), data + 3, data_len);
  452. list.push_back(std::move(packet));
  453. } else {
  454. av_log(avctx, AV_LOG_WARNING, "Out of order PSC: %d for MID: %d\n", psc, mid);
  455. if (!list.empty()) {
  456. for (auto& klv : list)
  457. total_size -= klv.data.size();
  458. list.clear();
  459. }
  460. }
  461. }
  462. }
  463. }
  464. packet->Release();
  465. }
  466. it->Release();
  467. packets->Release();
  468. if (total_size > 0) {
  469. std::vector<uint8_t> klv;
  470. klv.reserve(total_size);
  471. for (size_t i = 0; i < klv_packets.size(); ++i) {
  472. auto& list = klv_packets[i];
  473. if (list.empty())
  474. continue;
  475. av_log(avctx, AV_LOG_DEBUG, "Joining MID: %d\n", (int)i);
  476. for (auto& packet : list)
  477. klv.insert(klv.end(), packet.data.begin(), packet.data.end());
  478. }
  479. AVPacket klv_packet = { 0 };
  480. klv_packet.pts = pts;
  481. klv_packet.dts = pts;
  482. klv_packet.flags |= AV_PKT_FLAG_KEY;
  483. klv_packet.stream_index = ctx->klv_st->index;
  484. klv_packet.data = klv.data();
  485. klv_packet.size = klv.size();
  486. if (ff_decklink_packet_queue_put(&ctx->queue, &klv_packet) < 0) {
  487. ++ctx->dropped;
  488. }
  489. }
  490. }
  491. class decklink_input_callback : public IDeckLinkInputCallback
  492. {
  493. public:
  494. explicit decklink_input_callback(AVFormatContext *_avctx);
  495. ~decklink_input_callback();
  496. virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
  497. virtual ULONG STDMETHODCALLTYPE AddRef(void);
  498. virtual ULONG STDMETHODCALLTYPE Release(void);
  499. virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents, IDeckLinkDisplayMode*, BMDDetectedVideoInputFormatFlags);
  500. virtual HRESULT STDMETHODCALLTYPE VideoInputFrameArrived(IDeckLinkVideoInputFrame*, IDeckLinkAudioInputPacket*);
  501. private:
  502. std::atomic<int> _refs;
  503. AVFormatContext *avctx;
  504. decklink_ctx *ctx;
  505. int no_video;
  506. int64_t initial_video_pts;
  507. int64_t initial_audio_pts;
  508. };
  509. decklink_input_callback::decklink_input_callback(AVFormatContext *_avctx) : _refs(1)
  510. {
  511. avctx = _avctx;
  512. decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
  513. ctx = (struct decklink_ctx *)cctx->ctx;
  514. no_video = 0;
  515. initial_audio_pts = initial_video_pts = AV_NOPTS_VALUE;
  516. }
  517. decklink_input_callback::~decklink_input_callback()
  518. {
  519. }
  520. ULONG decklink_input_callback::AddRef(void)
  521. {
  522. return ++_refs;
  523. }
  524. ULONG decklink_input_callback::Release(void)
  525. {
  526. int ret = --_refs;
  527. if (!ret)
  528. delete this;
  529. return ret;
  530. }
  531. static int64_t get_pkt_pts(IDeckLinkVideoInputFrame *videoFrame,
  532. IDeckLinkAudioInputPacket *audioFrame,
  533. int64_t wallclock,
  534. int64_t abs_wallclock,
  535. DecklinkPtsSource pts_src,
  536. AVRational time_base, int64_t *initial_pts,
  537. int copyts)
  538. {
  539. int64_t pts = AV_NOPTS_VALUE;
  540. BMDTimeValue bmd_pts;
  541. BMDTimeValue bmd_duration;
  542. HRESULT res = E_INVALIDARG;
  543. switch (pts_src) {
  544. case PTS_SRC_AUDIO:
  545. if (audioFrame)
  546. res = audioFrame->GetPacketTime(&bmd_pts, time_base.den);
  547. break;
  548. case PTS_SRC_VIDEO:
  549. if (videoFrame)
  550. res = videoFrame->GetStreamTime(&bmd_pts, &bmd_duration, time_base.den);
  551. break;
  552. case PTS_SRC_REFERENCE:
  553. if (videoFrame)
  554. res = videoFrame->GetHardwareReferenceTimestamp(time_base.den, &bmd_pts, &bmd_duration);
  555. break;
  556. case PTS_SRC_WALLCLOCK:
  557. /* fall through */
  558. case PTS_SRC_ABS_WALLCLOCK:
  559. {
  560. /* MSVC does not support compound literals like AV_TIME_BASE_Q
  561. * in C++ code (compiler error C4576) */
  562. AVRational timebase;
  563. timebase.num = 1;
  564. timebase.den = AV_TIME_BASE;
  565. if (pts_src == PTS_SRC_WALLCLOCK)
  566. pts = av_rescale_q(wallclock, timebase, time_base);
  567. else
  568. pts = av_rescale_q(abs_wallclock, timebase, time_base);
  569. break;
  570. }
  571. }
  572. if (res == S_OK)
  573. pts = bmd_pts / time_base.num;
  574. if (!copyts) {
  575. if (pts != AV_NOPTS_VALUE && *initial_pts == AV_NOPTS_VALUE)
  576. *initial_pts = pts;
  577. if (*initial_pts != AV_NOPTS_VALUE)
  578. pts -= *initial_pts;
  579. }
  580. return pts;
  581. }
  582. static int get_bmd_timecode(AVFormatContext *avctx, AVTimecode *tc, AVRational frame_rate, BMDTimecodeFormat tc_format, IDeckLinkVideoInputFrame *videoFrame)
  583. {
  584. IDeckLinkTimecode *timecode;
  585. int ret = AVERROR(ENOENT);
  586. #if BLACKMAGIC_DECKLINK_API_VERSION >= 0x0b000000
  587. int hfr = (tc_format == bmdTimecodeRP188HighFrameRate);
  588. #else
  589. int hfr = 0;
  590. #endif
  591. if (videoFrame->GetTimecode(tc_format, &timecode) == S_OK) {
  592. uint8_t hh, mm, ss, ff;
  593. if (timecode->GetComponents(&hh, &mm, &ss, &ff) == S_OK) {
  594. int flags = (timecode->GetFlags() & bmdTimecodeIsDropFrame) ? AV_TIMECODE_FLAG_DROPFRAME : 0;
  595. if (!hfr && av_cmp_q(frame_rate, av_make_q(30, 1)) == 1)
  596. ff = ff << 1 | !!(timecode->GetFlags() & bmdTimecodeFieldMark);
  597. ret = av_timecode_init_from_components(tc, frame_rate, flags, hh, mm, ss, ff, avctx);
  598. }
  599. timecode->Release();
  600. }
  601. return ret;
  602. }
  603. static int get_frame_timecode(AVFormatContext *avctx, decklink_ctx *ctx, AVTimecode *tc, IDeckLinkVideoInputFrame *videoFrame)
  604. {
  605. AVRational frame_rate = ctx->video_st->r_frame_rate;
  606. int ret;
  607. /* 50/60 fps content has alternating VITC1 and VITC2 timecode (see SMPTE ST
  608. * 12-2, section 7), so the native ordering of RP188Any (HFR, VITC1, LTC,
  609. * VITC2) would not work because LTC might not contain the field flag.
  610. * Therefore we query the types manually. */
  611. if (ctx->tc_format == bmdTimecodeRP188Any && av_cmp_q(frame_rate, av_make_q(30, 1)) == 1) {
  612. #if BLACKMAGIC_DECKLINK_API_VERSION >= 0x0b000000
  613. ret = get_bmd_timecode(avctx, tc, frame_rate, bmdTimecodeRP188HighFrameRate, videoFrame);
  614. if (ret == AVERROR(ENOENT))
  615. #endif
  616. ret = get_bmd_timecode(avctx, tc, frame_rate, bmdTimecodeRP188VITC1, videoFrame);
  617. if (ret == AVERROR(ENOENT))
  618. ret = get_bmd_timecode(avctx, tc, frame_rate, bmdTimecodeRP188VITC2, videoFrame);
  619. if (ret == AVERROR(ENOENT))
  620. ret = get_bmd_timecode(avctx, tc, frame_rate, bmdTimecodeRP188LTC, videoFrame);
  621. } else {
  622. ret = get_bmd_timecode(avctx, tc, frame_rate, ctx->tc_format, videoFrame);
  623. }
  624. return ret;
  625. }
  626. HRESULT decklink_input_callback::VideoInputFrameArrived(
  627. IDeckLinkVideoInputFrame *videoFrame, IDeckLinkAudioInputPacket *audioFrame)
  628. {
  629. void *frameBytes;
  630. void *audioFrameBytes;
  631. BMDTimeValue frameTime;
  632. BMDTimeValue frameDuration;
  633. int64_t wallclock = 0, abs_wallclock = 0;
  634. struct decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
  635. if (ctx->autodetect) {
  636. if (videoFrame && !(videoFrame->GetFlags() & bmdFrameHasNoInputSource) &&
  637. ctx->bmd_mode == bmdModeUnknown)
  638. {
  639. ctx->bmd_mode = AUTODETECT_DEFAULT_MODE;
  640. }
  641. return S_OK;
  642. }
  643. // Drop the frames till system's timestamp aligns with the configured value.
  644. if (0 == ctx->frameCount && cctx->timestamp_align) {
  645. AVRational remainder = av_make_q(av_gettime() % cctx->timestamp_align, 1000000);
  646. AVRational frame_duration = av_inv_q(ctx->video_st->r_frame_rate);
  647. if (av_cmp_q(remainder, frame_duration) > 0) {
  648. ++ctx->dropped;
  649. return S_OK;
  650. }
  651. }
  652. ctx->frameCount++;
  653. if (ctx->audio_pts_source == PTS_SRC_WALLCLOCK || ctx->video_pts_source == PTS_SRC_WALLCLOCK)
  654. wallclock = av_gettime_relative();
  655. if (ctx->audio_pts_source == PTS_SRC_ABS_WALLCLOCK || ctx->video_pts_source == PTS_SRC_ABS_WALLCLOCK)
  656. abs_wallclock = av_gettime();
  657. // Handle Video Frame
  658. if (videoFrame) {
  659. AVPacket pkt = { 0 };
  660. if (ctx->frameCount % 25 == 0) {
  661. unsigned long long qsize = ff_decklink_packet_queue_size(&ctx->queue);
  662. av_log(avctx, AV_LOG_DEBUG,
  663. "Frame received (#%lu) - Valid (%liB) - QSize %fMB\n",
  664. ctx->frameCount,
  665. videoFrame->GetRowBytes() * videoFrame->GetHeight(),
  666. (double)qsize / 1024 / 1024);
  667. }
  668. videoFrame->GetBytes(&frameBytes);
  669. videoFrame->GetStreamTime(&frameTime, &frameDuration,
  670. ctx->video_st->time_base.den);
  671. if (videoFrame->GetFlags() & bmdFrameHasNoInputSource) {
  672. if (ctx->draw_bars && videoFrame->GetPixelFormat() == bmdFormat8BitYUV) {
  673. unsigned bars[8] = {
  674. 0xEA80EA80, 0xD292D210, 0xA910A9A5, 0x90229035,
  675. 0x6ADD6ACA, 0x51EF515A, 0x286D28EF, 0x10801080 };
  676. int width = videoFrame->GetWidth();
  677. int height = videoFrame->GetHeight();
  678. unsigned *p = (unsigned *)frameBytes;
  679. for (int y = 0; y < height; y++) {
  680. for (int x = 0; x < width; x += 2)
  681. *p++ = bars[(x * 8) / width];
  682. }
  683. }
  684. if (!no_video) {
  685. av_log(avctx, AV_LOG_WARNING, "Frame received (#%lu) - No input signal detected "
  686. "- Frames dropped %u\n", ctx->frameCount, ++ctx->dropped);
  687. }
  688. no_video = 1;
  689. } else {
  690. if (no_video) {
  691. av_log(avctx, AV_LOG_WARNING, "Frame received (#%lu) - Input returned "
  692. "- Frames dropped %u\n", ctx->frameCount, ++ctx->dropped);
  693. }
  694. no_video = 0;
  695. // Handle Timecode (if requested)
  696. if (ctx->tc_format) {
  697. AVTimecode tcr;
  698. if (get_frame_timecode(avctx, ctx, &tcr, videoFrame) >= 0) {
  699. char tcstr[AV_TIMECODE_STR_SIZE];
  700. const char *tc = av_timecode_make_string(&tcr, tcstr, 0);
  701. if (tc) {
  702. AVDictionary* metadata_dict = NULL;
  703. uint8_t* packed_metadata;
  704. if (av_cmp_q(ctx->video_st->r_frame_rate, av_make_q(60, 1)) < 1) {
  705. uint32_t tc_data = av_timecode_get_smpte_from_framenum(&tcr, 0);
  706. int size = sizeof(uint32_t) * 4;
  707. uint32_t *sd = (uint32_t *)av_packet_new_side_data(&pkt, AV_PKT_DATA_S12M_TIMECODE, size);
  708. if (sd) {
  709. *sd = 1; // one TC
  710. *(sd + 1) = tc_data; // TC
  711. }
  712. }
  713. if (av_dict_set(&metadata_dict, "timecode", tc, 0) >= 0) {
  714. size_t metadata_len;
  715. packed_metadata = av_packet_pack_dictionary(metadata_dict, &metadata_len);
  716. av_dict_free(&metadata_dict);
  717. if (packed_metadata) {
  718. if (av_packet_add_side_data(&pkt, AV_PKT_DATA_STRINGS_METADATA, packed_metadata, metadata_len) < 0)
  719. av_freep(&packed_metadata);
  720. else if (!ctx->tc_seen)
  721. ctx->tc_seen = ctx->frameCount;
  722. }
  723. }
  724. }
  725. } else {
  726. av_log(avctx, AV_LOG_DEBUG, "Unable to find timecode.\n");
  727. }
  728. }
  729. }
  730. if (ctx->tc_format && cctx->wait_for_tc && !ctx->tc_seen) {
  731. av_log(avctx, AV_LOG_WARNING, "No TC detected yet. wait_for_tc set. Dropping. \n");
  732. av_log(avctx, AV_LOG_WARNING, "Frame received (#%lu) - "
  733. "- Frames dropped %u\n", ctx->frameCount, ++ctx->dropped);
  734. return S_OK;
  735. }
  736. pkt.pts = get_pkt_pts(videoFrame, audioFrame, wallclock, abs_wallclock, ctx->video_pts_source, ctx->video_st->time_base, &initial_video_pts, cctx->copyts);
  737. pkt.dts = pkt.pts;
  738. pkt.duration = frameDuration;
  739. //To be made sure it still applies
  740. pkt.flags |= AV_PKT_FLAG_KEY;
  741. pkt.stream_index = ctx->video_st->index;
  742. pkt.data = (uint8_t *)frameBytes;
  743. pkt.size = videoFrame->GetRowBytes() *
  744. videoFrame->GetHeight();
  745. //fprintf(stderr,"Video Frame size %d ts %d\n", pkt.size, pkt.pts);
  746. if (!no_video) {
  747. IDeckLinkVideoFrameAncillary *vanc;
  748. AVPacket txt_pkt = { 0 };
  749. uint8_t txt_buf0[3531]; // 35 * 46 bytes decoded teletext lines + 1 byte data_identifier + 1920 bytes OP47 decode buffer
  750. uint8_t *txt_buf = txt_buf0;
  751. if (ctx->enable_klv) {
  752. handle_klv(avctx, ctx, videoFrame, pkt.pts);
  753. }
  754. if (videoFrame->GetAncillaryData(&vanc) == S_OK) {
  755. int i;
  756. BMDPixelFormat vanc_format = vanc->GetPixelFormat();
  757. txt_buf[0] = 0x10; // data_identifier - EBU_data
  758. txt_buf++;
  759. #if CONFIG_LIBZVBI
  760. if (ctx->bmd_mode == bmdModePAL && ctx->teletext_lines &&
  761. (vanc_format == bmdFormat8BitYUV || vanc_format == bmdFormat10BitYUV)) {
  762. int64_t line_mask = 1;
  763. av_assert0(videoFrame->GetWidth() == 720);
  764. for (i = 6; i < 336; i++, line_mask <<= 1) {
  765. uint8_t *buf;
  766. if ((ctx->teletext_lines & line_mask) && vanc->GetBufferForVerticalBlankingLine(i, (void**)&buf) == S_OK) {
  767. if (vanc_format == bmdFormat8BitYUV)
  768. txt_buf = teletext_data_unit_from_vbi_data(i, buf, txt_buf, VBI_PIXFMT_UYVY);
  769. else
  770. txt_buf = teletext_data_unit_from_vbi_data_10bit(i, buf, txt_buf);
  771. }
  772. if (i == 22)
  773. i = 317;
  774. }
  775. }
  776. #endif
  777. if (vanc_format == bmdFormat10BitYUV && videoFrame->GetWidth() <= MAX_WIDTH_VANC) {
  778. int idx = get_vanc_line_idx(ctx->bmd_mode);
  779. for (i = vanc_line_numbers[idx].vanc_start; i <= vanc_line_numbers[idx].vanc_end; i++) {
  780. uint8_t *buf;
  781. if (vanc->GetBufferForVerticalBlankingLine(i, (void**)&buf) == S_OK) {
  782. uint16_t vanc[MAX_WIDTH_VANC];
  783. size_t vanc_size = videoFrame->GetWidth();
  784. if (ctx->bmd_mode == bmdModeNTSC && videoFrame->GetWidth() * 2 <= MAX_WIDTH_VANC) {
  785. vanc_size = vanc_size * 2;
  786. unpack_v210(vanc, buf, videoFrame->GetWidth());
  787. } else {
  788. extract_luma_from_v210(vanc, buf, videoFrame->GetWidth());
  789. }
  790. txt_buf = get_metadata(avctx, vanc, vanc_size,
  791. txt_buf, sizeof(txt_buf0) - (txt_buf - txt_buf0), &pkt);
  792. }
  793. if (i == vanc_line_numbers[idx].field0_vanc_end)
  794. i = vanc_line_numbers[idx].field1_vanc_start - 1;
  795. }
  796. }
  797. vanc->Release();
  798. if (txt_buf - txt_buf0 > 1) {
  799. int stuffing_units = (4 - ((45 + txt_buf - txt_buf0) / 46) % 4) % 4;
  800. while (stuffing_units--) {
  801. memset(txt_buf, 0xff, 46);
  802. txt_buf[1] = 0x2c; // data_unit_length
  803. txt_buf += 46;
  804. }
  805. txt_pkt.pts = pkt.pts;
  806. txt_pkt.dts = pkt.dts;
  807. txt_pkt.stream_index = ctx->teletext_st->index;
  808. txt_pkt.data = txt_buf0;
  809. txt_pkt.size = txt_buf - txt_buf0;
  810. if (ff_decklink_packet_queue_put(&ctx->queue, &txt_pkt) < 0) {
  811. ++ctx->dropped;
  812. }
  813. }
  814. }
  815. }
  816. pkt.buf = av_buffer_create(pkt.data, pkt.size, decklink_object_free, videoFrame, 0);
  817. if (pkt.buf)
  818. videoFrame->AddRef();
  819. if (ff_decklink_packet_queue_put(&ctx->queue, &pkt) < 0) {
  820. ++ctx->dropped;
  821. }
  822. }
  823. // Handle Audio Frame
  824. if (audioFrame) {
  825. AVPacket pkt = { 0 };
  826. BMDTimeValue audio_pts;
  827. //hack among hacks
  828. pkt.size = audioFrame->GetSampleFrameCount() * ctx->audio_st->codecpar->ch_layout.nb_channels * (ctx->audio_depth / 8);
  829. audioFrame->GetBytes(&audioFrameBytes);
  830. audioFrame->GetPacketTime(&audio_pts, ctx->audio_st->time_base.den);
  831. pkt.pts = get_pkt_pts(videoFrame, audioFrame, wallclock, abs_wallclock, ctx->audio_pts_source, ctx->audio_st->time_base, &initial_audio_pts, cctx->copyts);
  832. pkt.dts = pkt.pts;
  833. //fprintf(stderr,"Audio Frame size %d ts %d\n", pkt.size, pkt.pts);
  834. pkt.flags |= AV_PKT_FLAG_KEY;
  835. pkt.stream_index = ctx->audio_st->index;
  836. pkt.data = (uint8_t *)audioFrameBytes;
  837. if (ff_decklink_packet_queue_put(&ctx->queue, &pkt) < 0) {
  838. ++ctx->dropped;
  839. }
  840. }
  841. return S_OK;
  842. }
  843. HRESULT decklink_input_callback::VideoInputFormatChanged(
  844. BMDVideoInputFormatChangedEvents events, IDeckLinkDisplayMode *mode,
  845. BMDDetectedVideoInputFormatFlags formatFlags)
  846. {
  847. struct decklink_cctx *cctx = (struct decklink_cctx *) avctx->priv_data;
  848. ctx->bmd_mode = mode->GetDisplayMode();
  849. // check the C context member to make sure we set both raw_format and bmd_mode with data from the same format change callback
  850. if (!cctx->raw_format)
  851. ctx->raw_format = (formatFlags & bmdDetectedVideoInputRGB444) ? bmdFormat8BitARGB : bmdFormat8BitYUV;
  852. return S_OK;
  853. }
  854. static int decklink_autodetect(struct decklink_cctx *cctx) {
  855. struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
  856. DECKLINK_BOOL autodetect_supported = false;
  857. int i;
  858. if (ctx->attr->GetFlag(BMDDeckLinkSupportsInputFormatDetection, &autodetect_supported) != S_OK)
  859. return -1;
  860. if (autodetect_supported == false)
  861. return -1;
  862. ctx->autodetect = 1;
  863. ctx->bmd_mode = bmdModeUnknown;
  864. if (ctx->dli->EnableVideoInput(AUTODETECT_DEFAULT_MODE,
  865. bmdFormat8BitYUV,
  866. bmdVideoInputEnableFormatDetection) != S_OK) {
  867. return -1;
  868. }
  869. if (ctx->dli->StartStreams() != S_OK) {
  870. return -1;
  871. }
  872. // 3 second timeout
  873. for (i = 0; i < 30; i++) {
  874. av_usleep(100000);
  875. /* Sometimes VideoInputFrameArrived is called without the
  876. * bmdFrameHasNoInputSource flag before VideoInputFormatChanged.
  877. * So don't break for bmd_mode == AUTODETECT_DEFAULT_MODE. */
  878. if (ctx->bmd_mode != bmdModeUnknown &&
  879. ctx->bmd_mode != AUTODETECT_DEFAULT_MODE)
  880. break;
  881. }
  882. ctx->dli->PauseStreams();
  883. ctx->dli->FlushStreams();
  884. ctx->autodetect = 0;
  885. if (ctx->bmd_mode != bmdModeUnknown) {
  886. cctx->format_code = (char *)av_mallocz(5);
  887. if (!cctx->format_code)
  888. return -1;
  889. AV_WB32(cctx->format_code, ctx->bmd_mode);
  890. return 0;
  891. } else {
  892. return -1;
  893. }
  894. }
  895. extern "C" {
  896. av_cold int ff_decklink_read_close(AVFormatContext *avctx)
  897. {
  898. struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
  899. struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
  900. if (ctx->dli) {
  901. ctx->dli->StopStreams();
  902. ctx->dli->DisableVideoInput();
  903. ctx->dli->DisableAudioInput();
  904. }
  905. ff_decklink_cleanup(avctx);
  906. ff_decklink_packet_queue_end(&ctx->queue);
  907. av_freep(&cctx->ctx);
  908. return 0;
  909. }
  910. av_cold int ff_decklink_read_header(AVFormatContext *avctx)
  911. {
  912. struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
  913. struct decklink_ctx *ctx;
  914. class decklink_allocator *allocator;
  915. class decklink_input_callback *input_callback;
  916. AVStream *st;
  917. HRESULT result;
  918. int ret;
  919. ctx = (struct decklink_ctx *) av_mallocz(sizeof(struct decklink_ctx));
  920. if (!ctx)
  921. return AVERROR(ENOMEM);
  922. ctx->list_devices = cctx->list_devices;
  923. ctx->list_formats = cctx->list_formats;
  924. ctx->enable_klv = cctx->enable_klv;
  925. ctx->teletext_lines = cctx->teletext_lines;
  926. ctx->preroll = cctx->preroll;
  927. ctx->duplex_mode = cctx->duplex_mode;
  928. if (cctx->tc_format > 0 && (unsigned int)cctx->tc_format < FF_ARRAY_ELEMS(decklink_timecode_format_map))
  929. ctx->tc_format = decklink_timecode_format_map[cctx->tc_format];
  930. if (cctx->video_input > 0 && (unsigned int)cctx->video_input < FF_ARRAY_ELEMS(decklink_video_connection_map))
  931. ctx->video_input = decklink_video_connection_map[cctx->video_input];
  932. if (cctx->audio_input > 0 && (unsigned int)cctx->audio_input < FF_ARRAY_ELEMS(decklink_audio_connection_map))
  933. ctx->audio_input = decklink_audio_connection_map[cctx->audio_input];
  934. ctx->audio_pts_source = cctx->audio_pts_source;
  935. ctx->video_pts_source = cctx->video_pts_source;
  936. ctx->draw_bars = cctx->draw_bars;
  937. ctx->audio_depth = cctx->audio_depth;
  938. if (cctx->raw_format > 0 && (unsigned int)cctx->raw_format < FF_ARRAY_ELEMS(decklink_raw_format_map))
  939. ctx->raw_format = decklink_raw_format_map[cctx->raw_format];
  940. cctx->ctx = ctx;
  941. /* Check audio channel option for valid values: 2, 8 or 16 */
  942. switch (cctx->audio_channels) {
  943. case 2:
  944. case 8:
  945. case 16:
  946. break;
  947. default:
  948. av_log(avctx, AV_LOG_ERROR, "Value of channels option must be one of 2, 8 or 16\n");
  949. return AVERROR(EINVAL);
  950. }
  951. /* Check audio bit depth option for valid values: 16 or 32 */
  952. switch (cctx->audio_depth) {
  953. case 16:
  954. case 32:
  955. break;
  956. default:
  957. av_log(avctx, AV_LOG_ERROR, "Value for audio bit depth option must be either 16 or 32\n");
  958. return AVERROR(EINVAL);
  959. }
  960. /* List available devices. */
  961. if (ctx->list_devices) {
  962. ff_decklink_list_devices_legacy(avctx, 1, 0);
  963. return AVERROR_EXIT;
  964. }
  965. ret = ff_decklink_init_device(avctx, avctx->url);
  966. if (ret < 0)
  967. return ret;
  968. /* Get input device. */
  969. if (ctx->dl->QueryInterface(IID_IDeckLinkInput, (void **) &ctx->dli) != S_OK) {
  970. av_log(avctx, AV_LOG_ERROR, "Could not open input device from '%s'\n",
  971. avctx->url);
  972. ret = AVERROR(EIO);
  973. goto error;
  974. }
  975. if (ff_decklink_set_configs(avctx, DIRECTION_IN) < 0) {
  976. av_log(avctx, AV_LOG_ERROR, "Could not set input configuration\n");
  977. ret = AVERROR(EIO);
  978. goto error;
  979. }
  980. /* List supported formats. */
  981. if (ctx->list_formats) {
  982. ff_decklink_list_formats(avctx, DIRECTION_IN);
  983. ret = AVERROR_EXIT;
  984. goto error;
  985. }
  986. input_callback = new decklink_input_callback(avctx);
  987. ret = (ctx->dli->SetCallback(input_callback) == S_OK ? 0 : AVERROR_EXTERNAL);
  988. input_callback->Release();
  989. if (ret < 0) {
  990. av_log(avctx, AV_LOG_ERROR, "Cannot set input callback\n");
  991. goto error;
  992. }
  993. allocator = new decklink_allocator();
  994. ret = (ctx->dli->SetVideoInputFrameMemoryAllocator(allocator) == S_OK ? 0 : AVERROR_EXTERNAL);
  995. allocator->Release();
  996. if (ret < 0) {
  997. av_log(avctx, AV_LOG_ERROR, "Cannot set custom memory allocator\n");
  998. goto error;
  999. }
  1000. if (!cctx->format_code) {
  1001. if (decklink_autodetect(cctx) < 0) {
  1002. av_log(avctx, AV_LOG_ERROR, "Cannot Autodetect input stream or No signal\n");
  1003. ret = AVERROR(EIO);
  1004. goto error;
  1005. }
  1006. av_log(avctx, AV_LOG_INFO, "Autodetected the input mode\n");
  1007. }
  1008. if (ctx->raw_format == (BMDPixelFormat)0)
  1009. ctx->raw_format = bmdFormat8BitYUV;
  1010. if (ff_decklink_set_format(avctx, DIRECTION_IN) < 0) {
  1011. av_log(avctx, AV_LOG_ERROR, "Could not set format code %s for %s\n",
  1012. cctx->format_code ? cctx->format_code : "(unset)", avctx->url);
  1013. ret = AVERROR(EIO);
  1014. goto error;
  1015. }
  1016. #if !CONFIG_LIBZVBI
  1017. if (ctx->teletext_lines && ctx->bmd_mode == bmdModePAL) {
  1018. av_log(avctx, AV_LOG_ERROR, "Libzvbi support is needed for capturing SD PAL teletext, please recompile FFmpeg.\n");
  1019. ret = AVERROR(ENOSYS);
  1020. goto error;
  1021. }
  1022. #endif
  1023. /* Setup streams. */
  1024. st = avformat_new_stream(avctx, NULL);
  1025. if (!st) {
  1026. av_log(avctx, AV_LOG_ERROR, "Cannot add stream\n");
  1027. ret = AVERROR(ENOMEM);
  1028. goto error;
  1029. }
  1030. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  1031. st->codecpar->codec_id = cctx->audio_depth == 32 ? AV_CODEC_ID_PCM_S32LE : AV_CODEC_ID_PCM_S16LE;
  1032. st->codecpar->sample_rate = bmdAudioSampleRate48kHz;
  1033. st->codecpar->ch_layout.nb_channels = cctx->audio_channels;
  1034. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  1035. ctx->audio_st=st;
  1036. st = avformat_new_stream(avctx, NULL);
  1037. if (!st) {
  1038. av_log(avctx, AV_LOG_ERROR, "Cannot add stream\n");
  1039. ret = AVERROR(ENOMEM);
  1040. goto error;
  1041. }
  1042. st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
  1043. st->codecpar->width = ctx->bmd_width;
  1044. st->codecpar->height = ctx->bmd_height;
  1045. st->time_base.den = ctx->bmd_tb_den;
  1046. st->time_base.num = ctx->bmd_tb_num;
  1047. st->r_frame_rate = av_make_q(st->time_base.den, st->time_base.num);
  1048. switch(ctx->raw_format) {
  1049. case bmdFormat8BitYUV:
  1050. st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
  1051. st->codecpar->format = AV_PIX_FMT_UYVY422;
  1052. st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 16, st->time_base.den, st->time_base.num);
  1053. break;
  1054. case bmdFormat10BitYUV:
  1055. st->codecpar->codec_id = AV_CODEC_ID_V210;
  1056. st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 64, st->time_base.den, st->time_base.num * 3);
  1057. break;
  1058. case bmdFormat8BitARGB:
  1059. st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
  1060. st->codecpar->format = AV_PIX_FMT_0RGB;
  1061. st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 32, st->time_base.den, st->time_base.num);
  1062. break;
  1063. case bmdFormat8BitBGRA:
  1064. st->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
  1065. st->codecpar->format = AV_PIX_FMT_BGR0;
  1066. st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 32, st->time_base.den, st->time_base.num);
  1067. break;
  1068. case bmdFormat10BitRGB:
  1069. st->codecpar->codec_id = AV_CODEC_ID_R210;
  1070. st->codecpar->bit_rate = av_rescale(ctx->bmd_width * ctx->bmd_height * 30, st->time_base.den, st->time_base.num);
  1071. break;
  1072. default:
  1073. char fourcc_str[AV_FOURCC_MAX_STRING_SIZE] = {0};
  1074. av_fourcc_make_string(fourcc_str, ctx->raw_format);
  1075. av_log(avctx, AV_LOG_ERROR, "Raw Format %s not supported\n", fourcc_str);
  1076. ret = AVERROR(EINVAL);
  1077. goto error;
  1078. }
  1079. switch (ctx->bmd_field_dominance) {
  1080. case bmdUpperFieldFirst:
  1081. st->codecpar->field_order = AV_FIELD_TT;
  1082. break;
  1083. case bmdLowerFieldFirst:
  1084. st->codecpar->field_order = AV_FIELD_BB;
  1085. break;
  1086. case bmdProgressiveFrame:
  1087. case bmdProgressiveSegmentedFrame:
  1088. st->codecpar->field_order = AV_FIELD_PROGRESSIVE;
  1089. break;
  1090. }
  1091. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  1092. ctx->video_st=st;
  1093. if (ctx->enable_klv) {
  1094. st = avformat_new_stream(avctx, NULL);
  1095. if (!st) {
  1096. ret = AVERROR(ENOMEM);
  1097. goto error;
  1098. }
  1099. st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
  1100. st->time_base.den = ctx->bmd_tb_den;
  1101. st->time_base.num = ctx->bmd_tb_num;
  1102. st->codecpar->codec_id = AV_CODEC_ID_SMPTE_KLV;
  1103. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  1104. ctx->klv_st = st;
  1105. }
  1106. if (ctx->teletext_lines) {
  1107. st = avformat_new_stream(avctx, NULL);
  1108. if (!st) {
  1109. av_log(avctx, AV_LOG_ERROR, "Cannot add stream\n");
  1110. ret = AVERROR(ENOMEM);
  1111. goto error;
  1112. }
  1113. st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
  1114. st->time_base.den = ctx->bmd_tb_den;
  1115. st->time_base.num = ctx->bmd_tb_num;
  1116. st->codecpar->codec_id = AV_CODEC_ID_DVB_TELETEXT;
  1117. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  1118. ctx->teletext_st = st;
  1119. }
  1120. av_log(avctx, AV_LOG_VERBOSE, "Using %d input audio channels\n", ctx->audio_st->codecpar->ch_layout.nb_channels);
  1121. result = ctx->dli->EnableAudioInput(bmdAudioSampleRate48kHz, cctx->audio_depth == 32 ? bmdAudioSampleType32bitInteger : bmdAudioSampleType16bitInteger, ctx->audio_st->codecpar->ch_layout.nb_channels);
  1122. if (result != S_OK) {
  1123. av_log(avctx, AV_LOG_ERROR, "Cannot enable audio input\n");
  1124. ret = AVERROR(EIO);
  1125. goto error;
  1126. }
  1127. result = ctx->dli->EnableVideoInput(ctx->bmd_mode,
  1128. ctx->raw_format,
  1129. bmdVideoInputFlagDefault);
  1130. if (result != S_OK) {
  1131. av_log(avctx, AV_LOG_ERROR, "Cannot enable video input\n");
  1132. ret = AVERROR(EIO);
  1133. goto error;
  1134. }
  1135. ff_decklink_packet_queue_init(avctx, &ctx->queue, cctx->queue_size);
  1136. if (ctx->dli->StartStreams() != S_OK) {
  1137. av_log(avctx, AV_LOG_ERROR, "Cannot start input stream\n");
  1138. ret = AVERROR(EIO);
  1139. goto error;
  1140. }
  1141. return 0;
  1142. error:
  1143. ff_decklink_cleanup(avctx);
  1144. return ret;
  1145. }
  1146. int ff_decklink_read_packet(AVFormatContext *avctx, AVPacket *pkt)
  1147. {
  1148. struct decklink_cctx *cctx = (struct decklink_cctx *)avctx->priv_data;
  1149. struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx;
  1150. ff_decklink_packet_queue_get(&ctx->queue, pkt, 1);
  1151. if (ctx->tc_format && !(av_dict_get(ctx->video_st->metadata, "timecode", NULL, 0))) {
  1152. size_t size;
  1153. const uint8_t *side_metadata = av_packet_get_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA, &size);
  1154. if (side_metadata) {
  1155. if (av_packet_unpack_dictionary(side_metadata, size, &ctx->video_st->metadata) < 0)
  1156. av_log(avctx, AV_LOG_ERROR, "Unable to set timecode\n");
  1157. }
  1158. }
  1159. return 0;
  1160. }
  1161. int ff_decklink_list_input_devices(AVFormatContext *avctx, struct AVDeviceInfoList *device_list)
  1162. {
  1163. return ff_decklink_list_devices(avctx, device_list, 1, 0);
  1164. }
  1165. } /* extern "C" */