summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2012-07-27 04:12:03 +0300
committerUoti Urpala <uau@mplayer2.org>2012-07-27 04:12:03 +0300
commit99141377c873a6d74be1498ff6824c61f46b83cf (patch)
treebdef1e54add42ddb39302c5b903d5fddd30b0afc /libmpdemux
parent31458a51b5c6a7c8a6449b0b3baa4f3fef6c4938 (diff)
downloadmpv-99141377c873a6d74be1498ff6824c61f46b83cf.tar.bz2
mpv-99141377c873a6d74be1498ff6824c61f46b83cf.tar.xz
demux_rawdv.c: fix change missing from recent 8079f4ff821
Like vd_vfw.c fixed earlier, demux_rawdv.c was also missing a change needed for the "flags"->"keyframe" demux packet field rename. This broke compilation with libdv enabled. Hopefully there aren't more cases. It's hard to reliably check for references in files that aren't compiled in the local tree if they use different base variable names, as the "flags" name itself is used for many unrelated things.
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_rawdv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libmpdemux/demux_rawdv.c b/libmpdemux/demux_rawdv.c
index f0b081318c..1e0a27e9f4 100644
--- a/libmpdemux/demux_rawdv.c
+++ b/libmpdemux/demux_rawdv.c
@@ -124,7 +124,6 @@ static int demux_rawdv_fill_buffer(demuxer_t *demuxer, demux_stream_t *ds)
return 0;
dp_video->pts=frames->current_frame/sh_video->fps;
dp_video->pos=frames->current_filepos;
- dp_video->flags=0;
if (demuxer->audio && demuxer->audio->id>=-1)
{