summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-06 12:10:23 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-06 12:40:35 +0200
commit955113e31bb0a0d0bee127072d04153826883716 (patch)
tree2a9a16604d89786e8adadf7bd8adb31f478568ce /libavformat/mpeg.c
parent5bebb6e64b6d8e1c9ed89ec2d14396984ba8ab5e (diff)
mpegps: drop incorrect line of sofdec detection
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r--libavformat/mpeg.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 6fb1c5c31b..b21bc601eb 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -119,7 +119,6 @@ static int mpegps_read_header(AVFormatContext *s,
m->sofdec = -1;
do {
v = avio_r8(s->pb);
- m->header_state = m->header_state << 8 | v;
m->sofdec++;
} while (v == sofdec[i] && i++ < 6);