Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Unified Diff: source/patched-ffmpeg-mt/libavformat/rtpenc_xiph.c

Issue 3384002: ffmpeg source update for sep 09 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/patched-ffmpeg-mt/libavformat/rtpenc_vp8.c ('k') | source/patched-ffmpeg-mt/libavformat/rtpproto.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/patched-ffmpeg-mt/libavformat/rtpenc_xiph.c
===================================================================
--- source/patched-ffmpeg-mt/libavformat/rtpenc_xiph.c (revision 59334)
+++ source/patched-ffmpeg-mt/libavformat/rtpenc_xiph.c (working copy)
@@ -52,13 +52,13 @@
break;
}
- // Set ident. Must match the one in sdp.c
+ // Set ident.
// Probably need a non-fixed way of generating
// this, but it has to be done in SDP and passed in from there.
q = s->buf;
- *q++ = 0xfe;
- *q++ = 0xcd;
- *q++ = 0xba;
+ *q++ = (RTP_XIPH_IDENT >> 16) & 0xff;
+ *q++ = (RTP_XIPH_IDENT >> 8) & 0xff;
+ *q++ = (RTP_XIPH_IDENT ) & 0xff;
// set fragment
// 0 - whole frame (possibly multiple frames)
@@ -68,12 +68,13 @@
frag = size <= max_pkt_size ? 0 : 1;
if (!frag && !xdt) { // do we have a whole frame of raw data?
- unsigned end_ptr = (unsigned)s->buf + 6 + max_pkt_size; // what we're allowed to write
- unsigned ptr = (unsigned)s->buf_ptr + 2 + size; // what we're going to write
+ uint8_t *end_ptr = s->buf + 6 + max_pkt_size; // what we're allowed to write
+ uint8_t *ptr = s->buf_ptr + 2 + size; // what we're going to write
int remaining = end_ptr - ptr;
+ assert(s->num_frames <= s->max_frames_per_packet);
if ((s->num_frames > 0 && remaining < 0) ||
- s->num_frames >= s->max_frames_per_packet) {
+ s->num_frames == s->max_frames_per_packet) {
// send previous packets now; no room for new data
ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, 0);
s->num_frames = 0;
« no previous file with comments | « source/patched-ffmpeg-mt/libavformat/rtpenc_vp8.c ('k') | source/patched-ffmpeg-mt/libavformat/rtpproto.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698