| Summary: | media-video/transcode - error "could not open mpa codec !" | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Harry Holt <hholt> |
| Component: | Current packages | Assignee: | Gentoo Media-video project <media-video> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | CC: | dschridde+gentoobugs |
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Harry Holt
2010-05-05 02:40:26 UTC
There is a patch for this:
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;
Fixed in CVS, thanks Harry. |