rtpenc_h264.c 3.37 KB
Newer Older
1 2
/*
 * RTP packetization for H.264 (RFC3984)
3
 * Copyright (c) 2008 Luca Abeni
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * 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
 */

/**
23
 * @file
24 25 26 27 28 29
 * @brief H.264 packetization
 * @author Luca Abeni <lucabe72@email.it>
 */

#include "avformat.h"
#include "avc.h"
30
#include "rtpenc.h"
31

Reimar Döffinger's avatar
Reimar Döffinger committed
32
static const uint8_t *avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_length_size)
33
{
34
    unsigned int res = 0;
35

36
    if (end - start < nal_length_size)
37
        return NULL;
38
    while (nal_length_size--)
39 40
        res = (res << 8) | *start++;

41
    if (res > end - start)
42 43
        return NULL;

44
    return start + res;
45 46
}

47 48
static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last)
{
49
    RTPMuxContext *s = s1->priv_data;
50 51 52 53 54 55 56 57

    av_log(s1, AV_LOG_DEBUG, "Sending NAL %x of len %d M=%d\n", buf[0] & 0x1F, size, last);
    if (size <= s->max_payload_size) {
        ff_rtp_send_data(s1, buf, size, last);
    } else {
        uint8_t type = buf[0] & 0x1F;
        uint8_t nri = buf[0] & 0x60;

58 59 60 61 62 63
        if (s->flags & FF_RTP_FLAG_H264_MODE0) {
            av_log(s1, AV_LOG_ERROR,
                   "NAL size %d > %d, try -slice-max-size %d\n", size,
                   s->max_payload_size, s->max_payload_size);
            return;
        }
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
        av_log(s1, AV_LOG_DEBUG, "NAL size %d > %d\n", size, s->max_payload_size);
        s->buf[0] = 28;        /* FU Indicator; Type = 28 ---> FU-A */
        s->buf[0] |= nri;
        s->buf[1] = type;
        s->buf[1] |= 1 << 7;
        buf += 1;
        size -= 1;
        while (size + 2 > s->max_payload_size) {
            memcpy(&s->buf[2], buf, s->max_payload_size - 2);
            ff_rtp_send_data(s1, s->buf, s->max_payload_size, 0);
            buf += s->max_payload_size - 2;
            size -= s->max_payload_size - 2;
            s->buf[1] &= ~(1 << 7);
        }
        s->buf[1] |= 1 << 6;
        memcpy(&s->buf[2], buf, size);
80
        ff_rtp_send_data(s1, s->buf, size + 2, last);
81 82 83
    }
}

84
void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size)
85
{
86
    const uint8_t *r, *end = buf1 + size;
87
    RTPMuxContext *s = s1->priv_data;
88 89

    s->timestamp = s->cur_timestamp;
90 91 92 93
    if (s->nal_length_size)
        r = avc_mp4_find_startcode(buf1, end, s->nal_length_size) ? buf1 : end;
    else
        r = ff_avc_find_startcode(buf1, end);
94
    while (r < end) {
95
        const uint8_t *r1;
96

97
        if (s->nal_length_size) {
98 99 100
            r1 = avc_mp4_find_startcode(r, end, s->nal_length_size);
            if (!r1)
                r1 = end;
101 102
            r += s->nal_length_size;
        } else {
103 104
            while (!*(r++));
            r1 = ff_avc_find_startcode(r, end);
105
        }
106
        nal_send(s1, r, r1 - r, r1 == end);
107 108 109
        r = r1;
    }
}