aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/dv1394.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2005-12-22 01:10:11 +0000
committerDiego Biurrun <diego@biurrun.de>2005-12-22 01:10:11 +0000
commitbb270c0896b39e1ae9277355e3c120ed3feb64a3 (patch)
treefc2fc2b1216d19acb3879abb6ea5a3b400f43fe4 /libavformat/dv1394.c
parent50827fcf44f34521df4708cdb633809b56fb9df3 (diff)
downloadandroid_external_ffmpeg-bb270c0896b39e1ae9277355e3c120ed3feb64a3.tar.gz
android_external_ffmpeg-bb270c0896b39e1ae9277355e3c120ed3feb64a3.tar.bz2
android_external_ffmpeg-bb270c0896b39e1ae9277355e3c120ed3feb64a3.zip
COSMETICS: tabs --> spaces, some prettyprinting
Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv1394.c')
-rw-r--r--libavformat/dv1394.c6
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--;