[Ffmpeg-cvslog] CVS: ffmpeg/libavformat rtp.c,1.23,1.24
François Revol CVS
mmu_man
Wed Mar 1 23:45:30 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv32421/libavformat
Modified Files:
rtp.c
Log Message:
fix debug code: do not try to take st->codec if st is NULL. This makes ffplay give me pics from FreeBoxTV \o/
Index: rtp.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/rtp.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- rtp.c 12 Jan 2006 22:43:25 -0000 1.23
+++ rtp.c 1 Mar 2006 22:45:27 -0000 1.24
@@ -402,9 +402,11 @@
/* NOTE: we can handle only one payload type */
if (s->payload_type != payload_type)
return -1;
+
+ st = s->st;
#if defined(DEBUG) || 1
if (seq != ((s->seq + 1) & 0xffff)) {
- av_log(s->st->codec, AV_LOG_ERROR, "RTP: PT=%02x: bad cseq %04x expected=%04x\n",
+ av_log(st?st->codec:NULL, AV_LOG_ERROR, "RTP: PT=%02x: bad cseq %04x expected=%04x\n",
payload_type, seq, ((s->seq + 1) & 0xffff));
}
#endif
@@ -412,7 +414,6 @@
len -= 12;
buf += 12;
- st = s->st;
if (!st) {
/* specific MPEG2TS demux support */
ret = mpegts_parse_packet(s->ts, pkt, buf, len);
More information about the ffmpeg-cvslog
mailing list