Typo: 'hardcode' -> 'hardcoded'.
[synfig.git] / synfig-core / trunk / src / modules / mod_libavcodec / trgt_av.cpp
index 93f0d08..c7067d8 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);
@@ -454,7 +454,7 @@ public:
                return true;
        }
 
-       void close(AVFormatContext *formatc, AVStream *stream)
+       void close(AVFormatContext */*formatc*/, AVStream *stream)
        {
                if(stream)
                        avcodec_close(stream->codec);
@@ -745,7 +745,7 @@ public:
        }
 
        // add an audio output stream
-       AVStream *add_audio_stream(int codec_id,const AudioInfo &aInfo)
+       AVStream *add_audio_stream(int codec_id,const AudioInfo &/*aInfo*/)
        {
                AVCodecContext *context;
                AVStream *stream;
@@ -905,7 +905,7 @@ Target_LibAVCodec::end_frame()
 }
 
 bool
-Target_LibAVCodec::start_frame(synfig::ProgressCallback *callback)
+Target_LibAVCodec::start_frame(synfig::ProgressCallback */*callback*/)
 {
        //prepare all the color buffer stuff, etc.
 
@@ -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");