From 75f2c20983b5f6893f243c31df0b9b0c07f5a0b3 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 24 Oct 2008 21:37:06 +0000 Subject: spelling cosmetics Originally committed as revision 15681 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dv.c | 14 +++++++------- libavcodec/dvdata.h | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 7360f66527..75aaf014d6 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -138,7 +138,7 @@ static av_cold int dvvideo_init(AVCodecContext *avctx) done = 1; - /* dv_anchor lets each thread know its Id */ + /* dv_anchor lets each thread know its ID */ for (i=0; isys->dsf << 5) | /* system: 60fields/50fields */ @@ -1131,9 +1131,9 @@ static inline int dv_write_pack(enum dv_pack_type pack_id, DVVideoContext *c, ui 0x3f; /* reserved -- always 1 */ buf[2] = 0xc8 | /* reserved -- always b11001xxx */ aspect; - buf[3] = (1 << 7) | /* Frame/field flag 1 -- frame, 0 -- field */ - (1 << 6) | /* First/second field flag 0 -- field 2, 1 -- field 1 */ - (1 << 5) | /* Frame change flag 0 -- same picture as before, 1 -- different */ + buf[3] = (1 << 7) | /* frame/field flag 1 -- frame, 0 -- field */ + (1 << 6) | /* first/second field flag 0 -- field 2, 1 -- field 1 */ + (1 << 5) | /* frame change flag 0 -- same picture as before, 1 -- different */ (1 << 4) | /* 1 - interlaced, 0 - noninterlaced */ 0xc; /* reserved -- always b1100 */ buf[4] = 0xff; /* reserved -- always 1 */ @@ -1151,7 +1151,7 @@ static void dv_format_frame(DVVideoContext* c, uint8_t* buf) for (chan = 0; chan < c->sys->n_difchan; chan++) { for (i = 0; i < c->sys->difseg_size; i++) { - memset(buf, 0xff, 80 * 6); /* First 6 DIF blocks are for control data */ + memset(buf, 0xff, 80 * 6); /* first 6 DIF blocks are for control data */ /* DV header: 1DIF */ buf += dv_write_dif_id(dv_sect_header, chan, i, 0, buf); diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index 5bc21bccde..6d0f90e9d4 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -6073,7 +6073,7 @@ static const int dv_iweight_248[64] = { }; /** - * the "inverse" DV100 weights are actually just the spec weights (zig-zagged) + * The "inverse" DV100 weights are actually just the spec weights (zig-zagged). */ static const int dv_iweight_1080_y[64] = { 128, 16, 16, 17, 17, 17, 18, 18, -- cgit v1.2.3