Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
libdvdread: Can't seek to block... (solved)
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
Cereza
Guru
Guru


Joined: 14 Apr 2006
Posts: 428

PostPosted: Sat Jan 10, 2009 2:42 am    Post subject: libdvdread: Can't seek to block... (solved) Reply with quote

Hello.

DVD movies starts and runs fine, but in some point (about at the middle of the film), they always fail with "libdvdread: Can't seek to block <a number>"

It happens in all movies, in a specific moment for each movie, always the same.

Tried in vlc and Kaffeine, with different DVD drives and different versions of libdvdread but it persist always.


Last edited by Cereza on Mon Jan 12, 2009 3:57 pm; edited 1 time in total
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Sat Jan 10, 2009 2:46 am    Post subject: Reply with quote

Hi, can you post your emerge --info plz ?
Back to top
View user's profile Send private message
Cereza
Guru
Guru


Joined: 14 Apr 2006
Posts: 428

PostPosted: Sat Jan 10, 2009 10:11 am    Post subject: Reply with quote

Here it is. And I use kernel 2.6.28 with genkernel. x86.
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Sat Jan 10, 2009 12:54 pm    Post subject: Reply with quote

Hi, I see that you use the 2008.0 profile :
Code:

Portage 2.1.6.3 (default/linux/x86/2008.0, gcc-4.3.2, glibc-2.9_p20081201-r0, 2.6.28 i686)


Maybe you should try this :

Code:

# eselect profile list


Check for the profile that finish with 2008.0/desktop and remember his number.

Code:

# eselect profile set number
# emerge -auDNv world
# emerge --info


After that, rerun your DVD, and I'm sure that it will work properly.
Back to top
View user's profile Send private message
Cereza
Guru
Guru


Joined: 14 Apr 2006
Posts: 428

PostPosted: Sun Jan 11, 2009 10:47 am    Post subject: Reply with quote

As I expected It didn't work, because movies crashes about the middle but starts fine, and I can't imagine how that can be related to use flags (but I'm not an expert anyway so I tried it). Also, a profile change is workaround, a huge one. I knew I were using 2008.0, I chosen it, It's not officially supported?
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Sun Jan 11, 2009 1:06 pm    Post subject: Reply with quote

The 2008.0 profile is for someone that what to use a box without a Window Manager or it's for expert who know how to tweak their Use Flag.

So, that's why I recommend the 2008.0/desktop, because everything is set automagically for someone who use a Window Manager.
Back to top
View user's profile Send private message
Cereza
Guru
Guru


Joined: 14 Apr 2006
Posts: 428

PostPosted: Sun Jan 11, 2009 1:11 pm    Post subject: Reply with quote

Yes I know :) I chosen 2008.0 because I like to strongly customize my use flags. Anyways, I changed to desktop and it didn't solved the problem so the thread stills open. Any ideas?
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Sun Jan 11, 2009 1:14 pm    Post subject: Reply with quote

Hi, can you explain me that plz :

Code:

ACCEPT_KEYWORDS="amd64 x86 ~amd64 ~x86"
Back to top
View user's profile Send private message
i92guboj
Bodhisattva
Bodhisattva


Joined: 30 Nov 2004
Posts: 10315
Location: Córdoba (Spain)

PostPosted: Sun Jan 11, 2009 2:57 pm    Post subject: Reply with quote

d2_racing wrote:
Hi, can you explain me that plz :

Code:

ACCEPT_KEYWORDS="amd64 x86 ~amd64 ~x86"


