dpx.c 6.56 KB
Newer Older
1 2 3 4
/*
 * DPX (.dpx) image decoder
 * Copyright (c) 2009 Jimmy Christensen
 *
5
 * This file is part of Libav.
6
 *
7
 * Libav is free software; you can redistribute it and/or
8 9 10 11
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
12
 * Libav is distributed in the hope that it will be useful,
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with Libav; if not, write to the Free Software
19 20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "libavutil/intreadwrite.h"
23
#include "libavutil/imgutils.h"
24 25
#include "bytestream.h"
#include "avcodec.h"
26
#include "internal.h"
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

static unsigned int read32(const uint8_t **ptr, int is_big)
{
    unsigned int temp;
    if (is_big) {
        temp = AV_RB32(*ptr);
    } else {
        temp = AV_RL32(*ptr);
    }
    *ptr += 4;
    return temp;
}

static inline unsigned make_16bit(unsigned value)
{
    // mask away invalid bits
    value &= 0xFFC0;
    // correctly expand to 16 bits
    return value + (value >> 10);
}

static int decode_frame(AVCodecContext *avctx,
                        void *data,
50
                        int *got_frame,
51 52 53
                        AVPacket *avpkt)
{
    const uint8_t *buf = avpkt->data;
54
    const uint8_t *buf_end = avpkt->data + avpkt->size;
55
    int buf_size       = avpkt->size;
56
    AVFrame *const p = data;
57 58
    uint8_t *ptr;

59 60
    unsigned int offset;
    int magic_num, endian;
61
    int x, y, ret;
62 63 64 65
    int w, h, stride, bits_per_color, descriptor, elements, target_packet_size, source_packet_size;

    unsigned int rgbBuffer;

66
    if (avpkt->size <= 1634) {
67 68 69 70
        av_log(avctx, AV_LOG_ERROR, "Packet too small for DPX header\n");
        return AVERROR_INVALIDDATA;
    }

71 72 73 74 75 76 77 78 79 80 81
    magic_num = AV_RB32(buf);
    buf += 4;

    /* Check if the files "magic number" is "SDPX" which means it uses
     * big-endian or XPDS which is for little-endian files */
    if (magic_num == AV_RL32("SDPX")) {
        endian = 0;
    } else if (magic_num == AV_RB32("SDPX")) {
        endian = 1;
    } else {
        av_log(avctx, AV_LOG_ERROR, "DPX marker not found\n");
82
        return AVERROR_INVALIDDATA;
83 84 85
    }

    offset = read32(&buf, endian);
86 87 88 89
    if (avpkt->size <= offset) {
        av_log(avctx, AV_LOG_ERROR, "Invalid data start offset\n");
        return AVERROR_INVALIDDATA;
    }
90 91 92 93 94 95 96 97 98 99 100
    // Need to end in 0x304 offset from start of file
    buf = avpkt->data + 0x304;
    w = read32(&buf, endian);
    h = read32(&buf, endian);

    // Need to end in 0x320 to read the descriptor
    buf += 20;
    descriptor = buf[0];

    // Need to end in 0x323 to read the bits per color
    buf += 3;
101
    avctx->bits_per_raw_sample =
102 103
    bits_per_color = buf[0];

104 105 106 107
    buf += 825;
    avctx->sample_aspect_ratio.num = read32(&buf, endian);
    avctx->sample_aspect_ratio.den = read32(&buf, endian);

108 109 110 111 112 113 114 115 116
    switch (descriptor) {
        case 51: // RGBA
            elements = 4;
            break;
        case 50: // RGB
            elements = 3;
            break;
        default:
            av_log(avctx, AV_LOG_ERROR, "Unsupported descriptor %d\n", descriptor);
117
            return AVERROR_INVALIDDATA;
118 119 120 121 122
    }

    switch (bits_per_color) {
        case 8:
            if (elements == 4) {
123
                avctx->pix_fmt = AV_PIX_FMT_RGBA;
124
            } else {
125
                avctx->pix_fmt = AV_PIX_FMT_RGB24;
126 127 128 129 130
            }
            source_packet_size = elements;
            target_packet_size = elements;
            break;
        case 10:
131
            avctx->pix_fmt = AV_PIX_FMT_RGB48;
132
            target_packet_size = 6;
133
            source_packet_size = 4;
134 135 136 137
            break;
        case 12:
        case 16:
            if (endian) {
138
                avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
139
            } else {
140
                avctx->pix_fmt = AV_PIX_FMT_RGB48LE;
141 142 143 144 145 146
            }
            target_packet_size = 6;
            source_packet_size = elements * 2;
            break;
        default:
            av_log(avctx, AV_LOG_ERROR, "Unsupported color depth : %d\n", bits_per_color);
147
            return AVERROR_INVALIDDATA;
148 149
    }

150
    if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
151
        return ret;
152

153 154
    ff_set_sar(avctx, avctx->sample_aspect_ratio);

155
    if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
156
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
157
        return ret;
158 159 160 161 162 163 164 165
    }

    // Move pointer to offset from start of file
    buf =  avpkt->data + offset;

    ptr    = p->data[0];
    stride = p->linesize[0];

166 167
    if (source_packet_size*avctx->width*avctx->height > buf_end - buf) {
        av_log(avctx, AV_LOG_ERROR, "Overread buffer. Invalid header?\n");
168
        return AVERROR_INVALIDDATA;
169
    }
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
    switch (bits_per_color) {
        case 10:
            for (x = 0; x < avctx->height; x++) {
               uint16_t *dst = (uint16_t*)ptr;
               for (y = 0; y < avctx->width; y++) {
                   rgbBuffer = read32(&buf, endian);
                   // Read out the 10-bit colors and convert to 16-bit
                   *dst++ = make_16bit(rgbBuffer >> 16);
                   *dst++ = make_16bit(rgbBuffer >>  6);
                   *dst++ = make_16bit(rgbBuffer <<  4);
               }
               ptr += stride;
            }
            break;
        case 8:
        case 12: // Treat 12-bit as 16-bit
        case 16:
            if (source_packet_size == target_packet_size) {
                for (x = 0; x < avctx->height; x++) {
                    memcpy(ptr, buf, target_packet_size*avctx->width);
                    ptr += stride;
                    buf += source_packet_size*avctx->width;
                }
            } else {
                for (x = 0; x < avctx->height; x++) {
                    uint8_t *dst = ptr;
                    for (y = 0; y < avctx->width; y++) {
                        memcpy(dst, buf, target_packet_size);
                        dst += target_packet_size;
                        buf += source_packet_size;
                    }
                    ptr += stride;
                }
            }
            break;
    }

207
    *got_frame = 1;
208 209 210 211

    return buf_size;
}

212
AVCodec ff_dpx_decoder = {
213
    .name           = "dpx",
214
    .long_name      = NULL_IF_CONFIG_SMALL("DPX image"),
215
    .type           = AVMEDIA_TYPE_VIDEO,
216
    .id             = AV_CODEC_ID_DPX,
217
    .decode         = decode_frame,
218
    .capabilities   = AV_CODEC_CAP_DR1,
219
};