ffmdec.c 17 KB

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