summaryrefslogtreecommitdiffstats
path: root/client_examples/vnc2mpg.c
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2015-10-10 14:12:06 +0200
committerChristian Beier <dontmind@freeshell.org>2015-10-10 14:12:06 +0200
commitab0765903987296fe03bc3dd11645206f9d67e7f (patch)
treea462dc1715366e72e74e45dcc24f4d3a1c241772 /client_examples/vnc2mpg.c
parent97f442ef2aa65ade6bea11e90054c57b90abbaca (diff)
parent9c7efb7633ba62cd80c93e83284663f805bb3031 (diff)
downloadlibtdevnc-ab0765903987296fe03bc3dd11645206f9d67e7f.tar.gz
libtdevnc-ab0765903987296fe03bc3dd11645206f9d67e7f.zip
Merge pull request #89 from stweil/master
Fix some typos (found by codespell)
Diffstat (limited to 'client_examples/vnc2mpg.c')
-rw-r--r--client_examples/vnc2mpg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client_examples/vnc2mpg.c b/client_examples/vnc2mpg.c
index 10c3d3e..af4a73a 100644
--- a/client_examples/vnc2mpg.c
+++ b/client_examples/vnc2mpg.c
@@ -85,11 +85,11 @@ AVStream *add_video_stream(AVFormatContext *oc, int codec_id, int w, int h)
}
if (c->codec_id == CODEC_ID_MPEG1VIDEO){
/* needed to avoid using macroblocks in which some coeffs overflow
- this doesnt happen with normal video, it just happens here as the
- motion of the chroma plane doesnt match the luma plane */
+ this doesn't happen with normal video, it just happens here as the
+ motion of the chroma plane doesn't match the luma plane */
c->mb_decision=2;
}
- /* some formats want stream headers to be seperate */
+ /* some formats want stream headers to be separate */
if(!strcmp(oc->oformat->name, "mp4") || !strcmp(oc->oformat->name, "mov") || !strcmp(oc->oformat->name, "3gp"))
c->flags |= CODEC_FLAG_GLOBAL_HEADER;