From 93951943eca631a20f71a490ba7b30417bdfa27d Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 17 Aug 2007 10:45:50 +0000 Subject: [PATCH] spelling/wording cosmetics Originally committed as revision 10131 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nut.h | 6 +++--- libavformat/nutdec.c | 24 ++++++++++++------------ libavformat/nutenc.c | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/libavformat/nut.h b/libavformat/nut.h index 5a154f016..3507ced26 100644 --- a/libavformat/nut.h +++ b/libavformat/nut.h @@ -45,10 +45,10 @@ typedef enum{ FLAG_CODED_PTS = 8, ///frame_code['N'].flags == FLAG_INVALID); if(skip_reserved(bc, end) || get_checksum(bc)){ - av_log(s, AV_LOG_ERROR, "Main header checksum mismatch\n"); + av_log(s, AV_LOG_ERROR, "main header checksum mismatch\n"); return -1; } @@ -319,13 +319,13 @@ static int decode_stream_header(NUTContext *nut){ st->codec->codec_type = CODEC_TYPE_DATA; break; default: - av_log(s, AV_LOG_ERROR, "Unknown stream class (%d)\n", class); + av_log(s, AV_LOG_ERROR, "unknown stream class (%d)\n", class); return -1; } GET_V(stc->time_base_id , tmp < nut->time_base_count); GET_V(stc->msb_pts_shift , tmp < 16); stc->max_pts_distance= get_v(bc); - GET_V(stc->decode_delay , tmp < 1000); //sanity limit, raise this if moors law is true + GET_V(stc->decode_delay , tmp < 1000); //sanity limit, raise this if Moore's law is true st->codec->has_b_frames= stc->decode_delay; get_v(bc); //stream flags @@ -349,13 +349,13 @@ static int decode_stream_header(NUTContext *nut){ GET_V(st->codec->sample_rate , tmp > 0) tmp= get_v(bc); // samplerate_den if(tmp > st->codec->sample_rate){ - av_log(s, AV_LOG_ERROR, "bleh, libnut muxed this ;)\n"); + av_log(s, AV_LOG_ERROR, "Bleh, libnut muxed this ;)\n"); st->codec->sample_rate= tmp; } GET_V(st->codec->channels, tmp > 0) } if(skip_reserved(bc, end) || get_checksum(bc)){ - av_log(s, AV_LOG_ERROR, "Stream header %d checksum mismatch\n", stream_id); + av_log(s, AV_LOG_ERROR, "stream header %d checksum mismatch\n", stream_id); return -1; } stc->time_base= &nut->time_base[stc->time_base_id]; @@ -415,7 +415,7 @@ static int decode_info_header(NUTContext *nut){ } if(skip_reserved(bc, end) || get_checksum(bc)){ - av_log(s, AV_LOG_ERROR, "Info header checksum mismatch\n"); + av_log(s, AV_LOG_ERROR, "info header checksum mismatch\n"); return -1; } return 0; @@ -534,7 +534,7 @@ static int find_and_decode_index(NUTContext *nut){ } if(skip_reserved(bc, end) || get_checksum(bc)){ - av_log(s, AV_LOG_ERROR, "Index checksum mismatch\n"); + av_log(s, AV_LOG_ERROR, "index checksum mismatch\n"); return -1; } return 0; @@ -554,7 +554,7 @@ static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap) do{ pos= find_startcode(bc, MAIN_STARTCODE, pos)+1; if (pos<0+1){ - av_log(s, AV_LOG_ERROR, "no main startcode found\n"); + av_log(s, AV_LOG_ERROR, "No main startcode found.\n"); return -1; } }while(decode_main_header(nut) < 0); @@ -564,7 +564,7 @@ static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap) for(inited_stream_count=0; inited_stream_count < s->nb_streams;){ pos= find_startcode(bc, STREAM_STARTCODE, pos)+1; if (pos<0+1){ - av_log(s, AV_LOG_ERROR, "not all stream headers found\n"); + av_log(s, AV_LOG_ERROR, "Not all stream headers found.\n"); return -1; } if(decode_stream_header(nut) >= 0) @@ -610,7 +610,7 @@ static int decode_frame_header(NUTContext *nut, int64_t *pts, int *stream_id, in uint64_t tmp; if(url_ftell(bc) > nut->last_syncpoint_pos + nut->max_distance){ - av_log(s, AV_LOG_ERROR, "last frame must have been damaged %"PRId64" > %"PRId64" + %d\n", url_ftell(bc), nut->last_syncpoint_pos, nut->max_distance); + av_log(s, AV_LOG_ERROR, "Last frame must have been damaged %"PRId64" > %"PRId64" + %d\n", url_ftell(bc), nut->last_syncpoint_pos, nut->max_distance); return -1; } @@ -762,7 +762,7 @@ resync: pos= find_startcode(bc, SYNCPOINT_STARTCODE, pos)+1; if(pos < 1){ assert(nut->next_startcode == 0); - av_log(s, AV_LOG_ERROR, "read_timestamp failed\n"); + av_log(s, AV_LOG_ERROR, "read_timestamp failed.\n"); return AV_NOPTS_VALUE; } }while(decode_syncpoint(nut, &pts, &back_ptr) < 0); diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index fd3ce97fd..b28566100 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}; -- 2.11.0