Mercurial > libavformat.hg
changeset 5620:0bbfce7dc2dc libavformat
Fix build
author | mru |
---|---|
date | Mon, 01 Feb 2010 23:30:30 +0000 |
parents | 072cb3a1d4a7 |
children | dea6e2d5442d |
files | mpegts.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 */