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.

515 lines
16KB

  1. /*
  2. * FFM (avserver live feed) demuxer
  3. * Copyright (c) 2001 Fabrice Bellard
  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 "libavutil/intreadwrite.h"
  22. #include "libavutil/intfloat.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #include "ffm.h"
  26. #if CONFIG_AVSERVER
  27. #include <unistd.h>
  28. int64_t ffm_read_write_index(int fd)
  29. {
  30. uint8_t buf[8];
  31. lseek(fd, 8, SEEK_SET);
  32. if (read(fd, buf, 8) != 8)
  33. return AVERROR(EIO);
  34. return AV_RB64(buf);
  35. }
  36. int ffm_write_write_index(int fd, int64_t pos)
  37. {
  38. uint8_t buf[8];
  39. int i;
  40. for(i=0;i<8;i++)
  41. buf[i] = (pos >> (56 - i * 8)) & 0xff;
  42. lseek(fd, 8, SEEK_SET);
  43. if (write(fd, buf, 8) != 8)
  44. return AVERROR(EIO);
  45. return 8;
  46. }
  47. void ffm_set_write_index(AVFormatContext *s, int64_t pos, int64_t file_size)
  48. {
  49. FFMContext *ffm = s->priv_data;
  50. ffm->write_index = pos;
  51. ffm->file_size = file_size;
  52. }
  53. #endif // CONFIG_AVSERVER
  54. static int ffm_is_avail_data(AVFormatContext *s, int size)
  55. {
  56. FFMContext *ffm = s->priv_data;
  57. int64_t pos, avail_size;
  58. int len;
  59. len = ffm->packet_end - ffm->packet_ptr;
  60. if (size <= len)
  61. return 1;
  62. pos = avio_tell(s->pb);
  63. if (!ffm->write_index) {
  64. if (pos == ffm->file_size)
  65. return AVERROR_EOF;
  66. avail_size = ffm->file_size - pos;
  67. } else {
  68. if (pos == ffm->write_index) {
  69. /* exactly at the end of stream */
  70. return AVERROR(EAGAIN);
  71. } else if (pos < ffm->write_index) {
  72. avail_size = ffm->write_index - pos;
  73. } else {
  74. avail_size = (ffm->file_size - pos) + (ffm->write_index - FFM_PACKET_SIZE);
  75. }
  76. }
  77. avail_size = (avail_size / ffm->packet_size) * (ffm->packet_size - FFM_HEADER_SIZE) + len;
  78. if (size <= avail_size)
  79. return 1;
  80. else
  81. return AVERROR(EAGAIN);
  82. }
  83. static int ffm_resync(AVFormatContext *s, int state)
  84. {
  85. av_log(s, AV_LOG_ERROR, "resyncing\n");
  86. while (state != PACKET_ID) {
  87. if (s->pb->eof_reached) {
  88. av_log(s, AV_LOG_ERROR, "cannot find FFM syncword\n");
  89. return -1;
  90. }
  91. state = (state << 8) | avio_r8(s->pb);
  92. }
  93. return 0;
  94. }
  95. /* first is true if we read the frame header */
  96. static int ffm_read_data(AVFormatContext *s,
  97. uint8_t *buf, int size, int header)
  98. {
  99. FFMContext *ffm = s->priv_data;
  100. AVIOContext *pb = s->pb;
  101. int len, fill_size, size1, frame_offset, id;
  102. size1 = size;
  103. while (size > 0) {
  104. redo:
  105. len = ffm->packet_end - ffm->packet_ptr;
  106. if (len < 0)
  107. return -1;
  108. if (len > size)
  109. len = size;
  110. if (len == 0) {
  111. if (avio_tell(pb) == ffm->file_size)
  112. avio_seek(pb, ffm->packet_size, SEEK_SET);
  113. retry_read:
  114. id = avio_rb16(pb); /* PACKET_ID */
  115. if (id != PACKET_ID)
  116. if (ffm_resync(s, id) < 0)
  117. return -1;
  118. fill_size = avio_rb16(pb);
  119. ffm->dts = avio_rb64(pb);
  120. frame_offset = avio_rb16(pb);
  121. avio_read(pb, ffm->packet, ffm->packet_size - FFM_HEADER_SIZE);
  122. ffm->packet_end = ffm->packet + (ffm->packet_size - FFM_HEADER_SIZE - fill_size);
  123. if (ffm->packet_end < ffm->packet || frame_offset < 0)
  124. return -1;
  125. /* if first packet or resynchronization packet, we must
  126. handle it specifically */
  127. if (ffm->first_packet || (frame_offset & 0x8000)) {
  128. if (!frame_offset) {
  129. /* This packet has no frame headers in it */
  130. if (avio_tell(pb) >= ffm->packet_size * 3) {
  131. avio_seek(pb, -ffm->packet_size * 2, SEEK_CUR);
  132. goto retry_read;
  133. }
  134. /* This is bad, we cannot find a valid frame header */
  135. return 0;
  136. }
  137. ffm->first_packet = 0;
  138. if ((frame_offset & 0x7fff) < FFM_HEADER_SIZE)
  139. return -1;
  140. ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE;
  141. if (!header)
  142. break;
  143. } else {
  144. ffm->packet_ptr = ffm->packet;
  145. }
  146. goto redo;
  147. }
  148. memcpy(buf, ffm->packet_ptr, len);
  149. buf += len;
  150. ffm->packet_ptr += len;
  151. size -= len;
  152. header = 0;
  153. }
  154. return size1 - size;
  155. }
  156. /* ensure that acutal seeking happens between FFM_PACKET_SIZE
  157. and file_size - FFM_PACKET_SIZE */
  158. static int64_t ffm_seek1(AVFormatContext *s, int64_t pos1)
  159. {
  160. FFMContext *ffm = s->priv_data;
  161. AVIOContext *pb = s->pb;
  162. int64_t pos;
  163. pos = FFMIN(pos1, ffm->file_size - FFM_PACKET_SIZE);
  164. pos = FFMAX(pos, FFM_PACKET_SIZE);
  165. av_dlog(s, "seek to %"PRIx64" -> %"PRIx64"\n", pos1, pos);
  166. return avio_seek(pb, pos, SEEK_SET);
  167. }
  168. static int64_t get_dts(AVFormatContext *s, int64_t pos)
  169. {
  170. AVIOContext *pb = s->pb;
  171. int64_t dts;
  172. ffm_seek1(s, pos);
  173. avio_skip(pb, 4);
  174. dts = avio_rb64(pb);
  175. av_dlog(s, "dts=%0.6f\n", dts / 1000000.0);
  176. return dts;
  177. }
  178. static void adjust_write_index(AVFormatContext *s)
  179. {
  180. FFMContext *ffm = s->priv_data;
  181. AVIOContext *pb = s->pb;
  182. int64_t pts;
  183. //int64_t orig_write_index = ffm->write_index;
  184. int64_t pos_min, pos_max;
  185. int64_t pts_start;
  186. int64_t ptr = avio_tell(pb);
  187. pos_min = 0;
  188. pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
  189. pts_start = get_dts(s, pos_min);
  190. pts = get_dts(s, pos_max);
  191. if (pts - 100000 > pts_start)
  192. goto end;
  193. ffm->write_index = FFM_PACKET_SIZE;
  194. pts_start = get_dts(s, pos_min);
  195. pts = get_dts(s, pos_max);
  196. if (pts - 100000 <= pts_start) {
  197. while (1) {
  198. int64_t newpos;
  199. int64_t newpts;
  200. newpos = ((pos_max + pos_min) / (2 * FFM_PACKET_SIZE)) * FFM_PACKET_SIZE;
  201. if (newpos == pos_min)
  202. break;
  203. newpts = get_dts(s, newpos);
  204. if (newpts - 100000 <= pts) {
  205. pos_max = newpos;
  206. pts = newpts;
  207. } else {
  208. pos_min = newpos;
  209. }
  210. }
  211. ffm->write_index += pos_max;
  212. }
  213. end:
  214. avio_seek(pb, ptr, SEEK_SET);
  215. }
  216. static int ffm_close(AVFormatContext *s)
  217. {
  218. int i;
  219. for (i = 0; i < s->nb_streams; i++)
  220. av_freep(&s->streams[i]->codec->rc_eq);
  221. return 0;
  222. }
  223. static int ffm_read_header(AVFormatContext *s)
  224. {
  225. FFMContext *ffm = s->priv_data;
  226. AVStream *st;
  227. AVIOContext *pb = s->pb;
  228. AVCodecContext *codec;
  229. int i, nb_streams;
  230. uint32_t tag;
  231. /* header */
  232. tag = avio_rl32(pb);
  233. if (tag != MKTAG('F', 'F', 'M', '1'))
  234. goto fail;
  235. ffm->packet_size = avio_rb32(pb);
  236. if (ffm->packet_size != FFM_PACKET_SIZE)
  237. goto fail;
  238. ffm->write_index = avio_rb64(pb);
  239. /* get also filesize */
  240. if (pb->seekable) {
  241. ffm->file_size = avio_size(pb);
  242. if (ffm->write_index)
  243. adjust_write_index(s);
  244. } else {
  245. ffm->file_size = (UINT64_C(1) << 63) - 1;
  246. }
  247. nb_streams = avio_rb32(pb);
  248. avio_rb32(pb); /* total bitrate */
  249. /* read each stream */
  250. for(i=0;i<nb_streams;i++) {
  251. char rc_eq_buf[128];
  252. st = avformat_new_stream(s, NULL);
  253. if (!st)
  254. goto fail;
  255. avpriv_set_pts_info(st, 64, 1, 1000000);
  256. codec = st->codec;
  257. /* generic info */
  258. codec->codec_id = avio_rb32(pb);
  259. codec->codec_type = avio_r8(pb); /* codec_type */
  260. codec->bit_rate = avio_rb32(pb);
  261. codec->flags = avio_rb32(pb);
  262. codec->flags2 = avio_rb32(pb);
  263. codec->debug = avio_rb32(pb);
  264. /* specific info */
  265. switch(codec->codec_type) {
  266. case AVMEDIA_TYPE_VIDEO:
  267. codec->time_base.num = avio_rb32(pb);
  268. codec->time_base.den = avio_rb32(pb);
  269. codec->width = avio_rb16(pb);
  270. codec->height = avio_rb16(pb);
  271. codec->gop_size = avio_rb16(pb);
  272. codec->pix_fmt = avio_rb32(pb);
  273. codec->qmin = avio_r8(pb);
  274. codec->qmax = avio_r8(pb);
  275. codec->max_qdiff = avio_r8(pb);
  276. codec->qcompress = avio_rb16(pb) / 10000.0;
  277. codec->qblur = avio_rb16(pb) / 10000.0;
  278. codec->bit_rate_tolerance = avio_rb32(pb);
  279. avio_get_str(pb, INT_MAX, rc_eq_buf, sizeof(rc_eq_buf));
  280. codec->rc_eq = av_strdup(rc_eq_buf);
  281. codec->rc_max_rate = avio_rb32(pb);
  282. codec->rc_min_rate = avio_rb32(pb);
  283. codec->rc_buffer_size = avio_rb32(pb);
  284. codec->i_quant_factor = av_int2double(avio_rb64(pb));
  285. codec->b_quant_factor = av_int2double(avio_rb64(pb));
  286. codec->i_quant_offset = av_int2double(avio_rb64(pb));
  287. codec->b_quant_offset = av_int2double(avio_rb64(pb));
  288. codec->dct_algo = avio_rb32(pb);
  289. codec->strict_std_compliance = avio_rb32(pb);
  290. codec->max_b_frames = avio_rb32(pb);
  291. codec->mpeg_quant = avio_rb32(pb);
  292. codec->intra_dc_precision = avio_rb32(pb);
  293. codec->me_method = avio_rb32(pb);
  294. codec->mb_decision = avio_rb32(pb);
  295. codec->nsse_weight = avio_rb32(pb);
  296. codec->frame_skip_cmp = avio_rb32(pb);
  297. codec->rc_buffer_aggressivity = av_int2double(avio_rb64(pb));
  298. codec->codec_tag = avio_rb32(pb);
  299. codec->thread_count = avio_r8(pb);
  300. codec->coder_type = avio_rb32(pb);
  301. codec->me_cmp = avio_rb32(pb);
  302. codec->me_subpel_quality = avio_rb32(pb);
  303. codec->me_range = avio_rb32(pb);
  304. codec->keyint_min = avio_rb32(pb);
  305. codec->scenechange_threshold = avio_rb32(pb);
  306. codec->b_frame_strategy = avio_rb32(pb);
  307. codec->qcompress = av_int2double(avio_rb64(pb));
  308. codec->qblur = av_int2double(avio_rb64(pb));
  309. codec->max_qdiff = avio_rb32(pb);
  310. codec->refs = avio_rb32(pb);
  311. break;
  312. case AVMEDIA_TYPE_AUDIO:
  313. codec->sample_rate = avio_rb32(pb);
  314. codec->channels = avio_rl16(pb);
  315. codec->frame_size = avio_rl16(pb);
  316. break;
  317. default:
  318. goto fail;
  319. }
  320. if (codec->flags & CODEC_FLAG_GLOBAL_HEADER) {
  321. codec->extradata_size = avio_rb32(pb);
  322. codec->extradata = av_malloc(codec->extradata_size);
  323. if (!codec->extradata)
  324. return AVERROR(ENOMEM);
  325. avio_read(pb, codec->extradata, codec->extradata_size);
  326. }
  327. }
  328. /* get until end of block reached */
  329. while ((avio_tell(pb) % ffm->packet_size) != 0)
  330. avio_r8(pb);
  331. /* init packet demux */
  332. ffm->packet_ptr = ffm->packet;
  333. ffm->packet_end = ffm->packet;
  334. ffm->frame_offset = 0;
  335. ffm->dts = 0;
  336. ffm->read_state = READ_HEADER;
  337. ffm->first_packet = 1;
  338. return 0;
  339. fail:
  340. ffm_close(s);
  341. return -1;
  342. }
  343. /* return < 0 if eof */
  344. static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
  345. {
  346. int size;
  347. FFMContext *ffm = s->priv_data;
  348. int duration, ret;
  349. switch(ffm->read_state) {
  350. case READ_HEADER:
  351. if ((ret = ffm_is_avail_data(s, FRAME_HEADER_SIZE+4)) < 0)
  352. return ret;
  353. av_dlog(s, "pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
  354. avio_tell(s->pb), s->pb->pos, ffm->write_index, ffm->file_size);
  355. if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) !=
  356. FRAME_HEADER_SIZE)
  357. return -1;
  358. if (ffm->header[1] & FLAG_DTS)
  359. if (ffm_read_data(s, ffm->header+16, 4, 1) != 4)
  360. return -1;
  361. ffm->read_state = READ_DATA;
  362. /* fall thru */
  363. case READ_DATA:
  364. size = AV_RB24(ffm->header + 2);
  365. if ((ret = ffm_is_avail_data(s, size)) < 0)
  366. return ret;
  367. duration = AV_RB24(ffm->header + 5);
  368. av_new_packet(pkt, size);
  369. pkt->stream_index = ffm->header[0];
  370. if ((unsigned)pkt->stream_index >= s->nb_streams) {
  371. av_log(s, AV_LOG_ERROR, "invalid stream index %d\n", pkt->stream_index);
  372. av_free_packet(pkt);
  373. ffm->read_state = READ_HEADER;
  374. return -1;
  375. }
  376. pkt->pos = avio_tell(s->pb);
  377. if (ffm->header[1] & FLAG_KEY_FRAME)
  378. pkt->flags |= AV_PKT_FLAG_KEY;
  379. ffm->read_state = READ_HEADER;
  380. if (ffm_read_data(s, pkt->data, size, 0) != size) {
  381. /* bad case: desynchronized packet. we cancel all the packet loading */
  382. av_free_packet(pkt);
  383. return -1;
  384. }
  385. pkt->pts = AV_RB64(ffm->header+8);
  386. if (ffm->header[1] & FLAG_DTS)
  387. pkt->dts = pkt->pts - AV_RB32(ffm->header+16);
  388. else
  389. pkt->dts = pkt->pts;
  390. pkt->duration = duration;
  391. break;
  392. }
  393. return 0;
  394. }
  395. /* seek to a given time in the file. The file read pointer is
  396. positioned at or before pts. XXX: the following code is quite
  397. approximative */
  398. static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags)
  399. {
  400. FFMContext *ffm = s->priv_data;
  401. int64_t pos_min, pos_max, pos;
  402. int64_t pts_min, pts_max, pts;
  403. double pos1;
  404. av_dlog(s, "wanted_pts=%0.6f\n", wanted_pts / 1000000.0);
  405. /* find the position using linear interpolation (better than
  406. dichotomy in typical cases) */
  407. pos_min = FFM_PACKET_SIZE;
  408. pos_max = ffm->file_size - FFM_PACKET_SIZE;
  409. while (pos_min <= pos_max) {
  410. pts_min = get_dts(s, pos_min);
  411. pts_max = get_dts(s, pos_max);
  412. /* linear interpolation */
  413. pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) /
  414. (double)(pts_max - pts_min);
  415. pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE;
  416. if (pos <= pos_min)
  417. pos = pos_min;
  418. else if (pos >= pos_max)
  419. pos = pos_max;
  420. pts = get_dts(s, pos);
  421. /* check if we are lucky */
  422. if (pts == wanted_pts) {
  423. goto found;
  424. } else if (pts > wanted_pts) {
  425. pos_max = pos - FFM_PACKET_SIZE;
  426. } else {
  427. pos_min = pos + FFM_PACKET_SIZE;
  428. }
  429. }
  430. pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max;
  431. found:
  432. if (ffm_seek1(s, pos) < 0)
  433. return -1;
  434. /* reset read state */
  435. ffm->read_state = READ_HEADER;
  436. ffm->packet_ptr = ffm->packet;
  437. ffm->packet_end = ffm->packet;
  438. ffm->first_packet = 1;
  439. return 0;
  440. }
  441. static int ffm_probe(AVProbeData *p)
  442. {
  443. if (
  444. p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' &&
  445. p->buf[3] == '1')
  446. return AVPROBE_SCORE_MAX + 1;
  447. return 0;
  448. }
  449. AVInputFormat ff_ffm_demuxer = {
  450. .name = "ffm",
  451. .long_name = NULL_IF_CONFIG_SMALL("FFM (AVserver live feed)"),
  452. .priv_data_size = sizeof(FFMContext),
  453. .read_probe = ffm_probe,
  454. .read_header = ffm_read_header,
  455. .read_packet = ffm_read_packet,
  456. .read_close = ffm_close,
  457. .read_seek = ffm_seek,
  458. };