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.

540 lines
17KB

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