/src/ffmpeg/libswscale/gamma.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright (C) 2015 Pedro Arthur <bygrandao@gmail.com> |
3 | | * |
4 | | * This file is part of FFmpeg. |
5 | | * |
6 | | * FFmpeg is free software; you can redistribute it and/or |
7 | | * modify it under the terms of the GNU Lesser General Public |
8 | | * License as published by the Free Software Foundation; either |
9 | | * version 2.1 of the License, or (at your option) any later version. |
10 | | * |
11 | | * FFmpeg is distributed in the hope that it will be useful, |
12 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | | * Lesser General Public License for more details. |
15 | | * |
16 | | * You should have received a copy of the GNU Lesser General Public |
17 | | * License along with FFmpeg; if not, write to the Free Software |
18 | | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19 | | */ |
20 | | |
21 | | #include "libavutil/mem.h" |
22 | | #include "swscale_internal.h" |
23 | | |
24 | | typedef struct GammaContext |
25 | | { |
26 | | uint16_t *table; |
27 | | } GammaContext; |
28 | | |
29 | | // gamma_convert expects 16 bit rgb format |
30 | | // it writes directly in src slice thus it must be modifiable (done through cascade context) |
31 | | static int gamma_convert(SwsInternal *c, SwsFilterDescriptor *desc, int sliceY, int sliceH) |
32 | 0 | { |
33 | 0 | GammaContext *instance = desc->instance; |
34 | 0 | uint16_t *table = instance->table; |
35 | 0 | int srcW = desc->src->width; |
36 | |
|
37 | 0 | int i; |
38 | 0 | for (i = 0; i < sliceH; ++i) { |
39 | 0 | uint8_t ** src = desc->src->plane[0].line; |
40 | 0 | int src_pos = sliceY+i - desc->src->plane[0].sliceY; |
41 | |
|
42 | 0 | uint16_t *src1 = (uint16_t*)*(src+src_pos); |
43 | 0 | int j; |
44 | 0 | for (j = 0; j < srcW; ++j) { |
45 | 0 | uint16_t r = AV_RL16(src1 + j*4 + 0); |
46 | 0 | uint16_t g = AV_RL16(src1 + j*4 + 1); |
47 | 0 | uint16_t b = AV_RL16(src1 + j*4 + 2); |
48 | |
|
49 | 0 | AV_WL16(src1 + j*4 + 0, table[r]); |
50 | 0 | AV_WL16(src1 + j*4 + 1, table[g]); |
51 | 0 | AV_WL16(src1 + j*4 + 2, table[b]); |
52 | 0 | } |
53 | |
|
54 | 0 | } |
55 | 0 | return sliceH; |
56 | 0 | } |
57 | | |
58 | | |
59 | | int ff_init_gamma_convert(SwsFilterDescriptor *desc, SwsSlice * src, uint16_t *table) |
60 | 0 | { |
61 | 0 | GammaContext *li = av_malloc(sizeof(GammaContext)); |
62 | 0 | if (!li) |
63 | 0 | return AVERROR(ENOMEM); |
64 | 0 | li->table = table; |
65 | |
|
66 | 0 | desc->instance = li; |
67 | 0 | desc->src = src; |
68 | 0 | desc->dst = NULL; |
69 | 0 | desc->process = &gamma_convert; |
70 | |
|
71 | 0 | return 0; |
72 | 0 | } |