rtpdec_hevc.c 12.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * RTP parser for HEVC/H.265 payload format (draft version 6)
 * Copyright (c) 2014 Thomas Volkert <thomas@homer-conferencing.com>
 *
 * 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
 */

22
#include "libavutil/avassert.h"
23
#include "libavutil/avstring.h"
24
#include "libavutil/base64.h"
25
#include "libavcodec/get_bits.h"
26

27 28
#include "avformat.h"
#include "rtpdec.h"
29
#include "rtpdec_formats.h"
30

31 32 33 34 35 36
#define RTP_HEVC_PAYLOAD_HEADER_SIZE       2
#define RTP_HEVC_FU_HEADER_SIZE            1
#define RTP_HEVC_DONL_FIELD_SIZE           2
#define RTP_HEVC_DOND_FIELD_SIZE           1
#define RTP_HEVC_AP_NALU_LENGTH_FIELD_SIZE 2
#define HEVC_SPECIFIED_NAL_UNIT_TYPES      48
37

38
/* SDP out-of-band signaling data */
39 40 41
struct PayloadContext {
    int using_donl_field;
    int profile_id;
42 43
    uint8_t *sps, *pps, *vps, *sei;
    int sps_size, pps_size, vps_size, sei_size;
44 45 46 47 48
};

static const uint8_t start_sequence[] = { 0x00, 0x00, 0x00, 0x01 };

static av_cold int hevc_sdp_parse_fmtp_config(AVFormatContext *s,
49 50
                                              AVStream *stream,
                                              PayloadContext *hevc_data,
51
                                              const char *attr, const char *value)
52 53 54 55 56
{
    /* profile-space: 0-3 */
    /* profile-id: 0-31 */
    if (!strcmp(attr, "profile-id")) {
        hevc_data->profile_id = atoi(value);
57
        av_log(s, AV_LOG_TRACE, "SDP: found profile-id: %d\n", hevc_data->profile_id);
58 59 60 61 62 63 64 65 66 67 68 69 70 71
    }

    /* tier-flag: 0-1 */
    /* level-id: 0-255 */
    /* interop-constraints: [base16] */
    /* profile-compatibility-indicator: [base16] */
    /* sprop-sub-layer-id: 0-6, defines highest possible value for TID, default: 6 */
    /* recv-sub-layer-id: 0-6 */
    /* max-recv-level-id: 0-255 */
    /* tx-mode: MSM,SSM */
    /* sprop-vps: [base64] */
    /* sprop-sps: [base64] */
    /* sprop-pps: [base64] */
    /* sprop-sei: [base64] */
72 73
    if (!strcmp(attr, "sprop-vps") || !strcmp(attr, "sprop-sps") ||
        !strcmp(attr, "sprop-pps") || !strcmp(attr, "sprop-sei")) {
74 75
        uint8_t **data_ptr = NULL;
        int *size_ptr = NULL;
76 77 78 79 80 81 82 83 84 85 86 87
        if (!strcmp(attr, "sprop-vps")) {
            data_ptr = &hevc_data->vps;
            size_ptr = &hevc_data->vps_size;
        } else if (!strcmp(attr, "sprop-sps")) {
            data_ptr = &hevc_data->sps;
            size_ptr = &hevc_data->sps_size;
        } else if (!strcmp(attr, "sprop-pps")) {
            data_ptr = &hevc_data->pps;
            size_ptr = &hevc_data->pps_size;
        } else if (!strcmp(attr, "sprop-sei")) {
            data_ptr = &hevc_data->sei;
            size_ptr = &hevc_data->sei_size;
88 89
        } else
            av_assert0(0);
90

91 92
        ff_h264_parse_sprop_parameter_sets(s, data_ptr,
                                           size_ptr, value);
93 94
    }

95 96 97 98 99 100 101 102 103 104 105
    /* max-lsr, max-lps, max-cpb, max-dpb, max-br, max-tr, max-tc */
    /* max-fps */

    /* sprop-max-don-diff: 0-32767

         When the RTP stream depends on one or more other RTP
         streams (in this case tx-mode MUST be equal to "MSM" and
         MSM is in use), this parameter MUST be present and the
         value MUST be greater than 0.
    */
    if (!strcmp(attr, "sprop-max-don-diff")) {
106
        if (atoi(value) > 0)
107
            hevc_data->using_donl_field = 1;
108
        av_log(s, AV_LOG_TRACE, "Found sprop-max-don-diff in SDP, DON field usage is: %d\n",
109
                hevc_data->using_donl_field);
110 111 112 113
    }

    /* sprop-depack-buf-nalus: 0-32767 */
    if (!strcmp(attr, "sprop-depack-buf-nalus")) {
114
        if (atoi(value) > 0)
115
            hevc_data->using_donl_field = 1;
116
        av_log(s, AV_LOG_TRACE, "Found sprop-depack-buf-nalus in SDP, DON field usage is: %d\n",
117
                hevc_data->using_donl_field);
118 119 120 121 122 123 124 125 126 127 128 129 130
    }

    /* sprop-depack-buf-bytes: 0-4294967295 */
    /* depack-buf-cap */
    /* sprop-segmentation-id: 0-3 */
    /* sprop-spatial-segmentation-idc: [base16] */
    /* dec-parallel-ca: */
    /* include-dph */

    return 0;
}

