summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-25 21:21:09 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-25 21:21:09 +0000
commitbf15108d5633486c6ea5b634579a0b4506530066 (patch)
tree2a05298eef7244709aa3d7400634b5dc4d9ad315 /libmpdemux
parent3fb9b08a309cccb8a5f3895ee06ab27d515e72b3 (diff)
downloadmpv-bf15108d5633486c6ea5b634579a0b4506530066.tar.bz2
mpv-bf15108d5633486c6ea5b634579a0b4506530066.tar.xz
member real_framerate is completely useless
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22346 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/muxer_mpeg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c
index 594fb82f96..1dc3593b8c 100644
--- a/libmpdemux/muxer_mpeg.c
+++ b/libmpdemux/muxer_mpeg.c
@@ -157,7 +157,7 @@ typedef struct {
typedef struct {
int has_pts, has_dts, pes_is_aligned, type, min_pes_hlen, psm_fixed;
- int real_framerate, delay_rff;
+ 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;
double delta_clock, timer;
@@ -1623,7 +1623,6 @@ static size_t parse_mpeg12_video(muxer_stream_t *s, muxer_priv_t *priv, muxer_he
if(s->buffer[3] == 0xb3) //sequence
{
fps_ptr = &(s->buffer[7]);
- spriv->real_framerate = *fps_ptr & 0x0f;
mp_header_process_sequence_header(&(spriv->picture), &(s->buffer[4]));
spriv->delta_pts = spriv->nom_delta_pts = parse_fps(spriv->picture.fps);