[FFmpeg-soc] [soc]: r4633 - in concat/libavformat: playlist.c playlist.h

gkovacs subversion at mplayerhq.hu
Mon Jul 6 20:11:16 CEST 2009


Author: gkovacs
Date: Mon Jul  6 20:11:15 2009
New Revision: 4633

Log:
removed PlayElem->time_offset,indv_time

Modified:
   concat/libavformat/playlist.c
   concat/libavformat/playlist.h

Modified: concat/libavformat/playlist.c
==============================================================================
--- concat/libavformat/playlist.c	Mon Jul  6 20:08:45 2009	(r4632)
+++ concat/libavformat/playlist.c	Mon Jul  6 20:11:15 2009	(r4633)
@@ -22,7 +22,6 @@
 #include "avformat.h"
 #include "playlist.h"
 #include "internal.h"
-#include <time.h>
 
 void ff_playlist_make_playelem(PlayElem *pe)
 {
@@ -55,8 +54,6 @@ void ff_playlist_make_playelem(PlayElem 
     if(!pe->fmt) {
         fprintf(stderr, "failed pe ic fmt not set");
     }
-    pe->time_offset = 0;
-    pe->indv_time = clock();
     return pe;
 }
 

Modified: concat/libavformat/playlist.h
==============================================================================
--- concat/libavformat/playlist.h	Mon Jul  6 20:08:45 2009	(r4632)
+++ concat/libavformat/playlist.h	Mon Jul  6 20:11:15 2009	(r4633)
@@ -34,8 +34,6 @@ typedef struct PlayElem {
     char *filename; /**< Filename with absolute path of this playlist item */
     AVInputFormat *fmt; /**< AVInputFormat manually specified for this playlist item */
     AVFormatParameters *ap; /**< AVFormatParameters for this playlist item */
-    int64_t time_offset;
-    int64_t indv_time;
 } PlayElem;
 
 /** @struct PlaylistContext


More information about the FFmpeg-soc mailing list