Update package changelog.
[profile/ivi/weston.git] / wcap / wcap-decode.c
1 /*
2  * Copyright © 2012 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation for any purpose is hereby granted without fee, provided
6  * that the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of the copyright holders not be used in
9  * advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission.  The copyright holders make
11  * no representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <stdint.h>
26 #include <sys/mman.h>
27 #include <sys/mman.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <unistd.h>
31 #include <string.h>
32 #include <fcntl.h>
33
34 #include <cairo.h>
35
36 #include "wcap-decode.h"
37
38 static void
39 wcap_decoder_decode_rectangle(struct wcap_decoder *decoder,
40                               struct wcap_rectangle *rect)
41 {
42         uint32_t v, *p = decoder->p, *d;
43         int width = rect->x2 - rect->x1, height = rect->y2 - rect->y1;
44         int x, i, j, k, l, count = width * height;
45         unsigned char r, g, b, dr, dg, db;
46
47         d = decoder->frame + (rect->y2 - 1) * decoder->width;
48         x = rect->x1;
49         i = 0;
50         while (i < count) {
51                 v = *p++;
52                 l = v >> 24;
53                 if (l < 0xe0) {
54                         j = l + 1;
55                 } else {
56                         j = 1 << (l - 0xe0 + 7);
57                 }
58
59                 dr = (v >> 16);
60                 dg = (v >>  8);
61                 db = (v >>  0);
62                 for (k = 0; k < j; k++) {
63                         r = (d[x] >> 16) + dr;
64                         g = (d[x] >>  8) + dg;
65                         b = (d[x] >>  0) + db;
66                         d[x] = 0xff000000 | (r << 16) | (g << 8) | b;
67                         x++;
68                         if (x == rect->x2) {
69                                 x = rect->x1;
70                                 d -= decoder->width;
71                         }
72                 }
73                 i += j;
74         }
75
76         if (i != count)
77                 printf("rle encoding longer than expected (%d expected %d)\n",
78                        i, count);
79
80         decoder->p = p;
81 }
82
83 int
84 wcap_decoder_get_frame(struct wcap_decoder *decoder)
85 {
86         struct wcap_rectangle *rects;
87         struct wcap_frame_header *header;
88         uint32_t i;
89
90         if (decoder->p == decoder->end)
91                 return 0;
92
93         header = decoder->p;
94         decoder->msecs = header->msecs;
95         decoder->count++;
96
97         rects = (void *) (header + 1);
98         decoder->p = (uint32_t *) (rects + header->nrects);
99         for (i = 0; i < header->nrects; i++)
100                 wcap_decoder_decode_rectangle(decoder, &rects[i]);
101
102         return 1;
103 }
104
105 struct wcap_decoder *
106 wcap_decoder_create(const char *filename)
107 {
108         struct wcap_decoder *decoder;
109         struct wcap_header *header;
110         int frame_size;
111         struct stat buf;
112
113         decoder = malloc(sizeof *decoder);
114         if (decoder == NULL)
115                 return NULL;
116
117         decoder->fd = open(filename, O_RDONLY);
118         if (decoder->fd == -1) {
119                 free(decoder);
120                 return NULL;
121         }
122
123         fstat(decoder->fd, &buf);
124         decoder->size = buf.st_size;
125         decoder->map = mmap(NULL, decoder->size,
126                             PROT_READ, MAP_PRIVATE, decoder->fd, 0);
127                 
128         header = decoder->map;
129         decoder->format = header->format;
130         decoder->count = 0;
131         decoder->width = header->width;
132         decoder->height = header->height;
133         decoder->p = header + 1;
134         decoder->end = decoder->map + decoder->size;
135
136         frame_size = header->width * header->height * 4;
137         decoder->frame = malloc(frame_size);
138         memset(decoder->frame, 0, frame_size);
139
140         return decoder;
141 }
142
143 void
144 wcap_decoder_destroy(struct wcap_decoder *decoder)
145 {
146         munmap(decoder->map, decoder->size);
147         free(decoder->frame);
148         free(decoder);
149 }