diff options
Diffstat (limited to 'libavformat/dv1394.c')
-rw-r--r-- | libavformat/dv1394.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/dv1394.c b/libavformat/dv1394.c index 8e61df3df4..65cfcca73b 100644 --- a/libavformat/dv1394.c +++ b/libavformat/dv1394.c @@ -88,9 +88,9 @@ static int dv1394_read_header(AVFormatContext * context, AVFormatParameters * ap goto failed; if (ap->standard && !strcasecmp(ap->standard, "pal")) - dv->format = DV1394_PAL; + dv->format = DV1394_PAL; else - dv->format = DV1394_NTSC; + dv->format = DV1394_NTSC; if (ap->channel) dv->channel = ap->channel; @@ -202,7 +202,7 @@ restart_poll: size = dv_produce_packet(dv->dv_demux, pkt, dv->ring + (dv->index * DV1394_PAL_FRAME_SIZE), - DV1394_PAL_FRAME_SIZE); + DV1394_PAL_FRAME_SIZE); dv->index = (dv->index + 1) % DV1394_RING_FRAMES; dv->done++; dv->avail--; |