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.

343 lines
11KB

  1. /*
  2. * LXF demuxer
  3. * Copyright (c) 2010 Tomas Härdin
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <inttypes.h>
  22. #include "libavutil/intreadwrite.h"
  23. #include "libavcodec/bytestream.h"
  24. #include "avformat.h"
  25. #include "internal.h"
  26. #define LXF_MAX_PACKET_HEADER_SIZE 256
  27. #define LXF_HEADER_DATA_SIZE 120
  28. #define LXF_IDENT "LEITCH\0"
  29. #define LXF_IDENT_LENGTH 8
  30. #define LXF_SAMPLERATE 48000
  31. static const AVCodecTag lxf_tags[] = {
  32. { AV_CODEC_ID_MJPEG, 0 },
  33. { AV_CODEC_ID_MPEG1VIDEO, 1 },
  34. { AV_CODEC_ID_MPEG2VIDEO, 2 }, //MpMl, 4:2:0
  35. { AV_CODEC_ID_MPEG2VIDEO, 3 }, //MpPl, 4:2:2
  36. { AV_CODEC_ID_DVVIDEO, 4 }, //DV25
  37. { AV_CODEC_ID_DVVIDEO, 5 }, //DVCPRO
  38. { AV_CODEC_ID_DVVIDEO, 6 }, //DVCPRO50
  39. { AV_CODEC_ID_RAWVIDEO, 7 }, //AV_PIX_FMT_ARGB, where alpha is used for chroma keying
  40. { AV_CODEC_ID_RAWVIDEO, 8 }, //16-bit chroma key
  41. { AV_CODEC_ID_MPEG2VIDEO, 9 }, //4:2:2 CBP ("Constrained Bytes per Gop")
  42. { AV_CODEC_ID_NONE, 0 },
  43. };
  44. typedef struct LXFDemuxContext {
  45. int channels; ///< number of audio channels. zero means no audio
  46. int frame_number; ///< current video frame
  47. uint32_t video_format, packet_type, extended_size;
  48. } LXFDemuxContext;
  49. static int lxf_probe(AVProbeData *p)
  50. {
  51. if (!memcmp(p->buf, LXF_IDENT, LXF_IDENT_LENGTH))
  52. return AVPROBE_SCORE_MAX;
  53. return 0;
  54. }
  55. /**
  56. * Verify the checksum of an LXF packet header
  57. *
  58. * @param[in] header the packet header to check
  59. * @return zero if the checksum is OK, non-zero otherwise
  60. */
  61. static int check_checksum(const uint8_t *header, int size)
  62. {
  63. int x;
  64. uint32_t sum = 0;
  65. for (x = 0; x < size; x += 4)
  66. sum += AV_RL32(&header[x]);
  67. return sum;
  68. }
  69. /**
  70. * Read input until we find the next ident. If found, copy it to the header buffer
  71. *
  72. * @param[out] header where to copy the ident to
  73. * @return 0 if an ident was found, < 0 on I/O error
  74. */
  75. static int sync(AVFormatContext *s, uint8_t *header)
  76. {
  77. uint8_t buf[LXF_IDENT_LENGTH];
  78. int ret;
  79. if ((ret = avio_read(s->pb, buf, LXF_IDENT_LENGTH)) != LXF_IDENT_LENGTH)
  80. return ret < 0 ? ret : AVERROR_EOF;
  81. while (memcmp(buf, LXF_IDENT, LXF_IDENT_LENGTH)) {
  82. if (s->pb->eof_reached)
  83. return AVERROR_EOF;
  84. memmove(buf, &buf[1], LXF_IDENT_LENGTH-1);
  85. buf[LXF_IDENT_LENGTH-1] = avio_r8(s->pb);
  86. }
  87. memcpy(header, LXF_IDENT, LXF_IDENT_LENGTH);
  88. return 0;
  89. }
  90. /**
  91. * Read and checksum the next packet header
  92. *
  93. * @return the size of the payload following the header or < 0 on failure
  94. */
  95. static int get_packet_header(AVFormatContext *s)
  96. {
  97. LXFDemuxContext *lxf = s->priv_data;
  98. AVIOContext *pb = s->pb;
  99. int track_size, samples, ret;
  100. uint32_t version, audio_format, header_size, channels, tmp;
  101. AVStream *st;
  102. uint8_t header[LXF_MAX_PACKET_HEADER_SIZE];
  103. const uint8_t *p = header + LXF_IDENT_LENGTH;
  104. //find and read the ident
  105. if ((ret = sync(s, header)) < 0)
  106. return ret;
  107. ret = avio_read(pb, header + LXF_IDENT_LENGTH, 8);
  108. if (ret != 8)
  109. return ret < 0 ? ret : AVERROR_EOF;
  110. version = bytestream_get_le32(&p);
  111. header_size = bytestream_get_le32(&p);
  112. if (version > 1)
  113. avpriv_request_sample(s, "Format version %"PRIu32, version);
  114. if (header_size < (version ? 72 : 60) ||
  115. header_size > LXF_MAX_PACKET_HEADER_SIZE ||
  116. (header_size & 3)) {
  117. av_log(s, AV_LOG_ERROR, "Invalid header size 0x%"PRIx32"\n", header_size);
  118. return AVERROR_INVALIDDATA;
  119. }
  120. //read the rest of the packet header
  121. ret = avio_read(pb, header + (p - header), header_size - (p - header));
  122. if (ret != header_size - (p - header))
  123. return ret < 0 ? ret : AVERROR_EOF;
  124. if (check_checksum(header, header_size))
  125. av_log(s, AV_LOG_ERROR, "checksum error\n");
  126. lxf->packet_type = bytestream_get_le32(&p);
  127. p += version ? 20 : 12;
  128. lxf->extended_size = 0;
  129. switch (lxf->packet_type) {
  130. case 0:
  131. //video
  132. lxf->video_format = bytestream_get_le32(&p);
  133. ret = bytestream_get_le32(&p);
  134. //skip VBI data and metadata
  135. avio_skip(pb, (int64_t)(uint32_t)AV_RL32(p + 4) +
  136. (int64_t)(uint32_t)AV_RL32(p + 12));
  137. break;
  138. case 1:
  139. //audio
  140. if (s->nb_streams < 2) {
  141. av_log(s, AV_LOG_INFO, "got audio packet, but no audio stream present\n");
  142. break;
  143. }
  144. if (version == 0)
  145. p += 8;
  146. audio_format = bytestream_get_le32(&p);
  147. channels = bytestream_get_le32(&p);
  148. track_size = bytestream_get_le32(&p);
  149. st = s->streams[1];
  150. //set codec based on specified audio bitdepth
  151. //we only support tightly packed 16-, 20-, 24- and 32-bit PCM at the moment
  152. st->codecpar->bits_per_coded_sample = (audio_format >> 6) & 0x3F;
  153. if (st->codecpar->bits_per_coded_sample != (audio_format & 0x3F)) {
  154. avpriv_report_missing_feature(s, "Not tightly packed PCM");
  155. return AVERROR_PATCHWELCOME;
  156. }
  157. switch (st->codecpar->bits_per_coded_sample) {
  158. case 16: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE_PLANAR; break;
  159. case 20: st->codecpar->codec_id = AV_CODEC_ID_PCM_LXF; break;
  160. case 24: st->codecpar->codec_id = AV_CODEC_ID_PCM_S24LE_PLANAR; break;
  161. case 32: st->codecpar->codec_id = AV_CODEC_ID_PCM_S32LE_PLANAR; break;
  162. default:
  163. avpriv_report_missing_feature(s, "PCM not 16-, 20-, 24- or 32-bits");
  164. return AVERROR_PATCHWELCOME;
  165. }
  166. samples = track_size * 8 / st->codecpar->bits_per_coded_sample;
  167. //use audio packet size to determine video standard
  168. //for NTSC we have one 8008-sample audio frame per five video frames
  169. if (samples == LXF_SAMPLERATE * 5005 / 30000) {
  170. avpriv_set_pts_info(s->streams[0], 64, 1001, 30000);
  171. } else {
  172. //assume PAL, but warn if we don't have 1920 samples
  173. if (samples != LXF_SAMPLERATE / 25)
  174. av_log(s, AV_LOG_WARNING,
  175. "video doesn't seem to be PAL or NTSC. guessing PAL\n");
  176. avpriv_set_pts_info(s->streams[0], 64, 1, 25);
  177. }
  178. //TODO: warning if track mask != (1 << channels) - 1?
  179. ret = av_popcount(channels) * track_size;
  180. break;
  181. default:
  182. tmp = bytestream_get_le32(&p);
  183. ret = bytestream_get_le32(&p);
  184. if (tmp == 1)
  185. lxf->extended_size = bytestream_get_le32(&p);
  186. break;
  187. }
  188. return ret;
  189. }
  190. static int lxf_read_header(AVFormatContext *s)
  191. {
  192. LXFDemuxContext *lxf = s->priv_data;
  193. AVIOContext *pb = s->pb;
  194. uint8_t header_data[LXF_HEADER_DATA_SIZE];
  195. int ret;
  196. AVStream *st;
  197. uint32_t video_params, disk_params;
  198. uint16_t record_date, expiration_date;
  199. if ((ret = get_packet_header(s)) < 0)
  200. return ret;
  201. if (ret != LXF_HEADER_DATA_SIZE) {
  202. av_log(s, AV_LOG_ERROR, "expected %d B size header, got %d\n",
  203. LXF_HEADER_DATA_SIZE, ret);
  204. return AVERROR_INVALIDDATA;
  205. }
  206. if ((ret = avio_read(pb, header_data, LXF_HEADER_DATA_SIZE)) != LXF_HEADER_DATA_SIZE)
  207. return ret < 0 ? ret : AVERROR_EOF;
  208. if (!(st = avformat_new_stream(s, NULL)))
  209. return AVERROR(ENOMEM);
  210. st->duration = AV_RL32(&header_data[32]);
  211. video_params = AV_RL32(&header_data[40]);
  212. record_date = AV_RL16(&header_data[56]);
  213. expiration_date = AV_RL16(&header_data[58]);
  214. disk_params = AV_RL32(&header_data[116]);
  215. st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
  216. st->codecpar->bit_rate = 1000000 * ((video_params >> 14) & 0xFF);
  217. st->codecpar->codec_tag = video_params & 0xF;
  218. st->codecpar->codec_id = ff_codec_get_id(lxf_tags, st->codecpar->codec_tag);
  219. av_log(s, AV_LOG_DEBUG, "record: %x = %i-%02i-%02i\n",
  220. record_date, 1900 + (record_date & 0x7F), (record_date >> 7) & 0xF,
  221. (record_date >> 11) & 0x1F);
  222. av_log(s, AV_LOG_DEBUG, "expire: %x = %i-%02i-%02i\n",
  223. expiration_date, 1900 + (expiration_date & 0x7F), (expiration_date >> 7) & 0xF,
  224. (expiration_date >> 11) & 0x1F);
  225. if ((video_params >> 22) & 1)
  226. av_log(s, AV_LOG_WARNING, "VBI data not yet supported\n");
  227. if ((lxf->channels = 1 << (disk_params >> 4 & 3) + 1)) {
  228. if (!(st = avformat_new_stream(s, NULL)))
  229. return AVERROR(ENOMEM);
  230. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  231. st->codecpar->sample_rate = LXF_SAMPLERATE;
  232. st->codecpar->channels = lxf->channels;
  233. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  234. }
  235. avio_skip(s->pb, lxf->extended_size);
  236. return 0;
  237. }
  238. static int lxf_read_packet(AVFormatContext *s, AVPacket *pkt)
  239. {
  240. LXFDemuxContext *lxf = s->priv_data;
  241. AVIOContext *pb = s->pb;
  242. uint32_t stream;
  243. int ret, ret2;
  244. if ((ret = get_packet_header(s)) < 0)
  245. return ret;
  246. stream = lxf->packet_type;
  247. if (stream > 1) {
  248. av_log(s, AV_LOG_WARNING,
  249. "got packet with illegal stream index %"PRIu32"\n", stream);
  250. return AVERROR(EAGAIN);
  251. }
  252. if (stream == 1 && s->nb_streams < 2) {
  253. av_log(s, AV_LOG_ERROR, "got audio packet without having an audio stream\n");
  254. return AVERROR_INVALIDDATA;
  255. }
  256. if ((ret2 = av_new_packet(pkt, ret)) < 0)
  257. return ret2;
  258. if ((ret2 = avio_read(pb, pkt->data, ret)) != ret) {
  259. av_packet_unref(pkt);
  260. return ret2 < 0 ? ret2 : AVERROR_EOF;
  261. }
  262. pkt->stream_index = stream;
  263. if (!stream) {
  264. //picture type (0 = closed I, 1 = open I, 2 = P, 3 = B)
  265. if (((lxf->video_format >> 22) & 0x3) < 2)
  266. pkt->flags |= AV_PKT_FLAG_KEY;
  267. pkt->dts = lxf->frame_number++;
  268. }
  269. return ret;
  270. }
  271. AVInputFormat ff_lxf_demuxer = {
  272. .name = "lxf",
  273. .long_name = NULL_IF_CONFIG_SMALL("VR native stream (LXF)"),
  274. .priv_data_size = sizeof(LXFDemuxContext),
  275. .read_probe = lxf_probe,
  276. .read_header = lxf_read_header,
  277. .read_packet = lxf_read_packet,
  278. .codec_tag = (const AVCodecTag* const []){lxf_tags, 0},
  279. };