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