[FFmpeg-cvslog] r13905 - trunk/ffserver.c

bcoudurier subversion
Mon Jun 23 05:21:41 CEST 2008


Author: bcoudurier
Date: Mon Jun 23 05:21:40 2008
New Revision: 13905

Log:
fix compilation, this should be better

Modified:
   trunk/ffserver.c

Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c	(original)
+++ trunk/ffserver.c	Mon Jun 23 05:21:40 2008
@@ -2158,10 +2158,11 @@ static int http_prepare_data(HTTPContext
                         }
                     }
                 } else {
-                send_it:
                     AVCodecContext *codec;
-                    AVStream *ist = c->fmt_in->streams[source_index];
-                    AVStream *ost = ctx->streams[pkt.stream_index];
+                    AVStream *ist, *ost;
+                send_it:
+                    ist = c->fmt_in->streams[source_index];
+                    ost = ctx->streams[pkt.stream_index];
                     /* specific handling for RTP: we use several
                        output stream (one for each RTP
                        connection). XXX: need more abstract handling */




More information about the ffmpeg-cvslog mailing list