>[transcode] PCM -> AC3
>codec type or id mismatches
>[transcode] warning: tc_audio_init_ffmpeg: could not open mpa codec !
It looks like there's been a change in the libavcodec interface. Try
applying the patch below and see if that helps.
--Andrew Church
[email protected]
http://achurch.org/
---------------------------------------------------------------------------
diff -r 4e4c3693df55 export/aud_aux.c
--- a/export/aud_aux.c Tue Apr 06 09:14:49 2010 +0900
+++ b/export/aud_aux.c Tue Apr 06 09:24:20 2010 +0900
@@ -347,6 +347,7 @@
//-- set parameters (bitrate, channels and sample-rate) --
//--------------------------------------------------------
memset(&mpa_ctx, 0, sizeof(mpa_ctx)); // default all
+ mpa_ctx.codec_type = CODEC_TYPE_AUDIO;
mpa_ctx.bit_rate = vob->mp3bitrate * 1000; // bitrate dest.
mpa_ctx.channels = vob->dm_chan; // channels
mpa_ctx.sample_rate = vob->a_rate;