diff options
author | Måns Rullgård <mans@mansr.com> | 2010-02-01 23:30:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-02-01 23:30:30 +0000 |
commit | 0694a009b65540e95eb1ecfa8f5a8a74e36bef1f (patch) | |
tree | 88a0835efe0cb72c99abd74e92f3542a1c9339b2 /libavformat/mpegts.c | |
parent | 9125806e349e6b4de23f9218c156f7f510cc2d73 (diff) | |
download | ffmpeg-0694a009b65540e95eb1ecfa8f5a8a74e36bef1f.tar.gz |
Fix build
Originally committed as revision 21602 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index f20c363b45..e1d1128100 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -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 */ |