OSDN Git Service

Remove use of MAX_STREAMS in MMSContext->streams[] array. Instead, dynamically
authorRonald S. Bultje <rsbultje@gmail.com>
Fri, 13 Aug 2010 17:30:01 +0000 (17:30 +0000)
committerRonald S. Bultje <rsbultje@gmail.com>
Fri, 13 Aug 2010 17:30:01 +0000 (17:30 +0000)
allocate the array.

Originally committed as revision 24794 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mms.c
libavformat/mms.h
libavformat/mmst.c

index cbb4739..73f4e6b 100644 (file)
@@ -99,6 +99,9 @@ int ff_mms_asf_header_parser(MMSContext *mms)
             //Please see function send_stream_selection_request().
             if (mms->stream_num < MAX_STREAMS &&
                     46 + mms->stream_num * 6 < sizeof(mms->out_buffer)) {
+                mms->streams = av_fast_realloc(mms->streams,
+                                   &mms->nb_streams_allocated,
+                                   (mms->stream_num + 1) * sizeof(MMSStream));
                 mms->streams[mms->stream_num].id = stream_id;
                 mms->stream_num++;
             } else {
index 675d6b9..7ee0485 100644 (file)
@@ -29,7 +29,7 @@ typedef struct {
 
 typedef struct {
     URLContext *mms_hd;                  ///< TCP connection handle
-    MMSStream streams[MAX_STREAMS];
+    MMSStream *streams;
 
     /** Buffer for outgoing packets. */
     /*@{*/
@@ -54,6 +54,7 @@ typedef struct {
     /*@}*/
 
     int stream_num;                      ///< stream numbers.
+    unsigned int nb_streams_allocated;   ///< allocated size of streams
 } MMSContext;
 
 int ff_mms_asf_header_parser(MMSContext * mms);
index ccfc212..3d12d82 100644 (file)
@@ -468,6 +468,7 @@ static int mms_close(URLContext *h)
     }
 
     /* free all separately allocated pointers in mms */
+    av_free(mms->streams);
     av_free(mms->asf_header);
     av_freep(&h->priv_data);