static av_cold int hevc_parse_sdp_line(AVFormatContext *ctx, int st_index,
131
                                       PayloadContext *hevc_data, const char *line)
132 133
{
    AVStream *current_stream;
134
    AVCodecParameters *par;
135 136 137 138 139 140
    const char *sdp_line_ptr = line;

    if (st_index < 0)
        return 0;

    current_stream = ctx->streams[st_index];
141
    par  = current_stream->codecpar;
142 143

    if (av_strstart(sdp_line_ptr, "framesize:", &sdp_line_ptr)) {
144
        ff_h264_parse_framesize(par, sdp_line_ptr);
145
    } else if (av_strstart(sdp_line_ptr, "fmtp:", &sdp_line_ptr)) {
146 147 148 149
        int ret = ff_parse_fmtp(ctx, current_stream, hevc_data, sdp_line_ptr,
                                hevc_sdp_parse_fmtp_config);
        if (hevc_data->vps_size || hevc_data->sps_size ||
            hevc_data->pps_size || hevc_data->sei_size) {
150 151 152 153 154 155
            av_freep(&par->extradata);
            par->extradata_size = hevc_data->vps_size + hevc_data->sps_size +
                                  hevc_data->pps_size + hevc_data->sei_size;
            par->extradata = av_malloc(par->extradata_size +
                                       AV_INPUT_BUFFER_PADDING_SIZE);
            if (!par->extradata) {
156
                ret = AVERROR(ENOMEM);
157
                par->extradata_size = 0;
158 159
            } else {
                int pos = 0;
160
                memcpy(par->extradata + pos, hevc_data->vps, hevc_data->vps_size);
161
                pos += hevc_data->vps_size;
162
                memcpy(par->extradata + pos, hevc_data->sps, hevc_data->sps_size);
163
                pos += hevc_data->sps_size;
164
                memcpy(par->extradata + pos, hevc_data->pps, hevc_data->pps_size);
165
                pos += hevc_data->pps_size;
166
                memcpy(par->extradata + pos, hevc_data->sei, hevc_data->sei_size);
167
                pos += hevc_data->sei_size;
168
                memset(par->extradata + pos, 0, AV_INPUT_BUFFER_PADDING_SIZE);
169 170 171 172 173 174 175 176 177 178 179 180
            }

            av_freep(&hevc_data->vps);
            av_freep(&hevc_data->sps);
            av_freep(&hevc_data->pps);
            av_freep(&hevc_data->sei);
            hevc_data->vps_size = 0;
            hevc_data->sps_size = 0;
            hevc_data->pps_size = 0;
            hevc_data->sei_size = 0;
        }
        return ret;
181 182 183 184 185 186 187 188 189 190 191 192 193 194
    }

    return 0;
}

