diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-12-07 16:07:51 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-12-18 13:36:51 +0100 |
commit | 523c7bd23c781aa0f3a85044896f5e18e8b52534 (patch) | |
tree | c430db55861018aa073c23c2a13c0d54be609a2f /libavformat | |
parent | ea061af15ac5629dc8dbeb33b7382d6711a323c3 (diff) | |
download | ffmpeg-523c7bd23c781aa0f3a85044896f5e18e8b52534.tar.gz |
misc typo, style and wording fixes
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avio_internal.h | 2 | ||||
-rw-r--r-- | libavformat/bethsoftvid.c | 2 | ||||
-rw-r--r-- | libavformat/nsvdec.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h index f2ccc36623..3da2fc8422 100644 --- a/libavformat/avio_internal.h +++ b/libavformat/avio_internal.h @@ -81,7 +81,7 @@ unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, /** * Open a write only packetized memory stream with a maximum packet * size of 'max_packet_size'. The stream is stored in a memory buffer - * with a big endian 4 byte header giving the packet size in bytes. + * with a big-endian 4 byte header giving the packet size in bytes. * * @param s new IO context * @param max_packet_size maximum packet size (must be > 0) diff --git a/libavformat/bethsoftvid.c b/libavformat/bethsoftvid.c index 3a102c0b72..f41ef52e78 100644 --- a/libavformat/bethsoftvid.c +++ b/libavformat/bethsoftvid.c @@ -57,7 +57,7 @@ typedef struct BVID_DemuxContext static int vid_probe(AVProbeData *p) { - // little endian VID tag, file starts with "VID\0" + // little-endian VID tag, file starts with "VID\0" if (AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0)) return 0; diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index d7c3c81f36..4193ed2edb 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -252,7 +252,7 @@ static int nsv_resync(AVFormatContext *s) nsv->state = NSV_FOUND_BEEF; return 0; } - /* we read as big endian, thus the MK*BE* */ + /* we read as big-endian, thus the MK*BE* */ if (v == TB_NSVF) { /* NSVf */ av_dlog(s, "NSV resynced on NSVf after %d bytes\n", i+1); nsv->state = NSV_FOUND_NSVF; |