Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/qtrleenc.c2
-rw-r--r--libavcodec/rl2.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/qtrleenc.c b/libavcodec/qtrleenc.c
index 0e10c76365..a8963ab78a 100644
--- a/libavcodec/qtrleenc.c
+++ b/libavcodec/qtrleenc.c
@@ -205,7 +205,7 @@ static void qtrle_encode_line(QtrleEncContext *s, AVFrame *p, int line, uint8_t
prev_line -= s->pixel_size;
}
- /* Good ! Now we have the best sequence for this line, let's ouput it */
+ /* Good ! Now we have the best sequence for this line, let's output it */
/* We do a special case for the first pixel so that we avoid testing it in
* the whole loop */
diff --git a/libavcodec/rl2.c b/libavcodec/rl2.c
index 0090bf3093..07c6109c64 100644
--- a/libavcodec/rl2.c
+++ b/libavcodec/rl2.c
@@ -51,7 +51,7 @@ typedef struct Rl2Context {
* @param s rl2 context
* @param in input buffer
* @param size input buffer size
- * @param out ouput buffer
+ * @param out output buffer
* @param stride stride of the output buffer
* @param video_base offset of the rle data inside the frame
*/