summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-08-17 10:45:50 +0000
committerDiego Biurrun <diego@biurrun.de>2007-08-17 10:45:50 +0000
commit93951943eca631a20f71a490ba7b30417bdfa27d (patch)
treec3958e58753127c2cac271692fe1529ea0fcf9b0 /libavformat
parenta9054d91b7c1a7c4326c1d08790fb4e2d2d63033 (diff)
spelling/wording cosmetics
Originally committed as revision 10131 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/nut.h6
-rw-r--r--libavformat/nutdec.c24
-rw-r--r--libavformat/nutenc.c4
3 files changed, 17 insertions, 17 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h
index 5a154f0164..3507ced26d 100644
--- a/libavformat/nut.h
+++ b/libavformat/nut.h
@@ -45,10 +45,10 @@ typedef enum{
FLAG_CODED_PTS = 8, ///<if set, coded_pts is in the frame header
FLAG_STREAM_ID = 16, ///<if set, stream_id is coded in the frame header
FLAG_SIZE_MSB = 32, ///<if set, data_size_msb is at frame header, otherwise data_size_msb is 0
- FLAG_CHECKSUM = 64, ///<if set then the frame header contains a checksum
+ FLAG_CHECKSUM = 64, ///<if set, the frame header contains a checksum
FLAG_RESERVED = 128, ///<if set, reserved_count is coded in the frame header
- FLAG_CODED =4096, ///<if set, coded_flags are stored in the frame header.
- FLAG_INVALID =8192, ///<if set, frame_code is invalid.
+ FLAG_CODED =4096, ///<if set, coded_flags are stored in the frame header
+ FLAG_INVALID =8192, ///<if set, frame_code is invalid
}flag_t;
typedef struct {
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index fa20503ef2..25e739b6b9 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -142,7 +142,7 @@ static uint64_t find_any_startcode(ByteIOContext *bc, int64_t pos){
}
/**
- * find the given startcode.
+ * Find the given startcode.
* @param code the startcode
* @param pos the start position of the search, or -1 if the current position
* @returns the position of the startcode or -1 if not found
@@ -265,7 +265,7 @@ static int decode_main_header(NUTContext *nut){
assert(nut->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 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};