diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-11-02 18:52:08 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-11-02 18:52:08 +0000 |
commit | ddd4c2e6d034e9a9693912e86e2a407ae9080a45 (patch) | |
tree | c96e0e6b8b6f048c29723ad1121d05313b093c1e /libmpdemux | |
parent | d48b6c6cf500340f0c86f97cf35d20014e2471a8 (diff) | |
download | mpv-ddd4c2e6d034e9a9693912e86e2a407ae9080a45.tar.bz2 mpv-ddd4c2e6d034e9a9693912e86e2a407ae9080a45.tar.xz |
removed no more needed variable
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24934 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/muxer_mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c index ecb72f1e67..7132c5f168 100644 --- a/libmpdemux/muxer_mpeg.c +++ b/libmpdemux/muxer_mpeg.c @@ -159,7 +159,7 @@ typedef struct { typedef struct { - int has_pts, has_dts, pes_is_aligned, type, min_pes_hlen, psm_fixed; + int has_pts, has_dts, pes_is_aligned, type, min_pes_hlen; int delay_rff; uint64_t pts, last_pts, last_dts, dts, size, frame_duration, delta_pts, nom_delta_pts, last_saved_pts; uint32_t buffer_size; |