annotate rtp_mpv.c @ 2418:c13c82994800 libavformat

Correctly set the "P" field in the payload header
author lucabe
date Mon, 03 Sep 2007 07:14:10 +0000
parents 0b5863b939d3
children 584898b8189e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
1 /*
2406
18e94e5989d8 Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents: 2274
diff changeset
2 * RTP packetization for MPEG video
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
3 * Copyright (c) 2002 Fabrice Bellard.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
4 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
5 * This file is part of FFmpeg.
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
6 *
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
11 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
15 * Lesser General Public License for more details.
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
16 *
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
896
edbe5c3717f9 Update licensing information: The FSF changed postal address.
diego
parents: 885
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
20 */
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
21 #include "avformat.h"
1419
8fb4910bdcc0 Add support for H264 over RTP
gpoirier
parents: 1358
diff changeset
22 #include "rtp_internal.h"
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
23
2413
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
24 #include "mpegvideo.h"
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
25
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
26 /* NOTE: a single frame must be passed with sequence header if
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
27 needed. XXX: use slices. */
2406
18e94e5989d8 Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents: 2274
diff changeset
28 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size)
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
29 {
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
30 RTPDemuxContext *s = s1->priv_data;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
31 AVStream *st = s1->streams[0];
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
32 int len, h, max_packet_size;
65
a58a8a53eb46 * UINTX -> uintx_t INTX -> intx_t
kabi
parents: 0
diff changeset
33 uint8_t *q;
2418
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
34 int begin_of_slice, end_of_slice, frame_type;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
35
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
36 max_packet_size = s->max_payload_size;
2413
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
37 begin_of_slice = 1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
38 end_of_slice = 0;
2418
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
39 frame_type = 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
40
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
41 while (size > 0) {
2411
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
42 len = max_packet_size - 4;
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
43
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
44 if (len >= size) {
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
45 len = size;
2413
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
46 end_of_slice = 1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
47 } else {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
48 const uint8_t *r, *r1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
49 int start_code;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
50
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
51 r1 = buf1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
52 while (1) {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
53 start_code = -1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
54 r = ff_find_start_code(r1, buf1 + size, &start_code);
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
55 if((start_code & 0xFFFFFF00) == 0x100) {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
56 /* New start code found */
2418
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
57 if (start_code == 0x100) {
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
58 frame_type = (r[1] & 0x38) >> 3;
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
59 }
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
60
2413
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
61 if (r - buf1 < len) {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
62 /* The current slice fits in the packet */
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
63 if (begin_of_slice == 0) {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
64 /* no slice at the beginning of the packet... */
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
65 end_of_slice = 1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
66 len = r - buf1 - 4;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
67 break;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
68 }
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
69 r1 = r;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
70 } else {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
71 if (r - r1 < max_packet_size) {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
72 len = r1 - buf1 - 4;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
73 end_of_slice = 1;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
74 }
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
75 break;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
76 }
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
77 } else {
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
78 break;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
79 }
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
80 }
2411
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
81 }
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
82
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
83 h = 0;
2413
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
84 h |= begin_of_slice << 12;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
85 h |= end_of_slice << 11;
2418
c13c82994800 Correctly set the "P" field in the payload header
lucabe
parents: 2413
diff changeset
86 h |= frame_type << 8;
2411
9134c5f663bd Backport fix for mpegvideo rtp, fixes Issue119, original fix from Dario Gallucci <dariodotgallucciatpolito.it> in feng
lu_zero
parents: 2406
diff changeset
87
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
88 q = s->buf;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
89 *q++ = h >> 24;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
90 *q++ = h >> 16;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
91 *q++ = h >> 8;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
92 *q++ = h;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
93
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
94 memcpy(q, buf1, len);
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
95 q += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
96
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
97 /* 90 KHz time stamp */
885
da1d5db0ce5c COSMETICS: Remove all trailing whitespace.
diego
parents: 827
diff changeset
98 s->timestamp = s->base_timestamp +
820
feca73904e67 changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents: 777
diff changeset
99 av_rescale((int64_t)s->cur_timestamp * st->codec->time_base.num, 90000, st->codec->time_base.den); //FIXME pass timestamps
2406
18e94e5989d8 Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)
lucabe
parents: 2274
diff changeset
100 ff_rtp_send_data(s1, s->buf, q - s->buf, (len == size));
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
101
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
102 buf1 += len;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
103 size -= len;
2413
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
104 begin_of_slice = end_of_slice;
0b5863b939d3 Correct packetization for MPEG video frames, and correct setting of the
lucabe
parents: 2412
diff changeset
105 end_of_slice = 0;
0
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
106 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
107 s->cur_timestamp++;
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
108 }
05318cf2e886 renamed libav to libavformat
bellard
parents:
diff changeset
109
294
6091b76cfc2a added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents: 241
diff changeset
110