OSDN Git Service

flvenc: use avcodec_get_name to report unsupported codecs.
[coroid/ffmpeg_saccubus.git] / libavformat / rtpenc_h264.c
1 /*
2  * RTP packetization for H.264 (RFC3984)
3  * Copyright (c) 2008 Luca Abeni
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * @brief H.264 packetization
25  * @author Luca Abeni <lucabe72@email.it>
26  */
27
28 #include "avformat.h"
29 #include "avc.h"
30 #include "rtpenc.h"
31
32 static const uint8_t *avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_length_size)
33 {
34     int res = 0;
35
36     if (end - start < nal_length_size) {
37         return NULL;
38     }
39     while (nal_length_size--) {
40         res = (res << 8) | *start++;
41     }
42
43     if (end - start < res) {
44         return NULL;
45     }
46
47     return res + start;
48 }
49
50 static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last)
51 {
52     RTPMuxContext *s = s1->priv_data;
53
54     av_log(s1, AV_LOG_DEBUG, "Sending NAL %x of len %d M=%d\n", buf[0] & 0x1F, size, last);
55     if (size <= s->max_payload_size) {
56         ff_rtp_send_data(s1, buf, size, last);
57     } else {
58         uint8_t type = buf[0] & 0x1F;
59         uint8_t nri = buf[0] & 0x60;
60
61         av_log(s1, AV_LOG_DEBUG, "NAL size %d > %d\n", size, s->max_payload_size);
62         s->buf[0] = 28;        /* FU Indicator; Type = 28 ---> FU-A */
63         s->buf[0] |= nri;
64         s->buf[1] = type;
65         s->buf[1] |= 1 << 7;
66         buf += 1;
67         size -= 1;
68         while (size + 2 > s->max_payload_size) {
69             memcpy(&s->buf[2], buf, s->max_payload_size - 2);
70             ff_rtp_send_data(s1, s->buf, s->max_payload_size, 0);
71             buf += s->max_payload_size - 2;
72             size -= s->max_payload_size - 2;
73             s->buf[1] &= ~(1 << 7);
74         }
75         s->buf[1] |= 1 << 6;
76         memcpy(&s->buf[2], buf, size);
77         ff_rtp_send_data(s1, s->buf, size + 2, last);
78     }
79 }
80
81 void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size)
82 {
83     const uint8_t *r;
84     RTPMuxContext *s = s1->priv_data;
85
86     s->timestamp = s->cur_timestamp;
87     r = s->nal_length_size ? (avc_mp4_find_startcode(buf1, buf1 + size, s->nal_length_size) ? buf1 : buf1 + size) : ff_avc_find_startcode(buf1, buf1 + size);
88     while (r < buf1 + size) {
89         const uint8_t *r1;
90
91         if (s->nal_length_size) {
92             r1 = avc_mp4_find_startcode(r, buf1 + size, s->nal_length_size);
93             if (!r1) {
94                 r1 = buf1 + size;
95             }
96             r += s->nal_length_size;
97         } else {
98             while(!*(r++));
99             r1 = ff_avc_find_startcode(r, buf1 + size);
100         }
101         nal_send(s1, r, r1 - r, (r1 == buf1 + size));
102         r = r1;
103     }
104 }