[FFmpeg-cvslog] r10283 - trunk/libavformat/rtp_mpv.c
lucabe
subversion
Mon Sep 3 09:22:37 CEST 2007
Author: lucabe
Date: Mon Sep 3 09:22:37 2007
New Revision: 10283
Log:
Set the "TR" field in the payload header
Modified:
trunk/libavformat/rtp_mpv.c
Modified: trunk/libavformat/rtp_mpv.c
==============================================================================
--- trunk/libavformat/rtp_mpv.c (original)
+++ trunk/libavformat/rtp_mpv.c Mon Sep 3 09:22:37 2007
@@ -31,12 +31,13 @@ void ff_rtp_send_mpegvideo(AVFormatConte
AVStream *st = s1->streams[0];
int len, h, max_packet_size;
uint8_t *q;
- int begin_of_slice, end_of_slice, frame_type;
+ int begin_of_slice, end_of_slice, frame_type, temporal_reference;
max_packet_size = s->max_payload_size;
begin_of_slice = 1;
end_of_slice = 0;
frame_type = 0;
+ temporal_reference = 0;
while (size > 0) {
len = max_packet_size - 4;
@@ -56,6 +57,7 @@ void ff_rtp_send_mpegvideo(AVFormatConte
/* New start code found */
if (start_code == 0x100) {
frame_type = (r[1] & 0x38) >> 3;
+ temporal_reference = (int)r[0] << 2 | r[1] >> 6;
}
if (r - buf1 < len) {
@@ -81,6 +83,7 @@ void ff_rtp_send_mpegvideo(AVFormatConte
}
h = 0;
+ h |= temporal_reference << 16;
h |= begin_of_slice << 12;
h |= end_of_slice << 11;
h |= frame_type << 8;
More information about the ffmpeg-cvslog
mailing list