ffmdec.c 15 KB

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