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.

179 lines
5.0KB

  1. /*
  2. * Microsoft Windows ICO demuxer
  3. * Copyright (c) 2011 Peter Ross (pross@xvid.org)
  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. /**
  22. * @file
  23. * Microsoft Windows ICO demuxer
  24. */
  25. #include "libavutil/intreadwrite.h"
  26. #include "libavcodec/bytestream.h"
  27. #include "libavcodec/bmp.h"
  28. #include "avformat.h"
  29. #include "internal.h"
  30. typedef struct {
  31. int offset;
  32. int size;
  33. int nb_pal;
  34. } IcoImage;
  35. typedef struct {
  36. int current_image;
  37. int nb_images;
  38. IcoImage * images;
  39. } IcoDemuxContext;
  40. static int probe(AVProbeData *p)
  41. {
  42. if (AV_RL16(p->buf) == 0 && AV_RL16(p->buf + 2) == 1 && AV_RL16(p->buf + 4))
  43. return AVPROBE_SCORE_MAX / 3;
  44. return 0;
  45. }
  46. static int read_header(AVFormatContext *s, AVFormatParameters *ap)
  47. {
  48. IcoDemuxContext *ico = s->priv_data;
  49. AVIOContext *pb = s->pb;
  50. int i;
  51. avio_skip(pb, 4);
  52. ico->nb_images = avio_rl16(pb);
  53. ico->images = av_malloc(ico->nb_images * sizeof(IcoImage));
  54. if (!ico->images)
  55. return AVERROR(ENOMEM);
  56. for (i = 0; i < ico->nb_images; i++) {
  57. AVStream *st;
  58. if (avio_seek(pb, 6 + i * 16, SEEK_SET) < 0)
  59. break;
  60. st = avformat_new_stream(s, NULL);
  61. if (!st)
  62. return AVERROR(ENOMEM);
  63. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  64. st->codec->width = avio_r8(pb);
  65. st->codec->height = avio_r8(pb);
  66. ico->images[i].nb_pal = avio_r8(pb);
  67. if (ico->images[i].nb_pal == 255)
  68. ico->images[i].nb_pal = 0;
  69. avio_skip(pb, 5);
  70. ico->images[i].size = avio_rl32(pb);
  71. ico->images[i].offset = avio_rl32(pb);
  72. if (avio_seek(pb, ico->images[i].offset, SEEK_SET) < 0)
  73. break;
  74. switch(avio_rl32(pb)) {
  75. case MKTAG(0x89, 'P', 'N', 'G'):
  76. st->codec->codec_id = CODEC_ID_PNG;
  77. st->codec->width = 0;
  78. st->codec->height = 0;
  79. break;
  80. case 40:
  81. if (ico->images[i].size < 40)
  82. return AVERROR_INVALIDDATA;
  83. st->codec->codec_id = CODEC_ID_BMP;
  84. if (!st->codec->width || !st->codec->height) {
  85. st->codec->width = avio_rl32(pb);
  86. st->codec->height = avio_rl32(pb) / 2;
  87. }
  88. break;
  89. default:
  90. av_log_ask_for_sample(s, "unsupported codec\n");
  91. return AVERROR_INVALIDDATA;
  92. }
  93. }
  94. return 0;
  95. }
  96. static int read_packet(AVFormatContext *s, AVPacket *pkt)
  97. {
  98. IcoDemuxContext *ico = s->priv_data;
  99. IcoImage *image;
  100. AVIOContext *pb = s->pb;
  101. AVStream *st = s->streams[0];
  102. int ret;
  103. if (ico->current_image >= ico->nb_images)
  104. return AVERROR(EIO);
  105. image = &ico->images[ico->current_image];
  106. if ((ret = avio_seek(pb, image->offset, SEEK_SET)) < 0)
  107. return ret;
  108. if (s->streams[ico->current_image]->codec->codec_id == CODEC_ID_PNG) {
  109. if ((ret = av_get_packet(pb, pkt, image->size)) < 0)
  110. return ret;
  111. } else {
  112. uint8_t *buf;
  113. if ((ret = av_new_packet(pkt, 14 + image->size)) < 0)
  114. return ret;
  115. buf = pkt->data;
  116. /* add BMP header */
  117. bytestream_put_byte(&buf, 'B');
  118. bytestream_put_byte(&buf, 'M');
  119. bytestream_put_le32(&buf, pkt->size);
  120. bytestream_put_le16(&buf, 0);
  121. bytestream_put_le16(&buf, 0);
  122. bytestream_put_le32(&buf, 0);
  123. if ((ret = avio_read(pb, buf, image->size)) < 0)
  124. return ret;
  125. st->codec->bits_per_coded_sample = AV_RL16(buf + 14);
  126. if (AV_RL32(buf + 32))
  127. image->nb_pal = AV_RL32(buf + 32);
  128. if (st->codec->bits_per_coded_sample <= 8 && !image->nb_pal) {
  129. image->nb_pal = 1 << st->codec->bits_per_coded_sample;
  130. AV_WL32(buf + 32, image->nb_pal);
  131. }
  132. AV_WL32(buf - 4, 14 + 40 + image->nb_pal * 4);
  133. AV_WL32(buf + 8, AV_RL32(buf + 8) / 2);
  134. }
  135. pkt->stream_index = ico->current_image++;
  136. pkt->flags |= AV_PKT_FLAG_KEY;
  137. return 0;
  138. }
  139. AVInputFormat ff_ico_demuxer = {
  140. .name = "ico",
  141. .long_name = NULL_IF_CONFIG_SMALL("Microsoft Windows ICO"),
  142. .priv_data_size = sizeof(IcoDemuxContext),
  143. .read_probe = probe,
  144. .read_header = read_header,
  145. .read_packet = read_packet,
  146. .flags = AVFMT_NOTIMESTAMPS,
  147. };