diff -up transcode-1.1.6/export/aud_aux.c.ff08 transcode-1.1.6/export/aud_aux.c
--- transcode-1.1.6/export/aud_aux.c.ff08	2011-10-22 14:31:47.000000000 +0200
+++ transcode-1.1.6/export/aud_aux.c	2011-10-22 15:14:43.261399625 +0200
@@ -347,7 +347,11 @@ static int tc_audio_init_ffmpeg(vob_t *v
     //-- set parameters (bitrate, channels and sample-rate) --
     //--------------------------------------------------------
     avcodec_get_context_defaults(&mpa_ctx);
+#if LIBAVCODEC_VERSION_MAJOR < 53
     mpa_ctx.codec_type  = CODEC_TYPE_AUDIO;
+#else
+    mpa_ctx.codec_type  = AVMEDIA_TYPE_AUDIO;
+#endif
     mpa_ctx.bit_rate    = vob->mp3bitrate * 1000;  // bitrate dest.
     mpa_ctx.channels    = vob->dm_chan;            // channels
     mpa_ctx.sample_rate = vob->a_rate;
