aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/dnxuc_parser.c
blob: 12472c7a2dc74acb8ced6bc8db166d87f1f13cb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Avid DNxUncomressed / SMPTE RDD 50 parser
 * Copyright (c) 2024 Martin Schitter
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * 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.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/*
 This parser for DNxUncompressed video data is mostly based on
 reverse engineering of output generated by DaVinci Resolve 19
 but was later also checked against the SMPTE RDD 50 specification.

 Limitations: Multiple image planes are not supported.
*/

#include "avcodec.h"
#include "libavutil/intreadwrite.h"

typedef struct DNxUcParseContext {
    uint32_t fourcc_tag;
    uint32_t width;
    uint32_t height;
    uint32_t nr_bytes;
} DNxUcParseContext;

/*
DNxUncompressed frame data comes wrapped in nested boxes of metadata
(box structure: len + fourcc marker + data):

[0-4]   len of outer essence unit box (typically 37 bytes of header + frame data)
[4-7]   fourcc 'pack'

[8-11]  len of "signal info box" (always 21)
[12-15] fourcc 'sinf'
[16-19] frame width / line packing size
[20-23] frame hight / nr of lines
[24-27] fourcc pixel format indicator
[28]    frame_layout (0: progressive, 1: interlaced)

[29-32] len of "signal data box" (nr of frame data bytes + 8)
[33-36] fourcc 'sdat'
[37-..] frame data

A sequence of 'signal info'+'signal data' box pairs wrapped in
'icmp'(=image component) boxes can be utilized to compose more
complex multi plane images.
This feature is only partially supported in the present implementation.
We never pick more than the first pair of info and image data enclosed
in this way.
*/

static int dnxuc_parse(AVCodecParserContext *s,
                    AVCodecContext *avctx,
                    const uint8_t **poutbuf, int *poutbuf_size,
                    const uint8_t *buf, int buf_size)
{
    const int HEADER_SIZE = 37;
    int icmp_offset = 0;

    DNxUcParseContext *pc;
    pc = (DNxUcParseContext *) s->priv_data;

    if (!buf_size) {
        return 0;
    }
    if (buf_size > 16 && MKTAG('i','c','m','p') == AV_RL32(buf+12)){
        icmp_offset += 8;
    }
    if ( buf_size < 37 + icmp_offset /* check metadata structure expectations */
        || MKTAG('p','a','c','k') != AV_RL32(buf+4+icmp_offset)
        || MKTAG('s','i','n','f') != AV_RL32(buf+12+icmp_offset)
        || MKTAG('s','d','a','t') != AV_RL32(buf+33+icmp_offset)){
            av_log(avctx, AV_LOG_ERROR, "can't read DNxUncompressed metadata.\n");
            *poutbuf_size = 0;
            return buf_size;
    }

    pc->fourcc_tag = AV_RL32(buf+24+icmp_offset);
    pc->width = AV_RL32(buf+16+icmp_offset);
    pc->height = AV_RL32(buf+20+icmp_offset);
    pc->nr_bytes = AV_RL32(buf+29+icmp_offset) - 8;

    if (!avctx->codec_tag) {
        av_log(avctx, AV_LOG_INFO, "dnxuc_parser: '%s' %dx%d %dbpp %d\n",
            av_fourcc2str(pc->fourcc_tag),
            pc->width, pc->height,
            (pc->nr_bytes*8)/(pc->width*pc->height),
            pc->nr_bytes);
        avctx->codec_tag = pc->fourcc_tag;
    }

    if (pc->nr_bytes > buf_size - HEADER_SIZE + icmp_offset){
        av_log(avctx, AV_LOG_ERROR, "Insufficient size of image essence data.\n");
        *poutbuf_size = 0;
        return buf_size;
    }

    *poutbuf = buf + HEADER_SIZE + icmp_offset;
    *poutbuf_size = pc->nr_bytes;

    return buf_size;
}

const AVCodecParser ff_dnxuc_parser = {
    .codec_ids      = { AV_CODEC_ID_DNXUC },
    .priv_data_size = sizeof(DNxUcParseContext),
    .parser_parse   = dnxuc_parse,
};