diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-05-30 18:41:23 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-05-30 18:41:23 +0000 |
commit | b7cd6feb0986d9e4906a842cbf820d69dba22a40 (patch) | |
tree | a37903b6af0fe13832ca7b5a7a4fb254a5e41109 | |
parent | 259b070daa1ea802c3d310082612d5db037f8881 (diff) | |
download | usdx-b7cd6feb0986d9e4906a842cbf820d69dba22a40.tar.gz usdx-b7cd6feb0986d9e4906a842cbf820d69dba22a40.tar.xz usdx-b7cd6feb0986d9e4906a842cbf820d69dba22a40.zip |
update to avcodec 52.67.2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2428 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | src/lib/ffmpeg/avcodec.pas | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/ffmpeg/avcodec.pas b/src/lib/ffmpeg/avcodec.pas index 7e55e13a..b1fa0715 100644 --- a/src/lib/ffmpeg/avcodec.pas +++ b/src/lib/ffmpeg/avcodec.pas @@ -14,20 +14,16 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - *) - -(* + * * This is a part of Pascal porting of ffmpeg. * - Originally by Victor Zinetz for Delphi and Free Pascal on Windows. * - For Mac OS X, some modifications were made by The Creative CAT, denoted as CAT * in the source codes. * - Changes and updates by the UltraStar Deluxe Team - *) - -(* + * * Conversion of libavcodec/avcodec.h * Min. version: 51.16.0, revision 6577, Sat Oct 7 15:30:46 2006 UTC - * Max. version: 52.67.2, revision 23191, Wed May 19 19:30 2010 CET + * Max. version: 52.67.2, revision 23153, Sun May 30 20:30 2010 CET * *) @@ -3015,7 +3011,11 @@ type *) crf_max: cfloat; {$IFEND} - end; + + {$IF LIBAVCODEC_VERSION >= 52067002} // >= 52.67.2 + log_level_offset: cint; + {$IFEND} + end; {TAVCodecContext} (** * AVCodec. |