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.

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