You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

415 lines
16KB

  1. /*
  2. * General DV muxer/demuxer
  3. * Copyright (c) 2003 Roman Shaposhnik
  4. *
  5. * Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
  6. * of DV technical info.
  7. *
  8. * Raw DV format
  9. * Copyright (c) 2002 Fabrice Bellard.
  10. *
  11. * 50 Mbps (DVCPRO50) support
  12. * Copyright (c) 2006 Daniel Maas <dmaas@maasdigital.com>
  13. *
  14. * This library is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU Lesser General Public
  16. * License as published by the Free Software Foundation; either
  17. * version 2 of the License, or (at your option) any later version.
  18. *
  19. * This library is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * Lesser General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Lesser General Public
  25. * License along with this library; if not, write to the Free Software
  26. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  27. */
  28. #include <time.h>
  29. #include "avformat.h"
  30. #include "dvdata.h"
  31. #include "dv.h"
  32. #include "fifo.h"
  33. struct DVMuxContext {
  34. const DVprofile* sys; /* Current DV profile. E.g.: 525/60, 625/50 */
  35. int n_ast; /* Number of stereo audio streams (up to 2) */
  36. AVStream *ast[2]; /* Stereo audio streams */
  37. AVFifoBuffer audio_data[2]; /* Fifo for storing excessive amounts of PCM */
  38. int frames; /* Number of a current frame */
  39. time_t start_time; /* Start time of recording */
  40. int has_audio; /* frame under contruction has audio */
  41. int has_video; /* frame under contruction has video */
  42. uint8_t frame_buf[DV_MAX_FRAME_SIZE]; /* frame under contruction */
  43. };
  44. static const int dv_aaux_packs_dist[12][9] = {
  45. { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
  46. { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
  47. { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
  48. { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
  49. { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
  50. { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
  51. { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
  52. { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
  53. { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
  54. { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
  55. { 0xff, 0xff, 0xff, 0x50, 0x51, 0x52, 0x53, 0xff, 0xff },
  56. { 0x50, 0x51, 0x52, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff },
  57. };
  58. static int dv_audio_frame_size(const DVprofile* sys, int frame)
  59. {
  60. return sys->audio_samples_dist[frame % (sizeof(sys->audio_samples_dist)/
  61. sizeof(sys->audio_samples_dist[0]))];
  62. }
  63. static int dv_write_pack(enum dv_pack_type pack_id, DVMuxContext *c, uint8_t* buf)
  64. {
  65. struct tm tc;
  66. time_t ct;
  67. int ltc_frame;
  68. /* Its hard to tell what SMPTE requires w.r.t. APT, but Quicktime needs it.
  69. * We set it based on pix_fmt value but it really should be per DV profile */
  70. int apt = (c->sys->pix_fmt == PIX_FMT_YUV422P ? 1 : 0);
  71. buf[0] = (uint8_t)pack_id;
  72. switch (pack_id) {
  73. case dv_timecode:
  74. ct = (time_t)(c->frames / ((float)c->sys->frame_rate /
  75. (float)c->sys->frame_rate_base));
  76. brktimegm(ct, &tc);
  77. /*
  78. * LTC drop-frame frame counter drops two frames (0 and 1) every
  79. * minute, unless it is exactly divisible by 10
  80. */
  81. ltc_frame = (c->frames + 2*ct/60 - 2*ct/600) % c->sys->ltc_divisor;
  82. buf[1] = (0 << 7) | /* Color fame: 0 - unsync; 1 - sync mode */
  83. (1 << 6) | /* Drop frame timecode: 0 - nondrop; 1 - drop */
  84. ((ltc_frame / 10) << 4) | /* Tens of frames */
  85. (ltc_frame % 10); /* Units of frames */
  86. buf[2] = (1 << 7) | /* Biphase mark polarity correction: 0 - even; 1 - odd */
  87. ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
  88. (tc.tm_sec % 10); /* Units of seconds */
  89. buf[3] = (1 << 7) | /* Binary group flag BGF0 */
  90. ((tc.tm_min / 10) << 4) | /* Tens of minutes */
  91. (tc.tm_min % 10); /* Units of minutes */
  92. buf[4] = (1 << 7) | /* Binary group flag BGF2 */
  93. (1 << 6) | /* Binary group flag BGF1 */
  94. ((tc.tm_hour / 10) << 4) | /* Tens of hours */
  95. (tc.tm_hour % 10); /* Units of hours */
  96. break;
  97. case dv_audio_source: /* AAUX source pack */
  98. buf[1] = (0 << 7) | /* locked mode */
  99. (1 << 6) | /* reserved -- always 1 */
  100. (dv_audio_frame_size(c->sys, c->frames) -
  101. c->sys->audio_min_samples[0]);
  102. /* # of samples */
  103. buf[2] = (0 << 7) | /* multi-stereo */
  104. (0 << 5) | /* #of audio channels per block: 0 -- 1 channel */
  105. (0 << 4) | /* pair bit: 0 -- one pair of channels */
  106. 0; /* audio mode */
  107. buf[3] = (1 << 7) | /* res */
  108. (1 << 6) | /* multi-language flag */
  109. (c->sys->dsf << 5) | /* system: 60fields/50fields */
  110. (apt << 1);/* definition: 0 -- 25Mbps, 2 -- 50Mbps */
  111. buf[4] = (1 << 7) | /* emphasis: 1 -- off */
  112. (0 << 6) | /* emphasis time constant: 0 -- reserved */
  113. (0 << 3) | /* frequency: 0 -- 48Khz, 1 -- 44,1Khz, 2 -- 32Khz */
  114. 0; /* quantization: 0 -- 16bit linear, 1 -- 12bit nonlinear */
  115. break;
  116. case dv_audio_control:
  117. buf[1] = (0 << 6) | /* copy protection: 0 -- unrestricted */
  118. (1 << 4) | /* input source: 1 -- digital input */
  119. (3 << 2) | /* compression: 3 -- no information */
  120. 0; /* misc. info/SMPTE emphasis off */
  121. buf[2] = (1 << 7) | /* recording start point: 1 -- no */
  122. (1 << 6) | /* recording end point: 1 -- no */
  123. (1 << 3) | /* recording mode: 1 -- original */
  124. 7;
  125. buf[3] = (1 << 7) | /* direction: 1 -- forward */
  126. 0x20; /* speed */
  127. buf[4] = (1 << 7) | /* reserved -- always 1 */
  128. 0x7f; /* genre category */
  129. break;
  130. case dv_audio_recdate:
  131. case dv_video_recdate: /* VAUX recording date */
  132. ct = c->start_time + (time_t)(c->frames /
  133. ((float)c->sys->frame_rate / (float)c->sys->frame_rate_base));
  134. brktimegm(ct, &tc);
  135. buf[1] = 0xff; /* ds, tm, tens of time zone, units of time zone */
  136. /* 0xff is very likely to be "unknown" */
  137. buf[2] = (3 << 6) | /* reserved -- always 1 */
  138. ((tc.tm_mday / 10) << 4) | /* Tens of day */
  139. (tc.tm_mday % 10); /* Units of day */
  140. buf[3] = /* we set high 4 bits to 0, shouldn't we set them to week? */
  141. ((tc.tm_mon / 10) << 4) | /* Tens of month */
  142. (tc.tm_mon % 10); /* Units of month */
  143. buf[4] = (((tc.tm_year % 100) / 10) << 4) | /* Tens of year */
  144. (tc.tm_year % 10); /* Units of year */
  145. break;
  146. case dv_audio_rectime: /* AAUX recording time */
  147. case dv_video_rectime: /* VAUX recording time */
  148. ct = c->start_time + (time_t)(c->frames /
  149. ((float)c->sys->frame_rate / (float)c->sys->frame_rate_base));
  150. brktimegm(ct, &tc);
  151. buf[1] = (3 << 6) | /* reserved -- always 1 */
  152. 0x3f; /* tens of frame, units of frame: 0x3f - "unknown" ? */
  153. buf[2] = (1 << 7) | /* reserved -- always 1 */
  154. ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
  155. (tc.tm_sec % 10); /* Units of seconds */
  156. buf[3] = (1 << 7) | /* reserved -- always 1 */
  157. ((tc.tm_min / 10) << 4) | /* Tens of minutes */
  158. (tc.tm_min % 10); /* Units of minutes */
  159. buf[4] = (3 << 6) | /* reserved -- always 1 */
  160. ((tc.tm_hour / 10) << 4) | /* Tens of hours */
  161. (tc.tm_hour % 10); /* Units of hours */
  162. break;
  163. default:
  164. buf[1] = buf[2] = buf[3] = buf[4] = 0xff;
  165. }
  166. return 5;
  167. }
  168. static void dv_inject_audio(DVMuxContext *c, int channel, uint8_t* frame_ptr)
  169. {
  170. int i, j, d, of, size;
  171. size = 4 * dv_audio_frame_size(c->sys, c->frames);
  172. frame_ptr += channel * c->sys->difseg_size * 150 * 80;
  173. for (i = 0; i < c->sys->difseg_size; i++) {
  174. frame_ptr += 6 * 80; /* skip DIF segment header */
  175. for (j = 0; j < 9; j++) {
  176. dv_write_pack(dv_aaux_packs_dist[i][j], c, &frame_ptr[3]);
  177. for (d = 8; d < 80; d+=2) {
  178. of = c->sys->audio_shuffle[i][j] + (d - 8)/2 * c->sys->audio_stride;
  179. if (of*2 >= size)
  180. continue;
  181. frame_ptr[d] = av_fifo_peek(&c->audio_data[channel], of*2+1); // FIXME: may be we have to admit
  182. frame_ptr[d+1] = av_fifo_peek(&c->audio_data[channel], of*2); // that DV is a big endian PCM
  183. }
  184. frame_ptr += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
  185. }
  186. }
  187. }
  188. static void dv_inject_metadata(DVMuxContext *c, uint8_t* frame)
  189. {
  190. int j, k;
  191. uint8_t* buf;
  192. for (buf = frame; buf < frame + c->sys->frame_size; buf += 150 * 80) {
  193. /* DV subcode: 2nd and 3d DIFs */
  194. for (j = 80; j < 80 * 3; j += 80) {
  195. for (k = 6; k < 6 * 8; k += 8)
  196. dv_write_pack(dv_timecode, c, &buf[j+k]);
  197. if (((long)(buf-frame)/(c->sys->frame_size/(c->sys->difseg_size*c->sys->n_difchan))%c->sys->difseg_size) > 5) { /* FIXME: is this really needed ? */
  198. dv_write_pack(dv_video_recdate, c, &buf[j+14]);
  199. dv_write_pack(dv_video_rectime, c, &buf[j+22]);
  200. dv_write_pack(dv_video_recdate, c, &buf[j+38]);
  201. dv_write_pack(dv_video_rectime, c, &buf[j+46]);
  202. }
  203. }
  204. /* DV VAUX: 4th, 5th and 6th 3DIFs */
  205. for (j = 80*3 + 3; j < 80*6; j += 80) {
  206. dv_write_pack(dv_video_recdate, c, &buf[j+5*2]);
  207. dv_write_pack(dv_video_rectime, c, &buf[j+5*3]);
  208. dv_write_pack(dv_video_recdate, c, &buf[j+5*11]);
  209. dv_write_pack(dv_video_rectime, c, &buf[j+5*12]);
  210. }
  211. }
  212. }
  213. /*
  214. * The following 3 functions constitute our interface to the world
  215. */
  216. int dv_assemble_frame(DVMuxContext *c, AVStream* st,
  217. const uint8_t* data, int data_size, uint8_t** frame)
  218. {
  219. int i, reqasize;
  220. *frame = &c->frame_buf[0];
  221. reqasize = 4 * dv_audio_frame_size(c->sys, c->frames);
  222. switch (st->codec->codec_type) {
  223. case CODEC_TYPE_VIDEO:
  224. /* FIXME: we have to have more sensible approach than this one */
  225. if (c->has_video)
  226. av_log(st->codec, AV_LOG_ERROR, "Can't process DV frame #%d. Insufficient audio data or severe sync problem.\n", c->frames);
  227. memcpy(*frame, data, c->sys->frame_size);
  228. c->has_video = 1;
  229. break;
  230. case CODEC_TYPE_AUDIO:
  231. for (i = 0; i < c->n_ast && st != c->ast[i]; i++);
  232. /* FIXME: we have to have more sensible approach than this one */
  233. if (av_fifo_size(&c->audio_data[i]) + data_size >= 100*AVCODEC_MAX_AUDIO_FRAME_SIZE)
  234. av_log(st->codec, AV_LOG_ERROR, "Can't process DV frame #%d. Insufficient video data or severe sync problem.\n", c->frames);
  235. av_fifo_write(&c->audio_data[i], data, data_size);
  236. /* Lets see if we've got enough audio for one DV frame */
  237. c->has_audio |= ((reqasize <= av_fifo_size(&c->audio_data[i])) << i);
  238. break;
  239. default:
  240. break;
  241. }
  242. /* Lets see if we have enough data to construct one DV frame */
  243. if (c->has_video == 1 && c->has_audio + 1 == 1<<c->n_ast) {
  244. dv_inject_metadata(c, *frame);
  245. for (i=0; i<c->n_ast; i++) {
  246. dv_inject_audio(c, i, *frame);
  247. av_fifo_drain(&c->audio_data[i], reqasize);
  248. }
  249. c->has_video = 0;
  250. c->has_audio = 0;
  251. c->frames++;
  252. return c->sys->frame_size;
  253. }
  254. return 0;
  255. }
  256. DVMuxContext* dv_init_mux(AVFormatContext* s)
  257. {
  258. DVMuxContext *c;
  259. AVStream *vst = NULL;
  260. int i;
  261. /* we support at most 1 video and 2 audio streams */
  262. if (s->nb_streams > 3)
  263. return NULL;
  264. c = av_mallocz(sizeof(DVMuxContext));
  265. if (!c)
  266. return NULL;
  267. c->n_ast = 0;
  268. c->ast[0] = c->ast[1] = NULL;
  269. /* We have to sort out where audio and where video stream is */
  270. for (i=0; i<s->nb_streams; i++) {
  271. switch (s->streams[i]->codec->codec_type) {
  272. case CODEC_TYPE_VIDEO:
  273. vst = s->streams[i];
  274. break;
  275. case CODEC_TYPE_AUDIO:
  276. c->ast[c->n_ast++] = s->streams[i];
  277. break;
  278. default:
  279. goto bail_out;
  280. }
  281. }
  282. /* Some checks -- DV format is very picky about its incoming streams */
  283. if (!vst || vst->codec->codec_id != CODEC_ID_DVVIDEO)
  284. goto bail_out;
  285. for (i=0; i<c->n_ast; i++) {
  286. if (c->ast[i] && (c->ast[i]->codec->codec_id != CODEC_ID_PCM_S16LE ||
  287. c->ast[i]->codec->sample_rate != 48000 ||
  288. c->ast[i]->codec->channels != 2))
  289. goto bail_out;
  290. }
  291. c->sys = dv_codec_profile(vst->codec);
  292. if (!c->sys)
  293. goto bail_out;
  294. if((c->n_ast > 1) && (c->sys->n_difchan < 2)) {
  295. /* only 1 stereo pair is allowed in 25Mbps mode */
  296. goto bail_out;
  297. }
  298. /* Ok, everything seems to be in working order */
  299. c->frames = 0;
  300. c->has_audio = 0;
  301. c->has_video = 0;
  302. c->start_time = (time_t)s->timestamp;
  303. for (i=0; i<c->n_ast; i++) {
  304. if (c->ast[i] && av_fifo_init(&c->audio_data[i], 100*AVCODEC_MAX_AUDIO_FRAME_SIZE) < 0) {
  305. while (i>0) {
  306. i--;
  307. av_fifo_free(&c->audio_data[i]);
  308. }
  309. goto bail_out;
  310. }
  311. }
  312. return c;
  313. bail_out:
  314. av_free(c);
  315. return NULL;
  316. }
  317. void dv_delete_mux(DVMuxContext *c)
  318. {
  319. int i;
  320. for (i=0; i < c->n_ast; i++)
  321. av_fifo_free(&c->audio_data[i]);
  322. }
  323. #ifdef CONFIG_MUXERS
  324. static int dv_write_header(AVFormatContext *s)
  325. {
  326. s->priv_data = dv_init_mux(s);
  327. if (!s->priv_data) {
  328. av_log(s, AV_LOG_ERROR, "Can't initialize DV format!\n"
  329. "Make sure that you supply exactly two streams:\n"
  330. " video: 25fps or 29.97fps, audio: 2ch/48Khz/PCM\n"
  331. " (50Mbps allows an optional second audio stream)\n");
  332. return -1;
  333. }
  334. return 0;
  335. }
  336. static int dv_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  337. {
  338. uint8_t* frame;
  339. int fsize;
  340. fsize = dv_assemble_frame((DVMuxContext *)s->priv_data, s->streams[pkt->stream_index],
  341. pkt->data, pkt->size, &frame);
  342. if (fsize > 0) {
  343. put_buffer(&s->pb, frame, fsize);
  344. put_flush_packet(&s->pb);
  345. }
  346. return 0;
  347. }
  348. /*
  349. * We might end up with some extra A/V data without matching counterpart.
  350. * E.g. video data without enough audio to write the complete frame.
  351. * Currently we simply drop the last frame. I don't know whether this
  352. * is the best strategy of all
  353. */
  354. static int dv_write_trailer(struct AVFormatContext *s)
  355. {
  356. dv_delete_mux((DVMuxContext *)s->priv_data);
  357. return 0;
  358. }
  359. #endif /* CONFIG_MUXERS */
  360. #ifdef CONFIG_DV_MUXER
  361. AVOutputFormat dv_muxer = {
  362. "dv",
  363. "DV video format",
  364. NULL,
  365. "dv",
  366. sizeof(DVMuxContext),
  367. CODEC_ID_PCM_S16LE,
  368. CODEC_ID_DVVIDEO,
  369. dv_write_header,
  370. dv_write_packet,
  371. dv_write_trailer,
  372. };
  373. #endif