Keywords do not instruct the compiler to do anything. It's just a way to tell portage which set of package would be available when calculating emerges. I used to do this back in the times when packages in x86 used to take months to get into amd64, which was kind of annoying. So I just accepted the x86 (or ~x86) keyword in my amd64 installation. It worked most times. Nowadays just ~amd64 should give you the same set of packages. They get keyworded much faster now. Since she migrated to x86, having amd64 in the keywords doesn't make much sense (it's probably a leftover) but it shouldn't make any difference either because amd64 is for the most part a subset of x86, so it's mostly redundant, but should be innocuous. Anyway, I'd remove the amd64 stuff just to be sure.

Also note that having ACCEPT_KEYWORDS="~amd64 ~x86" implies ACCEPT_KEYWORDS="amd64 x86 ~amd64 ~x86", that's what emerge --info will output. But that doesn't mean that's the line you wrote on make.conf

Also, the desktop profile will set a default set of USE flags, but that has nothing to do with this. libdvdread or whatever her player is using for playback is definitely there. If the support wasn't compiled the player couldn't even start to play the movie. Since it starts and the abort for whatever reason the dvd support is there for sure, hence, USE flags are not an issue here, and hence, the profile is not either.

When things works and then crash the most probable causes are that either the software is bogus (that can mean lots of things) or the dvd reader is broken.
Back to top
View user's profile Send private message
Cereza
Guru
Guru


Joined: 14 Apr 2006
Posts: 428

PostPosted: Sun Jan 11, 2009 3:56 pm    Post subject: Reply with quote

i92guboj wrote:
d2_racing escribió:
Hi, can you explain me that plz :

Código:

ACCEPT_KEYWORDS="amd64 x86 ~amd64 ~x86"


Keywords do not instruct the compiler to do anything. It's just a way to tell portage which set of package would be available when calculating emerges. I used to do this back in the times when packages in x86 used to take months to get into amd64, which was kind of annoying. So I just accepted the x86 (or ~x86) keyword in my amd64 installation. It worked most times. Nowadays just ~amd64 should give you the same set of packages. They get keyworded much faster now. Since she migrated to x86, having amd64 in the keywords doesn't make much sense (it's probably a leftover) but it shouldn't make any difference either because amd64 is for the most part a subset of x86, so it's mostly redundant, but should be innocuous. Anyway, I'd remove the amd64 stuff just to be sure.

Also note that having ACCEPT_KEYWORDS="~amd64 ~x86" implies ACCEPT_KEYWORDS="amd64 x86 ~amd64 ~x86", that's what emerge --info will output. But that doesn't mean that's the line you wrote on make.conf

Also, the desktop profile will set a default set of USE flags, but that has nothing to do with this. libdvdread or whatever her player is using for playback is definitely there. If the support wasn't compiled the player couldn't even start to play the movie. Since it starts and the abort for whatever reason the dvd support is there for sure, hence, USE flags are not an issue here, and hence, the profile is not either.

When things works and then crash the most probable causes are that either the software is bogus (that can mean lots of things) or the dvd reader is broken.


He's right :D I forgotten to erase the amd64 keywords when I changed to amd64, but that doesn't affect my system at all.

He also found the solution to my problem, uninstall libdvdread and recompile xine-lib to make it use his own way to read DVD instead of use libdvdread, now I can see DVD movies correctly from Kaffeine.
Back to top
View user's profile Send private message
i92guboj
Bodhisattva
Bodhisattva


Joined: 30 Nov 2004
Posts: 10315
Location: Córdoba (Spain)

PostPosted: Sun Jan 11, 2009 4:01 pm    Post subject: Reply with quote

Cereza wrote:

He also found the solution to my problem, uninstall libdvdread and recompile xine-lib to make it use his own way to read DVD instead of use libdvdread, now I can see DVD movies correctly from Kaffeine.


My theory is that when xine-lib finds an external libdvdread, it uses it instead of its own internal copy of the same package. There seems to be the issue. However we would need to do some testing to make sure that's the case. Maybe it was something else which fixed it. In any case, it's clear now that it was some kind of sofware issue between xine and libdvdread.

Edited: this bug seems to confirm my suspicion.

https://bugs.gentoo.org/show_bug.cgi?id=208691

It seems that the problem is that copy protection schemes -once more- screw up the file system, making it non-standard, and impossing -yet again- suffering to those of us who use legal media (while doing nothing at all against piracy :roll: ). xine-lib and vlc, according to that bug- have been patched to fix this. However, upstream libdvdread seem to suffer still from this problem. So, I think we have found our problem.
Back to top
View user's profile Send private message
humanthing
Tux's lil' helper
Tux's lil' helper


Joined: 29 Nov 2006
Posts: 141

PostPosted: Tue May 05, 2009 8:07 pm    Post subject: Reply with quote

Hi,

I just recently bought a new DVD (seems to be copy protected) and it doesn't really play well. I searched the forums and googled a bit but didn't really find a solution, this post seems closest though...

My problem is, that it starts playback but it seems like with lots of glitches or stutterings (don't really know how to describe it...).
I thought this (http://tobias.rautenkranz.ch/libdvdread_ifo.html.de) could be related to my problem, which is also what the bug report in the previous post indicates (btw I added a comment to the bug, guess it was just bare desperation, I should have posted here first, sorry...).

So my question is, does the bug still apply? Can I somehow fix the libs (i.e. patch them myself), or is this a completely different problem?

I'm using
Code:
libdvdnav-0.1.10
libdvdread-0.9.7
vlc-0.9.9a


I would be very grateful if someone could help me!

Cheers
_________________
""Sir! We are surrounded!" - "Excellent! We can attack in any direction!""
Back to top
View user's profile Send private message
A.S. Pushkin
Guru
Guru


Joined: 09 Nov 2002
Posts: 418
Location: dx/dt, dy/dt, dz/dt, t

PostPosted: Mon May 18, 2009 4:08 am    Post subject: libdvdread Reply with quote

Let me add that uninstalling libdvdread, I was running 0.9.7, and recompiling xine-lib has restored my ability
to watch movies. The Mplayer log shows no error cracking the dvd key as was typical with libdvdread installed.

It's late, but "The Punisher" is running and I can scan forward and backward with the movie ending. Thanks!

Thanks.

EDIT: This raises still another question. I uninstalled libdvdread and it restored my ability to view DVD movies, but it raises another issue. Apps like "transcode" have libdvdread as dependency, and that as a dependency of k3b. Can I install libdvdread without the xine-lib problem? If so how? BTW, Ihave two other apps that require transcode.

Thanks again!

EDIT:

I'm back to the same issue, it would seem. IF anone can inter[ret the output of mplayer, I'd appreciate it. It is the same DVD, btw.

/usr/bin/mplayer -noquiet -nofs -lavdopts threads=3 -sub-fuzziness 1 -identify -slave -vo gl:yuv=2:force-pbo:ati-hack -ao alsa:device=hw=0.2 -zoom -nokeepaspect -framedrop -autosync 100 -dr -double -input conf=/usr/share/smplayer/input.conf -stop-xscreensaver -wid 65011724 -monitorpixelaspect 1 -ass -embeddedfonts -ass-line-spacing 0 -ass-font-scale 1 -ass-styles /home/pushkin/.config/smplayer/styles.ass -fontconfig -font Arial -subcp ISO-8859-1 -subpos 100 -volume 83 -dvd-device /dev/cdrom4 -dvdangle 1 -nocache -osdlevel 0 -nocorrect-pts -vf-add eq2,hue -vf-add screenshot -slices -channels 4 -af volnorm=2,scaletempo,equalizer=0:0:0:0:0:0:0:0:0:0 -softvol -softvol-max 110 dvd://1

MPlayer SVN-r28450-4.3.2 (C) 2000-2009 MPlayer Team
CPU: AMD Athlon(tm) 64 Processor 3200+ (Family: 15, Model: 95, Stepping: 2)
Terminal type `unknown' is not defined.

Playing dvd://1.
libdvdread: Using libdvdcss version 1.2.9 for DVD access
ID_DVD_TITLES=11
ID_DVD_TITLE_1_CHAPTERS=29
ID_DVD_TITLE_1_ANGLES=1
ID_DVD_TITLE_2_CHAPTERS=2
ID_DVD_TITLE_2_ANGLES=1
ID_DVD_TITLE_3_CHAPTERS=2
ID_DVD_TITLE_3_ANGLES=1
ID_DVD_TITLE_4_CHAPTERS=5
ID_DVD_TITLE_4_ANGLES=1
ID_DVD_TITLE_5_CHAPTERS=2
ID_DVD_TITLE_5_ANGLES=1
ID_DVD_TITLE_6_CHAPTERS=2
ID_DVD_TITLE_6_ANGLES=1
ID_DVD_TITLE_7_CHAPTERS=1
ID_DVD_TITLE_7_ANGLES=1
ID_DVD_TITLE_8_CHAPTERS=1
ID_DVD_TITLE_8_ANGLES=1
ID_DVD_TITLE_9_CHAPTERS=1
ID_DVD_TITLE_9_ANGLES=1
ID_DVD_TITLE_10_CHAPTERS=2
ID_DVD_TITLE_10_ANGLES=1
ID_DVD_TITLE_11_CHAPTERS=2
ID_DVD_TITLE_11_ANGLES=1
ID_DVD_TITLE_1_LENGTH=8334.834
libdvdread: Can't seek to block 3477094
libdvdread: Can't seek to block 3477094
libdvdread: Invalid IFO for title 2 (VTS_02_0.IFO).
libdvdread: Can't seek to block 3580205
libdvdread: Can't seek to block 3580205
libdvdread: Invalid IFO for title 3 (VTS_03_0.IFO).
libdvdread: Can't seek to block 3759316
libdvdread: Can't seek to block 3759316
libdvdread: Invalid IFO for title 4 (VTS_04_0.IFO).
libdvdread: Can't seek to block 3872847
libdvdread: Can't seek to block 3872847
libdvdread: Invalid IFO for title 5 (VTS_05_0.IFO).
libdvdread: Can't seek to block 3893417
libdvdread: Can't seek to block 3893417
libdvdread: Invalid IFO for title 6 (VTS_06_0.IFO).
libdvdread: Can't seek to block 3940392
libdvdread: Can't seek to block 3940392
libdvdread: Invalid IFO for title 7 (VTS_07_0.IFO).
libdvdread: Can't seek to block 3942277
libdvdread: Can't seek to block 3942277
libdvdread: Invalid IFO for title 8 (VTS_08_0.IFO).
libdvdread: Can't seek to block 3949829
libdvdread: Can't seek to block 3949829
libdvdread: Invalid IFO for title 9 (VTS_09_0.IFO).
libdvdread: Can't seek to block 3957381
libdvdread: Can't seek to block 3957381
libdvdread: Invalid IFO for title 10 (VTS_10_0.IFO).
libdvdread: Can't seek to block 3967142
libdvdread: Can't seek to block 3967142
libdvdread: Invalid IFO for title 11 (VTS_11_0.IFO).
libdvdread: Can't seek to block 3477094
libdvdread: DVDDiscId read returned 0 bytes, wanted 18432
ID_DVD_VOLUME_ID=PUNISHER_EC
There are 11 titles on this DVD.
ID_DVD_CURRENT_TITLE=1
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000157
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x00000200
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x0002b524
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x00350e6f
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_0.VOB (0x00350e6f)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x00350ea8
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_02_1.VOB (0x00350ea8)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x0036a139
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_03_0.VOB (0x0036a139)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x0036a172
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_03_1.VOB (0x0036a172)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_0.VOB at 0x00395cde
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_04_0.VOB (0x00395cde)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x00395d17
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_04_1.VOB (0x00395d17)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_05_0.VOB at 0x003b1858
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_05_0.VOB (0x003b1858)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_05_1.VOB at 0x003b1891
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_05_1.VOB (0x003b1891)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_06_0.VOB at 0x003b68b2
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_06_0.VOB (0x003b68b2)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_06_1.VOB at 0x003b68eb
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_06_1.VOB (0x003b68eb)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_07_0.VOB at 0x003c2031
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_07_0.VOB (0x003c2031)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_07_1.VOB at 0x003c206a
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_07_1.VOB (0x003c206a)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_08_0.VOB at 0x003c278e
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_08_0.VOB (0x003c278e)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_08_1.VOB at 0x003c27c7
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_08_1.VOB (0x003c27c7)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_09_0.VOB at 0x003c450e
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_09_0.VOB (0x003c450e)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_09_1.VOB at 0x003c4547
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_09_1.VOB (0x003c4547)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_10_0.VOB at 0x003c628e
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_10_0.VOB (0x003c628e)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_10_1.VOB at 0x003c62c7
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_10_1.VOB (0x003c62c7)!!
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_11_0.VOB at 0x003c88af
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_11_0.VOB (0x003c88af)
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_11_1.VOB at 0x003c88e8
libdvdread: Error cracking CSS key for /VIDEO_TS/VTS_11_1.VOB (0x003c88e8)!!
libdvdread: Elapsed time 0
libdvdread: Found 11 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (5.1) language: en aid: 128.
ID_AUDIO_ID=128
ID_AID_128_LANG=en
audio stream: 1 format: dts (5.1/6.1) language: en aid: 137.
ID_AUDIO_ID=137
ID_AID_137_LANG=en
number of audio channels on disk: 2.
subtitle ( sid ): 0 language: en
ID_SUBTITLE_ID=0
ID_SID_0_LANG=en
subtitle ( sid ): 1 language: es
ID_SUBTITLE_ID=1
ID_SID_1_LANG=es
number of subtitles on disk: 2
CHAPTERS: 00:00:00,00:07:36,00:10:38,00:15:37,00:19:17,00:22:06,00:25:12,00:29:57,00:35:52,00:39:27,00:45:08,00:48:55,00:53:48,00:59:48,01:04:39,01:10:39,01:12:42,01:26:18,01:31:10,01:38:34,01:43:19,01:46:25,01:53:32,01:56:55,02:02:16,02:03:52,02:06:43,02:09:16,02:18:53,
ID_VIDEO_ID=0
MPEG-PS file format detected.
ID_AUDIO_ID=128
VIDEO: MPEG2 720x480 (aspect 3) 29.970 fps 9800.0 kbps (1225.0 kbyte/s)
ID_FILENAME=dvd://1
ID_DEMUXER=mpegps
ID_VIDEO_FORMAT=0x10000002
ID_VIDEO_BITRATE=9800000
ID_VIDEO_WIDTH=720
ID_VIDEO_HEIGHT=480
ID_VIDEO_FPS=29.970
ID_VIDEO_ASPECT=0.0000
ID_AUDIO_FORMAT=8192
ID_AUDIO_BITRATE=0
ID_AUDIO_RATE=0
ID_AUDIO_NCH=0
ID_LENGTH=8334.83
ID_SEEKABLE=1
ID_CHAPTERS=29
[gl] using extended formats. Use -vo gl:nomanyfmts if playback fails.
Couldn't open video filter 'ass'.
ASS: cannot add video filter
Opening video filter: [screenshot]
Opening video filter: [hue]
Opening video filter: [eq2]
[ass] Init
[ass] Updating font cache.
==========================================================================
Opening video decoder: [mpegpes] MPEG 1/2 Video passthrough
VDec: vo config request - 720 x 480 (preferred colorspace: Mpeg PES)
Could not find matching colorspace - retrying with -vf scale...
Opening video filter: [scale]
The selected video_out device is incompatible with this codec.
Try appending the scale filter to your filter list,
e.g. -vf spp,scale instead of -vf spp.
VDecoder init failed :(
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffmpeg2] vfm: ffmpeg (FFmpeg MPEG-2)
==========================================================================
ID_VIDEO_CODEC=ffmpeg2
==========================================================================
Opening audio decoder: [liba52] AC3 decoding with liba52
Using SSE optimized IMDCT transform
Using MMX optimized resampler
AUDIO: 48000 Hz, 4 ch, s16le, 448.0 kbit/14.58% (ratio: 56000->384000)
ID_AUDIO_BITRATE=448000
ID_AUDIO_RATE=48000
ID_AUDIO_NCH=4
Selected audio codec: [a52] afm: liba52 (AC3-liba52)
==========================================================================
[AO_ALSA] Format floatle is not supported by hardware, trying default.
AO: [alsa] 48000Hz 1ch s16le (2 bytes per sample)
ID_AUDIO_CODEC=a52
[Mixer] No hardware mixing, inserting volume filter.
Starting playback...
ID_AUDIO_ID=137
VDec: vo config request - 720 x 480 (preferred colorspace: Planar YV12)
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is 1.78:1 - prescaling to correct movie aspect.
ID_VIDEO_ASPECT=1.7778
SwScaler: reducing / aligning filtersize 5 -> 4
SwScaler: reducing / aligning filtersize 5 -> 4
SwScaler: reducing / aligning filtersize 1 -> 1
SwScaler: reducing / aligning filtersize 5 -> 4
[swscaler @ 0x8941b20]BICUBIC scaler, from yuv420p to rgb24 using MMX2
[swscaler @ 0x8941b20]using 4-tap MMX scaler for horizontal luminance scaling
[swscaler @ 0x8941b20]using 4-tap MMX scaler for horizontal chrominance scaling
[swscaler @ 0x8941b20]using n-tap MMX scaler for vertical scaling (BGR)
[swscaler @ 0x8941b20]720x480 -> 854x480
VO: [gl] 720x480 => 854x480 Planar YV12 [zoom]
X11 error: BadMatch (invalid parameter attributes)
X11 error: BadAccess during XSelectInput Call
X11 error: The 'ButtonPressMask' mask of specified window has probably already used by another appication (see man XSelectInput)
X11 error: MPlayer discards mouse control (reconfiguring)
[mpeg2video @ 0x8899300]ac-tex damaged at 6 7
[mpeg2video @ 0x8899300]Warning MVs not available
[mpeg2video @ 0x8899300]concealing 1035 DC, 1035 AC, 1035 MV errors
ID_VIDEO_TRACK=0
ID_AUDIO_TRACK=128

demux_mpg: 24000/1001fps progressive NTSC content detected, switching framerate.
ID_SUBTITLE_ID=0
ID_SUBTITLE_ID=1

***********

It appears ffmpeg supplies codecs, too. If so, why do I need win32codecs or even amd64codecs, though in this last case I'm still running a 32-bit system?

After an upgrade of gcc I'm rebuilding world.

Thanks.
_________________
ASPushkin

"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell


Last edited by A.S. Pushkin on Mon Jun 01, 2009 1:54 am; edited 3 times in total
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Mon May 18, 2009 1:49 pm    Post subject: Reply with quote

No problem :P
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum