# HG changeset patch # User mru # Date 1265067030 0 # Node ID 0bbfce7dc2dcf52d0af5b5b0c30c97cbd7f24442 # Parent 072cb3a1d4a7aeaf7297ebb91ab88da3823582d7 Fix build diff -r 072cb3a1d4a7 -r 0bbfce7dc2dc mpegts.c --- a/mpegts.c Mon Feb 01 23:10:04 2010 +0000 +++ b/mpegts.c Mon Feb 01 23:30:30 2010 +0000 @@ -85,7 +85,7 @@ 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 @@ /** filters for various streams specified by PMT + for the PAT and PMT */ MpegTSFilter *pids[NB_PID_MAX]; -} MpegTSContext; +}; /* TS stream handling */