Fix a compile-time warning.
[synfig.git] / synfig-core / trunk / src / modules / mod_libavcodec / trgt_av.cpp
index 3881ca1..8a3e373 100644 (file)
@@ -286,7 +286,7 @@ public:
 class VideoEncoder
 {
 public:
-       AVFrame *encodable;     //for compressiong and output to a file (in compatible pixel format)
+       AVFrame *encodable;     //for compression and output to a file (in compatible pixel format)
 
        vector<unsigned char>   videobuffer;
 
@@ -406,7 +406,7 @@ public:
                if( context->coded_frame && context->coded_frame->key_frame)
                        pkt.flags |= PKT_FLAG_KEY;
 
-               //cludge for raw picture format (they said they'd fix)
+               //kluge for raw picture format (they said they'd fix)
                if (formatc->oformat->flags & AVFMT_RAWPICTURE)
                {
                        ret = av_write_frame(formatc, &pkt);
@@ -642,7 +642,7 @@ public:
 
        void CleanUp()
        {
-               int i;
+               unsigned int i;
 
                if(picture) free_picture(picture);
 
@@ -929,7 +929,7 @@ Target_LibAVCodec::end_scanline()
 
 bool Target_LibAVCodec::init()
 {
-       //hardcode test for mpeg
+       //hardcoded test for mpeg
        if(!data->Initialize(filename.c_str(),NULL))
        {
                synfig::warning("Unable to Initialize the audio video encoders");