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.

514 lines
15KB

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