diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-08-17 10:45:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-08-17 10:45:50 +0000 |
commit | 93951943eca631a20f71a490ba7b30417bdfa27d (patch) | |
tree | c3958e58753127c2cac271692fe1529ea0fcf9b0 /libavformat/nutenc.c | |
parent | a9054d91b7c1a7c4326c1d08790fb4e2d2d63033 (diff) | |
download | ffmpeg-93951943eca631a20f71a490ba7b30417bdfa27d.tar.gz |
spelling/wording cosmetics
Originally committed as revision 10131 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r-- | libavformat/nutenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index fd3ce97fd3..b28566100c 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -160,7 +160,7 @@ static void put_t(NUTContext *nut, StreamContext *nus, ByteIOContext *bc, uint64 } /** - * stores a string as vb. + * Stores a string as vb. */ static void put_str(ByteIOContext *bc, const char *string){ int len= strlen(string); @@ -457,7 +457,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt){ if(pkt->size + 30/*FIXME check*/ + url_ftell(bc) >= nut->last_syncpoint_pos + nut->max_distance) store_sp= 1; -//FIXME ensure store_sp is 1 for the first thing +//FIXME: Ensure store_sp is 1 in the first place. if(store_sp){ syncpoint_t *sp, dummy= {.pos= INT64_MAX}; |