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.

408 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. buf[0] = (uint8_t)pack_id;
  71. switch (pack_id) {
  72. case dv_timecode:
  73. ct = (time_t)(c->frames / ((float)c->sys->frame_rate /
  74. (float)c->sys->frame_rate_base));
  75. brktimegm(ct, &tc);
  76. /*
  77. * LTC drop-frame frame counter drops two frames (0 and 1) every
  78. * minute, unless it is exactly divisible by 10
  79. */
  80. ltc_frame = (c->frames + 2*ct/60 - 2*ct/600) % c->sys->ltc_divisor;
  81. buf[1] = (0 << 7) | /* Color fame: 0 - unsync; 1 - sync mode */
  82. (1 << 6) | /* Drop frame timecode: 0 - nondrop; 1 - drop */
  83. ((ltc_frame / 10) << 4) | /* Tens of frames */
  84. (ltc_frame % 10); /* Units of frames */
  85. buf[2] = (1 << 7) | /* Biphase mark polarity correction: 0 - even; 1 - odd */
  86. ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
  87. (tc.tm_sec % 10); /* Units of seconds */
  88. buf[3] = (1 << 7) | /* Binary group flag BGF0 */
  89. ((tc.tm_min / 10) << 4) | /* Tens of minutes */
  90. (tc.tm_min % 10); /* Units of minutes */
  91. buf[4] = (1 << 7) | /* Binary group flag BGF2 */
  92. (1 << 6) | /* Binary group flag BGF1 */
  93. ((tc.tm_hour / 10) << 4) | /* Tens of hours */
  94. (tc.tm_hour % 10); /* Units of hours */
  95. break;
  96. case dv_audio_source: /* AAUX source pack */
  97. buf[1] = (0 << 7) | /* locked mode */
  98. (1 << 6) | /* reserved -- always 1 */
  99. (dv_audio_frame_size(c->sys, c->frames) -
  100. c->sys->audio_min_samples[0]);
  101. /* # of samples */
  102. buf[2] = (0 << 7) | /* multi-stereo */
  103. (0 << 5) | /* #of audio channels per block: 0 -- 1 channel */
  104. (0 << 4) | /* pair bit: 0 -- one pair of channels */
  105. 0; /* audio mode */
  106. buf[3] = (1 << 7) | /* res */
  107. (1 << 6) | /* multi-language flag */
  108. (c->sys->dsf << 5) | /* system: 60fields/50fields */
  109. (c->sys->n_difchan & 2); /* definition: 0 -- 25Mbps, 2 -- 50Mbps */
  110. buf[4] = (1 << 7) | /* emphasis: 1 -- off */
  111. (0 << 6) | /* emphasis time constant: 0 -- reserved */
  112. (0 << 3) | /* frequency: 0 -- 48Khz, 1 -- 44,1Khz, 2 -- 32Khz */
  113. 0; /* quantization: 0 -- 16bit linear, 1 -- 12bit nonlinear */
  114. break;
  115. case dv_audio_control:
  116. buf[1] = (0 << 6) | /* copy protection: 0 -- unrestricted */
  117. (1 << 4) | /* input source: 1 -- digital input */
  118. (3 << 2) | /* compression: 3 -- no information */
  119. 0; /* misc. info/SMPTE emphasis off */
  120. buf[2] = (1 << 7) | /* recording start point: 1 -- no */
  121. (1 << 6) | /* recording end point: 1 -- no */
  122. (1 << 3) | /* recording mode: 1 -- original */
  123. 7;
  124. buf[3] = (1 << 7) | /* direction: 1 -- forward */
  125. (c->sys->pix_fmt == PIX_FMT_YUV420P ? 0x20 : /* speed */
  126. c->sys->ltc_divisor*4);
  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 = (DVMuxContext *)s->priv_data;
  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->n_ast = 0;
  265. c->ast[0] = c->ast[1] = NULL;
  266. /* We have to sort out where audio and where video stream is */
  267. for (i=0; i<s->nb_streams; i++) {
  268. switch (s->streams[i]->codec->codec_type) {
  269. case CODEC_TYPE_VIDEO:
  270. vst = s->streams[i];
  271. break;
  272. case CODEC_TYPE_AUDIO:
  273. c->ast[c->n_ast++] = s->streams[i];
  274. break;
  275. default:
  276. goto bail_out;
  277. }
  278. }
  279. /* Some checks -- DV format is very picky about its incoming streams */
  280. if (!vst || vst->codec->codec_id != CODEC_ID_DVVIDEO)
  281. goto bail_out;
  282. for (i=0; i<c->n_ast; i++) {
  283. if (c->ast[i] && (c->ast[i]->codec->codec_id != CODEC_ID_PCM_S16LE ||
  284. c->ast[i]->codec->sample_rate != 48000 ||
  285. c->ast[i]->codec->channels != 2))
  286. goto bail_out;
  287. }
  288. c->sys = dv_codec_profile(vst->codec);
  289. if (!c->sys)
  290. goto bail_out;
  291. if((c->n_ast > 1) && (c->sys->n_difchan < 2)) {
  292. /* only 1 stereo pair is allowed in 25Mbps mode */
  293. goto bail_out;
  294. }
  295. /* Ok, everything seems to be in working order */
  296. c->frames = 0;
  297. c->has_audio = 0;
  298. c->has_video = 0;
  299. c->start_time = (time_t)s->timestamp;
  300. for (i=0; i<c->n_ast; i++) {
  301. if (c->ast[i] && av_fifo_init(&c->audio_data[i], 100*AVCODEC_MAX_AUDIO_FRAME_SIZE) < 0) {
  302. while (i>0) {
  303. i--;
  304. av_fifo_free(&c->audio_data[i]);
  305. }
  306. goto bail_out;
  307. }
  308. }
  309. return c;
  310. bail_out:
  311. return NULL;
  312. }
  313. void dv_delete_mux(DVMuxContext *c)
  314. {
  315. int i;
  316. for (i=0; i < c->n_ast; i++)
  317. av_fifo_free(&c->audio_data[i]);
  318. }
  319. #ifdef CONFIG_MUXERS
  320. static int dv_write_header(AVFormatContext *s)
  321. {
  322. if (!dv_init_mux(s)) {
  323. av_log(s, AV_LOG_ERROR, "Can't initialize DV format!\n"
  324. "Make sure that you supply exactly two streams:\n"
  325. " video: 25fps or 29.97fps, audio: 2ch/48Khz/PCM\n"
  326. " (50Mbps allows an optional second audio stream)\n");
  327. return -1;
  328. }
  329. return 0;
  330. }
  331. static int dv_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  332. {
  333. uint8_t* frame;
  334. int fsize;
  335. fsize = dv_assemble_frame((DVMuxContext *)s->priv_data, s->streams[pkt->stream_index],
  336. pkt->data, pkt->size, &frame);
  337. if (fsize > 0) {
  338. put_buffer(&s->pb, frame, fsize);
  339. put_flush_packet(&s->pb);
  340. }
  341. return 0;
  342. }
  343. /*
  344. * We might end up with some extra A/V data without matching counterpart.
  345. * E.g. video data without enough audio to write the complete frame.
  346. * Currently we simply drop the last frame. I don't know whether this
  347. * is the best strategy of all
  348. */
  349. static int dv_write_trailer(struct AVFormatContext *s)
  350. {
  351. dv_delete_mux((DVMuxContext *)s->priv_data);
  352. return 0;
  353. }
  354. #endif /* CONFIG_MUXERS */
  355. #ifdef CONFIG_DV_MUXER
  356. AVOutputFormat dv_muxer = {
  357. "dv",
  358. "DV video format",
  359. NULL,
  360. "dv",
  361. sizeof(DVMuxContext),
  362. CODEC_ID_PCM_S16LE,
  363. CODEC_ID_DVVIDEO,
  364. dv_write_header,
  365. dv_write_packet,
  366. dv_write_trailer,
  367. };
  368. #endif