# HG changeset patch # User diego # Date 1217924937 0 # Node ID e8f67b6063c3b730aa9ebf1f805470984273557e # Parent b91cad3c97e8da77d286a38a445e2cafb5258aa1 misc spelling/grammar fixes diff -r b91cad3c97e8 -r e8f67b6063c3 matroska.h --- a/matroska.h Tue Aug 05 00:43:01 2008 +0000 +++ b/matroska.h Tue Aug 05 08:28:57 2008 +0000 @@ -43,13 +43,13 @@ #define EBML_ID_VOID 0xEC /* - * Matroska element IDs. max. 32-bit. + * Matroska element IDs, max. 32 bit */ /* toplevel segment */ #define MATROSKA_ID_SEGMENT 0x18538067 -/* matroska top-level master IDs */ +/* Matroska top-level master IDs */ #define MATROSKA_ID_INFO 0x1549A966 #define MATROSKA_ID_TRACKS 0x1654AE6B #define MATROSKA_ID_CUES 0x1C53BB6B @@ -190,7 +190,7 @@ } MatroskaTrackEncodingCompAlgo; /* - * Matroska Codec IDs. Strings. + * Matroska Codec IDs, strings */ typedef struct CodecTags{ diff -r b91cad3c97e8 -r e8f67b6063c3 matroskadec.c --- a/matroskadec.c Tue Aug 05 00:43:01 2008 +0000 +++ b/matroskadec.c Tue Aug 05 08:28:57 2008 +0000 @@ -1,6 +1,6 @@ /* * Matroska file demuxer - * Copyright (c) 2003-2008 The ffmpeg Project + * Copyright (c) 2003-2008 The FFmpeg Project * * This file is part of FFmpeg. * @@ -25,7 +25,7 @@ * by Ronald Bultje * with a little help from Moritz Bunkus * totally reworked by Aurelien Jacobs - * Specs available on the matroska project page: http://www.matroska.org/. + * Specs available on the Matroska project page: http://www.matroska.org/. */ #include "avformat.h" @@ -176,7 +176,7 @@ typedef struct { AVFormatContext *ctx; - /* ebml stuff */ + /* EBML stuff */ int num_levels; MatroskaLevel levels[EBML_MAX_DEPTH]; int level_up; @@ -193,7 +193,7 @@ /* byte position of the segment inside the stream */ offset_t segment_start; - /* The packet queue. */ + /* the packet queue */ AVPacket **packets; int num_packets; @@ -449,7 +449,7 @@ }; /* - * Return: whether we reached the end of a level in the hierarchy or not + * Return: Whether we reached the end of a level in the hierarchy or not. */ static int ebml_level_end(MatroskaDemuxContext *matroska) { @@ -472,7 +472,7 @@ * number of 0-bits followed by a one. The position of the first * "one" bit inside the first byte indicates the length of this * number. - * Returns: num. of bytes read. < 0 on error. + * Returns: number of bytes read, < 0 on error */ static int ebml_read_num(MatroskaDemuxContext *matroska, ByteIOContext *pb, int max_size, uint64_t *number) @@ -480,7 +480,7 @@ int len_mask = 0x80, read = 1, n = 1; int64_t total = 0; - /* the first byte tells us the length in bytes - get_byte() can normally + /* The first byte tells us the length in bytes - get_byte() can normally * return 0, but since that's not a valid first ebmlID byte, we can * use it safely here to catch EOS. */ if (!(total = get_byte(pb))) { @@ -528,7 +528,7 @@ if (size < 1 || size > 8) return AVERROR_INVALIDDATA; - /* big-endian ordening; build up number */ + /* big-endian ordering; build up number */ *num = 0; while (n++ < size) *num = (*num << 8) | get_byte(pb); @@ -559,7 +559,7 @@ static int ebml_read_ascii(ByteIOContext *pb, int size, char **str) { av_free(*str); - /* ebml strings are usually not 0-terminated, so we allocate one + /* EBML strings are usually not 0-terminated, so we allocate one * byte more, read the string and NULL-terminate it ourselves. */ if (!(*str = av_malloc(size + 1))) return AVERROR(ENOMEM); @@ -615,7 +615,7 @@ /* * Read signed/unsigned "EBML" numbers. - * Return: number of bytes processed, < 0 on error. + * Return: number of bytes processed, < 0 on error */ static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska, uint8_t *data, uint32_t size, uint64_t *num) @@ -769,7 +769,7 @@ int len_mask = 0x80, size = 1, n = 1; char probe_data[] = "matroska"; - /* ebml header? */ + /* EBML header? */ if (AV_RB32(p->buf) != EBML_ID_HEADER) return 0; @@ -785,11 +785,11 @@ while (n < size) total = (total << 8) | p->buf[4 + n++]; - /* does the probe data contain the whole header? */ + /* Does the probe data contain the whole header? */ if (p->buf_size < 4 + size + total) return 0; - /* the header must contain the document type 'matroska'. For now, + /* The header must contain the document type 'matroska'. For now, * we don't parse the whole header but simply check for the * availability of that array of characters inside the header. * Not fully fool-proof, but good enough. */ @@ -912,7 +912,7 @@ if (url_fseek(matroska->ctx->pb, offset, SEEK_SET) != offset) continue; - /* we don't want to lose our seekhead level, so we add + /* We don't want to lose our seekhead level, so we add * a dummy. This is a crude hack. */ if (matroska->num_levels == EBML_MAX_DEPTH) { av_log(matroska->ctx, AV_LOG_INFO, @@ -1375,7 +1375,7 @@ lace_size[0] = size; break; - case 0x1: /* xiph lacing */ + case 0x1: /* Xiph lacing */ case 0x2: /* fixed-size lacing */ case 0x3: /* EBML lacing */ assert(size>0); // size <=3 is checked before size-=3 above @@ -1385,7 +1385,7 @@ lace_size = av_mallocz(laces * sizeof(int)); switch ((flags & 0x06) >> 1) { - case 0x1: /* xiph lacing */ { + case 0x1: /* Xiph lacing */ { uint8_t temp; uint32_t total = 0; for (n = 0; res == 0 && n < laces - 1; n++) { @@ -1540,7 +1540,7 @@ MatroskaBlock *blocks; int i, res; if (matroska->has_cluster_id){ - /* For the first cluster we parse, it's ID was already read as + /* For the first cluster we parse, its ID was already read as part of matroska_read_header(), so don't read it again */ res = ebml_parse_id(matroska, matroska_clusters, MATROSKA_ID_CLUSTER, &cluster); diff -r b91cad3c97e8 -r e8f67b6063c3 matroskaenc.c --- a/matroskaenc.c Tue Aug 05 00:43:01 2008 +0000 +++ b/matroskaenc.c Tue Aug 05 08:28:57 2008 +0000 @@ -424,7 +424,7 @@ static int put_flac_codecpriv(AVFormatContext *s, ByteIOContext *pb, AVCodecContext *codec) { // if the extradata_size is greater than FLAC_STREAMINFO_SIZE, - // assume that it's in Matroska's format already + // assume that it's in Matroska format already if (codec->extradata_size < FLAC_STREAMINFO_SIZE) { av_log(s, AV_LOG_ERROR, "Invalid FLAC extradata\n"); return -1;