]> git.sesse.net Git - ffmpeg/commitdiff
Fix build
authorMåns Rullgård <mans@mansr.com>
Mon, 1 Feb 2010 23:30:30 +0000 (23:30 +0000)
committerMåns Rullgård <mans@mansr.com>
Mon, 1 Feb 2010 23:30:30 +0000 (23:30 +0000)
Originally committed as revision 21602 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mpegts.c

index f20c363b459d727d920b153086d10c8fc0a14e5d..e1d112810085815f48724a4ba4cf0a9571c79ac2 100644 (file)
@@ -85,7 +85,7 @@ struct Program {
     unsigned int pids[MAX_PIDS_PER_PROGRAM];
 };
 
-typedef struct MpegTSContext {
+struct MpegTSContext {
     /* user data */
     AVFormatContext *stream;
     /** raw packet size, including FEC if present            */
@@ -120,7 +120,7 @@ typedef struct MpegTSContext {
 
     /** filters for various streams specified by PMT + for the PAT and PMT */
     MpegTSFilter *pids[NB_PID_MAX];
-} MpegTSContext;
+};
 
 /* TS stream handling */