changeset 2495:9c3067533891 libavformat

Grammar nits
author conrad
date Wed, 05 Sep 2007 00:25:18 +0000
parents 7dfbd8e0502f
children 215eef1f3f37
files matroskaenc.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/matroskaenc.c	Wed Sep 05 00:25:16 2007 +0000
+++ b/matroskaenc.c	Wed Sep 05 00:25:18 2007 +0000
@@ -1,5 +1,5 @@
 /*
- * Matroska file muxer
+ * Matroska muxer
  * Copyright (c) 2007 David Conrad
  *
  * This file is part of FFmpeg.
@@ -115,7 +115,7 @@
 }
 
 /**
- * Calculate how many bytes are needed to represent a given size in EBML
+ * Calculate how many bytes are needed to represent a given size in EBML.
  */
 static int ebml_size_bytes(uint64_t size)
 {
@@ -463,13 +463,13 @@
     int sri;
 
     if (codec->extradata_size < 2) {
-        av_log(codec, AV_LOG_WARNING, "no aac extradata, unable to determine sample rate\n");
+        av_log(codec, AV_LOG_WARNING, "no AAC extradata, unable to determine samplerate\n");
         return;
     }
 
     sri = ((codec->extradata[0] << 1) & 0xE) | (codec->extradata[1] >> 7);
     if (sri > 12) {
-        av_log(codec, AV_LOG_WARNING, "aac samplerate index out of bounds\n");
+        av_log(codec, AV_LOG_WARNING, "AAC samplerate index out of bounds\n");
         return;
     }
     *sample_rate = aac_sample_rates[sri];
@@ -478,7 +478,7 @@
     if (codec->extradata_size == 5) {
         sri = (codec->extradata[4] >> 3) & 0xF;
         if (sri > 12) {
-            av_log(codec, AV_LOG_WARNING, "aac output samplerate index out of bounds\n");
+            av_log(codec, AV_LOG_WARNING, "AAC output samplerate index out of bounds\n");
             return;
         }
         *output_sample_rate = aac_sample_rates[sri];