static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx,
                              AVStream *st, AVPacket *pkt, uint32_t *timestamp,
                              const uint8_t *buf, int len, uint16_t seq,
                              int flags)
{
    const uint8_t *rtp_pl = buf;
    int tid, lid, nal_type;
    int first_fragment, last_fragment, fu_type;
    uint8_t new_nal_header[2];
195
    int res = 0;
196

197 198
    /* sanity check for size of input packet: 1 byte payload at least */
    if (len < RTP_HEVC_PAYLOAD_HEADER_SIZE + 1) {
199 200 201 202 203
        av_log(ctx, AV_LOG_ERROR, "Too short RTP/HEVC packet, got %d bytes\n", len);
        return AVERROR_INVALIDDATA;
    }

    /*
204 205 206 207 208 209 210 211 212 213 214 215 216
     * decode the HEVC payload header according to section 4 of draft version 6:
     *
     *    0                   1
     *    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
     *   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     *   |F|   Type    |  LayerId  | TID |
     *   +-------------+-----------------+
     *
     *      Forbidden zero (F): 1 bit
     *      NAL unit type (Type): 6 bits
     *      NUH layer ID (LayerId): 6 bits
     *      NUH temporal ID plus 1 (TID): 3 bits
     */
217 218 219 220 221
    nal_type =  (buf[0] >> 1) & 0x3f;
    lid  = ((buf[0] << 5) & 0x20) | ((buf[1] >> 3) & 0x1f);
    tid  =   buf[1] & 0x07;

    /* sanity check for correct layer ID */
222
    if (lid) {
223
        /* future scalable or 3D video coding extensions */
224
        avpriv_report_missing_feature(ctx, "Multi-layer HEVC coding");
225 226 227 228
        return AVERROR_PATCHWELCOME;
    }

    /* sanity check for correct temporal ID */
229
    if (!tid) {
230 231 232 233 234
        av_log(ctx, AV_LOG_ERROR, "Illegal temporal ID in RTP/HEVC packet\n");
        return AVERROR_INVALIDDATA;
    }

    /* sanity check for correct NAL unit type */
235
    if (nal_type > 50) {
236 237 238 239
        av_log(ctx, AV_LOG_ERROR, "Unsupported (HEVC) NAL type (%d)\n", nal_type);
        return AVERROR_INVALIDDATA;
    }

240
    switch (nal_type) {
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    /* video parameter set (VPS) */
    case 32:
    /* sequence parameter set (SPS) */
    case 33:
    /* picture parameter set (PPS) */
    case 34:
    /*  supplemental enhancement information (SEI) */
    case 39:
    /* single NAL unit packet */
    default:
        /* create A/V packet */
        if ((res = av_new_packet(pkt, sizeof(start_sequence) + len)) < 0)
            return res;
        /* A/V packet: copy start sequence */
        memcpy(pkt->data, start_sequence, sizeof(start_sequence));
        /* A/V packet: copy NAL unit data */
        memcpy(pkt->data + sizeof(start_sequence), buf, len);

259 260 261 262 263 264 265
        break;
    /* aggregated packet (AP) - with two or more NAL units */
    case 48:
        /* pass the HEVC payload header */
        buf += RTP_HEVC_PAYLOAD_HEADER_SIZE;
        len -= RTP_HEVC_PAYLOAD_HEADER_SIZE;

266 267 268 269 270 271
        /* pass the HEVC DONL field */
        if (rtp_hevc_ctx->using_donl_field) {
            buf += RTP_HEVC_DONL_FIELD_SIZE;
            len -= RTP_HEVC_DONL_FIELD_SIZE;
        }

272
        res = ff_h264_handle_aggregated_packet(ctx, rtp_hevc_ctx, pkt, buf, len,
273
                                               rtp_hevc_ctx->using_donl_field ?
274
                                               RTP_HEVC_DOND_FIELD_SIZE : 0,
275 276 277
                                               NULL, 0);
        if (res < 0)
            return res;
278 279 280 281 282 283 284
        break;
    /* fragmentation unit (FU) */
    case 49:
        /* pass the HEVC payload header */
        buf += RTP_HEVC_PAYLOAD_HEADER_SIZE;
        len -= RTP_HEVC_PAYLOAD_HEADER_SIZE;

285
        /*
286 287 288 289 290 291 292 293 294 295 296
         *    decode the FU header
         *
         *     0 1 2 3 4 5 6 7
         *    +-+-+-+-+-+-+-+-+
         *    |S|E|  FuType   |
         *    +---------------+
         *
         *       Start fragment (S): 1 bit
         *       End fragment (E): 1 bit
         *       FuType: 6 bits
         */
297
        first_fragment = buf[0] & 0x80;
298 299
        last_fragment  = buf[0] & 0x40;
        fu_type        = buf[0] & 0x3f;
300 301 302 303 304

        /* pass the HEVC FU header */
        buf += RTP_HEVC_FU_HEADER_SIZE;
        len -= RTP_HEVC_FU_HEADER_SIZE;

305 306 307 308
        /* pass the HEVC DONL field */
        if (rtp_hevc_ctx->using_donl_field) {
            buf += RTP_HEVC_DONL_FIELD_SIZE;
            len -= RTP_HEVC_DONL_FIELD_SIZE;
309 310
        }

311
        av_log(ctx, AV_LOG_TRACE, " FU type %d with %d bytes\n", fu_type, len);
312

313
        /* sanity check for size of input packet: 1 byte payload at least */
314
        if (len <= 0) {
315 316 317 318
            if (len < 0) {
                av_log(ctx, AV_LOG_ERROR,
                       "Too short RTP/HEVC packet, got %d bytes of NAL unit type %d\n",
                       len, nal_type);
319
                return AVERROR_INVALIDDATA;
320
            } else {
321
                return AVERROR(EAGAIN);
322
            }
323 324
        }

325 326 327 328 329 330 331 332
        if (first_fragment && last_fragment) {
            av_log(ctx, AV_LOG_ERROR, "Illegal combination of S and E bit in RTP/HEVC packet\n");
            return AVERROR_INVALIDDATA;
        }

        new_nal_header[0] = (rtp_pl[0] & 0x81) | (fu_type << 1);
        new_nal_header[1] = rtp_pl[1];

333 334
        res = ff_h264_handle_frag_packet(pkt, buf, len, first_fragment,
                                         new_nal_header, sizeof(new_nal_header));
335

336 337 338 339
        break;
    /* PACI packet */
    case 50:
        /* Temporal scalability control information (TSCI) */
340
        avpriv_report_missing_feature(ctx, "PACI packets for RTP/HEVC");
341 342 343 344 345 346 347 348 349 350 351 352
        res = AVERROR_PATCHWELCOME;
        break;
    }

    pkt->stream_index = st->index;

    return res;
}

RTPDynamicProtocolHandler ff_hevc_dynamic_handler = {
    .enc_name         = "H265",
    .codec_type       = AVMEDIA_TYPE_VIDEO,
353
    .codec_id         = AV_CODEC_ID_HEVC,
354
    .need_parsing     = AVSTREAM_PARSE_FULL,
355
    .priv_data_size   = sizeof(PayloadContext),
356
    .parse_sdp_a_line = hevc_parse_sdp_line,
357
    .parse_packet     = hevc_handle_packet,
358
};