1
mirror of https://github.com/mpv-player/mpv synced 2024-10-02 16:25:33 +02:00

demux_rawdv.c: fix change missing from recent 8079f4ff82

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.
This commit is contained in:
Uoti Urpala 2012-07-27 04:12:03 +03:00
parent 31458a51b5
commit 99141377c8

View File

@ -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)
{