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.

183 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 / 4;
  44. return 0;
  45. }
  46. static int read_header(AVFormatContext *s)
  47. {
  48. IcoDemuxContext *ico = s->priv_data;
  49. AVIOContext *pb = s->pb;
  50. int i, codec;
  51. avio_skip(pb, 4);
  52. ico->nb_images = avio_rl16(pb);
  53. ico->images = av_malloc_array(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. int tmp;
  59. if (avio_seek(pb, 6 + i * 16, SEEK_SET) < 0)
  60. break;
  61. st = avformat_new_stream(s, NULL);
  62. if (!st)
  63. return AVERROR(ENOMEM);
  64. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  65. st->codec->width = avio_r8(pb);
  66. st->codec->height = avio_r8(pb);
  67. ico->images[i].nb_pal = avio_r8(pb);
  68. if (ico->images[i].nb_pal == 255)
  69. ico->images[i].nb_pal = 0;
  70. avio_skip(pb, 5);
  71. ico->images[i].size = avio_rl32(pb);
  72. ico->images[i].offset = avio_rl32(pb);
  73. if (avio_seek(pb, ico->images[i].offset, SEEK_SET) < 0)
  74. break;
  75. codec = avio_rl32(pb);
  76. switch (codec) {
  77. case MKTAG(0x89, 'P', 'N', 'G'):
  78. st->codec->codec_id = AV_CODEC_ID_PNG;
  79. st->codec->width = 0;
  80. st->codec->height = 0;
  81. break;
  82. case 40:
  83. if (ico->images[i].size < 40)
  84. return AVERROR_INVALIDDATA;
  85. st->codec->codec_id = AV_CODEC_ID_BMP;
  86. tmp = avio_rl32(pb);
  87. if (tmp)
  88. st->codec->width = tmp;
  89. tmp = avio_rl32(pb);
  90. if (tmp)
  91. st->codec->height = tmp / 2;
  92. break;
  93. default:
  94. avpriv_request_sample(s, "codec %d", codec);
  95. return AVERROR_INVALIDDATA;
  96. }
  97. }
  98. return 0;
  99. }
  100. static int read_packet(AVFormatContext *s, AVPacket *pkt)
  101. {
  102. IcoDemuxContext *ico = s->priv_data;
  103. IcoImage *image;
  104. AVIOContext *pb = s->pb;
  105. AVStream *st = s->streams[0];
  106. int ret;
  107. if (ico->current_image >= ico->nb_images)
  108. return AVERROR(EIO);
  109. image = &ico->images[ico->current_image];
  110. if ((ret = avio_seek(pb, image->offset, SEEK_SET)) < 0)
  111. return ret;
  112. if (s->streams[ico->current_image]->codec->codec_id == AV_CODEC_ID_PNG) {
  113. if ((ret = av_get_packet(pb, pkt, image->size)) < 0)
  114. return ret;
  115. } else {
  116. uint8_t *buf;
  117. if ((ret = av_new_packet(pkt, 14 + image->size)) < 0)
  118. return ret;
  119. buf = pkt->data;
  120. /* add BMP header */
  121. bytestream_put_byte(&buf, 'B');
  122. bytestream_put_byte(&buf, 'M');
  123. bytestream_put_le32(&buf, pkt->size);
  124. bytestream_put_le16(&buf, 0);
  125. bytestream_put_le16(&buf, 0);
  126. bytestream_put_le32(&buf, 0);
  127. if ((ret = avio_read(pb, buf, image->size)) < 0)
  128. return ret;
  129. st->codec->bits_per_coded_sample = AV_RL16(buf + 14);
  130. if (AV_RL32(buf + 32))
  131. image->nb_pal = AV_RL32(buf + 32);
  132. if (st->codec->bits_per_coded_sample <= 8 && !image->nb_pal) {
  133. image->nb_pal = 1 << st->codec->bits_per_coded_sample;
  134. AV_WL32(buf + 32, image->nb_pal);
  135. }
  136. AV_WL32(buf - 4, 14 + 40 + image->nb_pal * 4);
  137. AV_WL32(buf + 8, AV_RL32(buf + 8) / 2);
  138. }
  139. pkt->stream_index = ico->current_image++;
  140. pkt->flags |= AV_PKT_FLAG_KEY;
  141. return 0;
  142. }
  143. AVInputFormat ff_ico_demuxer = {
  144. .name = "ico",
  145. .long_name = NULL_IF_CONFIG_SMALL("Microsoft Windows ICO"),
  146. .priv_data_size = sizeof(IcoDemuxContext),
  147. .read_probe = probe,
  148. .read_header = read_header,
  149. .read_packet = read_packet,
  150. .flags = AVFMT_NOTIMESTAMPS,
  151. };