Prevent compiler warnings about unused parameters.
[synfig.git] / synfig-core / trunk / src / modules / mod_libavcodec / trgt_av.cpp
index d1ad058..3881ca1 100644 (file)
@@ -1,8 +1,8 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file trgt.cpp
+/*!    \file trgt_av.cpp
 **     \brief \writeme
 **
-**     $Id: trgt_av.cpp,v 1.1.1.1 2005/01/04 01:23:11 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -61,7 +61,7 @@ SYNFIG_TARGET_INIT(Target_LibAVCodec);
 SYNFIG_TARGET_SET_NAME(Target_LibAVCodec,"libav");
 SYNFIG_TARGET_SET_EXT(Target_LibAVCodec,"avi");
 SYNFIG_TARGET_SET_VERSION(Target_LibAVCodec,"0.1");
-SYNFIG_TARGET_SET_CVS_ID(Target_LibAVCodec,"$Id: trgt_av.cpp,v 1.1.1.1 2005/01/04 01:23:11 darco Exp $");
+SYNFIG_TARGET_SET_CVS_ID(Target_LibAVCodec,"$Id$");
 
 /* === C L A S S E S & S T R U C T S ======================================= */
 
@@ -378,7 +378,7 @@ public:
 
                /*
                If pict is invalid (NULL), then we are done compressing frames and we are trying to get
-               the buffer cleared out (or if it's already in the right format) so no transofrm necessary
+               the buffer cleared out (or if it's already in the right format) so no transform necessary
                */
                if ( pict )
                {
@@ -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.