From 75c3e33a0683349e734632c8d70427782325cf5f Mon Sep 17 00:00:00 2001
From: Andreas Unterweger <[email protected]>
Date: Mon, 26 Jan 2015 11:54:00 +0100
Subject: [PATCH 2/3] Fixed a typo

---
 doc/examples/transcode_aac.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c
index 75dd1e2..eac6882 100644
--- a/doc/examples/transcode_aac.c
+++ b/doc/examples/transcode_aac.c
@@ -166,7 +166,7 @@ static int open_output_file(const char *filename,
         goto cleanup;
     }
- /** Save the encoder context for easiert access later. */
+    /** Save the encoder context for easier access later. */
     *output_codec_context = stream->codec;
/**
@@ -179,7 +179,7 @@ static int open_output_file(const char *filename,
     (*output_codec_context)->sample_fmt     = output_codec->sample_fmts[0];
     (*output_codec_context)->bit_rate       = OUTPUT_BIT_RATE;
- /** Allow the use of the experimental AAC encoder */
+    /** Allow the use of the experimental AAC encoder. */
     (*output_codec_context)->strict_std_compliance = 
FF_COMPLIANCE_EXPERIMENTAL;
/**
--
1.9.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to