Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

06.04.2013, 17:44

i956 keine HD-Wiedergabe

Hi,
ich habe für meinen HTPC ein neues Mainboard gekauft. Und zwar ein Biostar NM70I-847. Dies hat eine CPU und Intel HD Grafik onboard.
Ich habe also folgendes in der make.conf eingetragen:

Quellcode

1
2
VIDEO_CARDS="intel i956"
USE="... vaapi ..."


Dann hab ich mit einem

Quellcode

1
2
emerge --ask xorg-drivers
emerge --ask --changed-use --deep @world


alles neu emergen lassen.

Da mplayer und xine kein vaapi unterstützen, habe ich zum testen vlc und xbmc (was hier auch laufen soll) genommen.

Aber erst mal zur Ausgabe von "vainfo"

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
libva: VA-API version 0.32.0
libva: va_getDriverName() returns 0
libva: Trying to open /usr/lib/va/drivers/i965_drv_video.so
libva: va_openDriver() returns 0
vainfo: VA-API version: 0.32 (libva 1.0.15)
vainfo: Driver version: Intel i965 driver - 1.0.17
vainfo: Supported profile and entrypoints
      VAProfileMPEG2Simple            :	VAEntrypointVLD
      VAProfileMPEG2Main              :	VAEntrypointVLD
      VAProfileH264Baseline           :	VAEntrypointVLD
      VAProfileH264Baseline           :	VAEntrypointEncSlice
      VAProfileH264Main               :	VAEntrypointVLD
      VAProfileH264Main               :	VAEntrypointEncSlice
      VAProfileH264High               :	VAEntrypointVLD
      VAProfileH264High               :	VAEntrypointEncSlice
      VAProfileVC1Simple              :	VAEntrypointVLD
      VAProfileVC1Main                :	VAEntrypointVLD
      VAProfileVC1Advanced            :	VAEntrypointVLD


Hier schaut ja alles gut aus.

Nun mal die Ausgabe von vlc beim abspielen von einem 1080p-Video:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
xbmc@htpc ~ $ vlc --ffmpeg-hw /mnt/raid5/1080p.mkv 
VLC media player 2.0.5 Twoflower (revision 2.0.5-0-g1661b7d)
[0x95e1e40] main xml reader error: XML reader not found
[0x955d9e8] main libvlc: VLC wird mit dem Standard-Interface ausgeführt. Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
Remote-Control-Interface initialisiert. Geben Sie `help' für Hilfe ein.
libva: VA-API version 0.32.0
libva: va_getDriverName() returns 0
libva: Trying to open /usr/lib/va/drivers/i965_drv_video.so
libva: va_openDriver() returns 0
[0x95e8590] avcodec decoder: Using VA API version 0.32 for hardware decoding.
[0xb44c8e08] freetype spu text error: failed to load font file /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf
[0xb44c8e08] freetype spu text error: failed to load font file /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf
qs[0xb6e005f0] main input error: ES_OUT_SET_(GROUP_)PCR  is called too late (pts_delay increased to 300 ms)
[0xb6e005f0] main input error: ES_OUT_RESET_PCR called
[h264 @ 0x95f0e60] reference picture missing during reorder
[h264 @ 0x95f0e60] reference picture missing during reorder
[h264 @ 0x95f0e60] reference picture missing during reorder
[h264 @ 0x95f0e60] Missing reference picture
[h264 @ 0x95f0e60] Missing reference picture
[h264 @ 0x95f0e60] Missing reference picture
[h264 @ 0x95f0e60] reference picture missing during reorder
[h264 @ 0x95f0e60] Missing reference picture


Das Video ruckelt wie Sau und die CPU-Auslastung ist bei 100%.
Versuche ich es in XBMC, hängt sich XBMC gleich ganz auf.

Um auszuschließen, das es am System liegt, habe ich openElec (Live-System mit XBMC) gebootet.
Dort kann ich in XBMC das 1080p-Material problemlos abspielen. Das Problem muss also am Gentoo-System liegen.

Hier mal nich die Xorg.0.log:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
X.Org X Server 1.13.1
Release Date: 2012-12-13
[   250.295] X Protocol Version 11, Revision 0
[   250.295] Build Operating System: Linux 3.5.7-gentoo i686 Gentoo
[   250.295] Current Operating System: Linux htpc 3.7.9-gentoo #4 SMP Tue Jun 4 14:50:53 CEST 2013 i686
[   250.295] Kernel command line: root=/dev/sda3 i915.i915_enable_rc6=0 #video=inteldrmfb:1920x1080-24 #splash=silent,fadein,theme:powered_by_gentoo,fadeout quiet console=tty1
[   250.295] Build Date: 26 January 2013  05:08:26PM
[   250.295]  
[   250.295] Current version of pixman: 0.28.0
[   250.296] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   250.296] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   250.296] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Apr  6 17:40:00 2013
[   250.296] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   250.296] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   250.297] (==) No Layout section.  Using the first Screen section.
[   250.297] (==) No screen section available. Using defaults.
[   250.297] (**) |-->Screen "Default Screen Section" (0)
[   250.297] (**) |   |-->Monitor "<default monitor>"
[   250.297] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[   250.297] (**) |   |-->Device "intel"
[   250.297] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   250.297] (==) Automatically adding devices
[   250.297] (==) Automatically enabling devices
[   250.297] (==) Automatically adding GPU devices
[   250.297] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[   250.297] (==) ModulePath set to "/usr/lib/xorg/modules"
[   250.297] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   250.297] (II) Loader magic: 0x8260600
[   250.297] (II) Module ABI versions:
[   250.297] 	X.Org ANSI C Emulation: 0.4
[   250.297] 	X.Org Video Driver: 13.1
[   250.297] 	X.Org XInput driver : 18.0
[   250.297] 	X.Org Server Extension : 7.0
[   250.298] (II) config/udev: Adding drm device (/dev/dri/card0)
[   250.300] (--) PCI:*(0:0:2:0) 8086:0106:1565:110f rev 9, Mem @ 0xf7800000/4194304, 0xe0000000/268435456, I/O @ 0x0000f000/64
[   250.300] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   250.300] Initializing built-in extension Generic Event Extension
[   250.300] Initializing built-in extension SHAPE
[   250.300] Initializing built-in extension MIT-SHM
[   250.300] Initializing built-in extension XInputExtension
[   250.300] Initializing built-in extension XTEST
[   250.300] Initializing built-in extension BIG-REQUESTS
[   250.300] Initializing built-in extension SYNC
[   250.300] Initializing built-in extension XKEYBOARD
[   250.300] Initializing built-in extension XC-MISC
[   250.300] Initializing built-in extension XINERAMA
[   250.300] Initializing built-in extension XFIXES
[   250.300] Initializing built-in extension RENDER
[   250.300] Initializing built-in extension RANDR
[   250.300] Initializing built-in extension COMPOSITE
[   250.300] Initializing built-in extension DAMAGE
[   250.300] Initializing built-in extension MIT-SCREEN-SAVER
[   250.300] Initializing built-in extension DOUBLE-BUFFER
[   250.301] Initializing built-in extension RECORD
[   250.301] Initializing built-in extension DPMS
[   250.301] Initializing built-in extension X-Resource
[   250.301] Initializing built-in extension XVideo
[   250.301] Initializing built-in extension XVideo-MotionCompensation
[   250.301] Initializing built-in extension XFree86-VidModeExtension
[   250.301] Initializing built-in extension XFree86-DGA
[   250.301] Initializing built-in extension XFree86-DRI
[   250.301] Initializing built-in extension DRI2
[   250.301] (II) LoadModule: "glx"
[   250.301] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   250.302] (II) Module glx: vendor="X.Org Foundation"
[   250.302] 	compiled for 1.13.1, module version = 1.0.0
[   250.302] 	ABI class: X.Org Server Extension, version 7.0
[   250.302] (==) AIGLX enabled
[   250.302] Loading extension GLX
[   250.302] (II) LoadModule: "intel"
[   250.302] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[   250.302] (II) Module intel: vendor="X.Org Foundation"
[   250.302] 	compiled for 1.13.1, module version = 2.20.13
[   250.302] 	Module class: X.Org Video Driver
[   250.302] 	ABI class: X.Org Video Driver, version 13.1
[   250.302] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
	Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
	Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
	Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
	Haswell Server (GT2+), Haswell SDV Desktop (GT1),
	Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
	Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
	Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
	Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
	Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
	Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
	Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
	Haswell ULT Server (GT1), Haswell ULT Server (GT2),
	Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
	Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
	Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
	Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
	Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
	ValleyView PO board
[   250.304] (--) using VT number 6

[   250.318] (II) intel(0): using device path '/dev/dri/card0'
[   250.318] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   250.318] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[   250.318] (==) intel(0): RGB weight 888
[   250.318] (==) intel(0): Default visual is TrueColor
[   250.319] (--) intel(0): Integrated Graphics Chipset: Intel(R) Sandybridge Mobile (GT1)
[   250.319] (**) intel(0): Framebuffer tiled
[   250.319] (**) intel(0): Pixmaps tiled
[   250.319] (**) intel(0): 3D buffers tiled
[   250.319] (**) intel(0): Throttling enabled
[   250.319] (**) intel(0): Delayed flush enabled
[   250.319] (**) intel(0): "Tear free" disabled
[   250.319] (**) intel(0): Forcing per-crtc-pixmaps? no
[   250.323] (II) intel(0): Output VGA1 has no monitor section
[   250.474] (II) intel(0): Output HDMI1 has no monitor section
[   250.498] (II) intel(0): Output DP1 has no monitor section
[   250.502] (II) intel(0): EDID for output VGA1
[   250.652] (II) intel(0): EDID for output HDMI1
[   250.652] (II) intel(0): Manufacturer: GSM  Model: 1  Serial#: 16843009
[   250.652] (II) intel(0): Year: 2009  Week: 2
[   250.652] (II) intel(0): EDID Version: 1.3
[   250.652] (II) intel(0): Digital Display Input
[   250.652] (II) intel(0): Max Image Size [cm]: horiz.: 115  vert.: 65
[   250.652] (II) intel(0): Gamma: 2.20
[   250.652] (II) intel(0): No DPMS capabilities specified
[   250.652] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   250.652] (II) intel(0): First detailed timing is preferred mode
[   250.652] (II) intel(0): redX: 0.640 redY: 0.340   greenX: 0.300 greenY: 0.690
[   250.652] (II) intel(0): blueX: 0.138 blueY: 0.038   whiteX: 0.282 whiteY: 0.297
[   250.652] (II) intel(0): Supported established timings:
[   250.652] (II) intel(0): 720x400@70Hz
[   250.652] (II) intel(0): 640x480@60Hz
[   250.652] (II) intel(0): 800x600@60Hz
[   250.652] (II) intel(0): 1024x768@60Hz
[   250.652] (II) intel(0): Manufacturer's mask: 0
[   250.652] (II) intel(0): Supported standard timings:
[   250.652] (II) intel(0): #0: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   250.652] (II) intel(0): #1: hsize: 1024  vsize 768  refresh: 60  vid: 16481
[   250.652] (II) intel(0): #2: hsize: 800  vsize 600  refresh: 60  vid: 16453
[   250.652] (II) intel(0): #3: hsize: 640  vsize 480  refresh: 60  vid: 16433
[   250.652] (II) intel(0): Supported detailed timing:
[   250.652] (II) intel(0): clock: 148.5 MHz   Image Size:  1150 x 650 mm
[   250.652] (II) intel(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[   250.652] (II) intel(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[   250.652] (II) intel(0): Supported detailed timing:
[   250.652] (II) intel(0): clock: 74.2 MHz   Image Size:  1150 x 650 mm
[   250.652] (II) intel(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[   250.652] (II) intel(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[   250.652] (II) intel(0): Ranges: V min: 58 V max: 62 Hz, H min: 30 H max: 83 kHz, PixClock max 165 MHz
[   250.652] (II) intel(0): Monitor name: LG TV
[   250.652] (II) intel(0): Supported detailed timing:
[   250.652] (II) intel(0): clock: 74.2 MHz   Image Size:  1150 x 650 mm
[   250.652] (II) intel(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[   250.652] (II) intel(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[   250.652] (II) intel(0): Supported detailed timing:
[   250.652] (II) intel(0): clock: 74.2 MHz   Image Size:  1150 x 650 mm
[   250.652] (II) intel(0): h_active: 1280  h_sync: 1344  h_sync_end 1472 h_blank_end 1664 h_border: 0
[   250.652] (II) intel(0): v_active: 720  v_sync: 723  v_sync_end 728 v_blanking: 732 v_border: 0
[   250.652] (II) intel(0): Supported detailed timing:
[   250.652] (II) intel(0): clock: 148.5 MHz   Image Size:  1150 x 650 mm
[   250.652] (II) intel(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[   250.652] (II) intel(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[   250.652] (II) intel(0): Supported detailed timing:
[   250.653] (II) intel(0): clock: 85.5 MHz   Image Size:  1150 x 650 mm
[   250.653] (II) intel(0): h_active: 1360  h_sync: 1424  h_sync_end 1536 h_blank_end 1792 h_border: 0
[   250.653] (II) intel(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 795 v_border: 0
[   250.653] (II) intel(0): Number of EDID sections to follow: 1
[   250.653] (II) intel(0): EDID (in hex):
[   250.653] (II) intel(0): 	00ffffffffffff001e6d010001010101
[   250.653] (II) intel(0): 	02130103807341780acf74a3574cb023
[   250.653] (II) intel(0): 	09484ca1080081806140454031400101
[   250.653] (II) intel(0): 	010101010101023a801871382d40582c
[   250.653] (II) intel(0): 	45007e8a4200001e011d007251d01e20
[   250.653] (II) intel(0): 	6e2855007e8a4200001e000000fd003a
[   250.653] (II) intel(0): 	3e1e5310000a202020202020000000fc
[   250.653] (II) intel(0): 	004c472054560a202020202020200104
[   250.653] (II) intel(0): 	020326f14e101f841305140302122021
[   250.653] (II) intel(0): 	2215012615075009570767030c001000
[   250.653] (II) intel(0): 	b82de3050301011d8018711c1620582c
[   250.653] (II) intel(0): 	25007e8a4200009e011d008051d00c20
[   250.653] (II) intel(0): 	408035007e8a4200001e023a80187138
[   250.653] (II) intel(0): 	2d40582c45007e8a4200001e662150b0
[   250.653] (II) intel(0): 	51001b30407036007e8a4200001e0000
[   250.653] (II) intel(0): 	000000000000000000000000000000f9
[   250.653] (II) intel(0): Printing probed modes for output HDMI1
[   250.653] (II) intel(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[   250.653] (II) intel(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   250.653] (II) intel(0): Modeline "1920x1080"x30.0   74.25  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.8 kHz e)
[   250.653] (II) intel(0): Modeline "1920x1080"x25.0   74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
[   250.653] (II) intel(0): Modeline "1920x1080"x24.0   74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
[   250.653] (II) intel(0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   250.653] (II) intel(0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   250.653] (II) intel(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   250.653] (II) intel(0): Modeline "1680x945"x60.0  131.48  1680 1784 1960 2240  945 946 949 978 -hsync +vsync (58.7 kHz)
[   250.653] (II) intel(0): Modeline "1400x1050"x59.9  101.00  1400 1448 1480 1560  1050 1053 1057 1080 +hsync -vsync (64.7 kHz e)
[   250.653] (II) intel(0): Modeline "1600x900"x60.0  118.96  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz)
[   250.653] (II) intel(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   250.653] (II) intel(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   250.653] (II) intel(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   250.653] (II) intel(0): Modeline "1366x768"x60.0   85.89  1366 1439 1583 1800  768 769 772 795 -hsync +vsync (47.7 kHz)
[   250.653] (II) intel(0): Modeline "1360x768"x60.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz e)
[   250.653] (II) intel(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[   250.653] (II) intel(0): Modeline "1280x768"x60.0   68.25  1280 1328 1360 1440  768 771 778 790 +hsync -vsync (47.4 kHz e)
[   250.653] (II) intel(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   250.653] (II) intel(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   250.653] (II) intel(0): Modeline "1280x720"x61.0   74.25  1280 1344 1472 1664  720 723 728 732 +hsync +vsync (44.6 kHz e)
[   250.653] (II) intel(0): Modeline "1440x576i"x50.0   27.00  1440 1464 1590 1728  576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[   250.653] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   250.653] (II) intel(0): Modeline "1024x576"x60.0   46.97  1024 1064 1168 1312  576 577 580 597 -hsync +vsync (35.8 kHz)
[   250.653] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   250.653] (II) intel(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   250.654] (II) intel(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 +hsync +vsync (31.0 kHz e)
[   250.654] (II) intel(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   250.654] (II) intel(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   250.654] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   250.654] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[   250.654] (II) intel(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   250.678] (II) intel(0): EDID for output DP1
[   250.678] (II) intel(0): Output VGA1 disconnected
[   250.678] (II) intel(0): Output HDMI1 connected
[   250.678] (II) intel(0): Output DP1 disconnected
[   250.678] (II) intel(0): Using exact sizes for initial modes
[   250.678] (II) intel(0): Output HDMI1 using initial mode 1920x1080
[   250.678] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[   250.678] (==) intel(0): DPI set to (96, 96)
[   250.678] (II) Loading sub module "dri2"
[   250.678] (II) LoadModule: "dri2"
[   250.678] (II) Module "dri2" already built-in
[   250.678] (==) Depth 24 pixmap format is 32 bpp
[   250.678] (II) intel(0): SNA initialized with SandyBridge backend
[   250.679] (==) intel(0): Backing store disabled
[   250.679] (==) intel(0): Silken mouse enabled
[   250.679] (II) intel(0): HW Cursor enabled
[   250.679] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[   250.679] (==) intel(0): DPMS enabled
[   250.679] (II) intel(0): [DRI2] Setup complete
[   250.679] (II) intel(0): [DRI2]   DRI driver: i965
[   250.679] (II) intel(0): direct rendering: DRI2 Enabled
[   250.679] (==) intel(0): hotplug detection: "enabled"
[   250.679] (--) RandR disabled
[   250.702] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[   250.702] (II) AIGLX: enabled GLX_INTEL_swap_event
[   250.702] (II) AIGLX: enabled GLX_ARB_create_context
[   250.702] (II) AIGLX: enabled GLX_ARB_create_context_profile
[   250.702] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[   250.702] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[   250.702] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[   250.703] (II) AIGLX: Loaded and initialized i965
[   250.703] (II) GLX: Initialized DRI2 GL provider for screen 0
[   250.704] (II) intel(0): switch to mode 1920x1080 on crtc 3 (pipe 0)
[   250.727] (II) intel(0): Setting screen physical size to 507 x 285
[   250.888] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[   250.888] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   250.888] (**) Power Button: Applying InputClass "keyboard"
[   250.888] (II) LoadModule: "evdev"
[   250.888] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   250.889] (II) Module evdev: vendor="X.Org Foundation"
[   250.889] 	compiled for 1.13.1, module version = 2.7.3
[   250.889] 	Module class: X.Org XInput Driver
[   250.889] 	ABI class: X.Org XInput driver, version 18.0
[   250.889] (II) Using input driver 'evdev' for 'Power Button'
[   250.889] (**) Power Button: always reports core events
[   250.889] (**) evdev: Power Button: Device: "/dev/input/event1"
[   250.889] (--) evdev: Power Button: Vendor 0 Product 0x1
[   250.889] (--) evdev: Power Button: Found keys
[   250.889] (II) evdev: Power Button: Configuring as keyboard
[   250.889] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[   250.889] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   250.889] (**) Option "xkb_rules" "evdev"
[   250.889] (**) Option "xkb_model" "evdev"
[   250.889] (**) Option "xkb_layout" "de"
[   250.889] (**) Option "xkb_variant" "nodeadkeys"
[   250.937] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
[   250.937] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   250.937] (**) Video Bus: Applying InputClass "keyboard"
[   250.937] (II) Using input driver 'evdev' for 'Video Bus'
[   250.937] (**) Video Bus: always reports core events
[   250.937] (**) evdev: Video Bus: Device: "/dev/input/event2"
[   250.937] (--) evdev: Video Bus: Vendor 0 Product 0x6
[   250.937] (--) evdev: Video Bus: Found keys
[   250.937] (II) evdev: Video Bus: Configuring as keyboard
[   250.937] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2/event2"
[   250.937] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[   250.937] (**) Option "xkb_rules" "evdev"
[   250.937] (**) Option "xkb_model" "evdev"
[   250.937] (**) Option "xkb_layout" "de"
[   250.937] (**) Option "xkb_variant" "nodeadkeys"
[   250.939] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   250.939] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   250.939] (**) Power Button: Applying InputClass "keyboard"
[   250.939] (II) Using input driver 'evdev' for 'Power Button'
[   250.939] (**) Power Button: always reports core events
[   250.939] (**) evdev: Power Button: Device: "/dev/input/event0"
[   250.939] (--) evdev: Power Button: Vendor 0 Product 0x1
[   250.939] (--) evdev: Power Button: Found keys
[   250.939] (II) evdev: Power Button: Configuring as keyboard
[   250.939] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[   250.939] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[   250.939] (**) Option "xkb_rules" "evdev"
[   250.939] (**) Option "xkb_model" "evdev"
[   250.939] (**) Option "xkb_layout" "de"
[   250.939] (**) Option "xkb_variant" "nodeadkeys"
[   250.940] (II) config/udev: Adding drm device (/dev/dri/card0)
[   250.941] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event3)
[   250.941] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"
[   250.941] (**)   USB Keyboard: Applying InputClass "keyboard"
[   250.941] (II) Using input driver 'evdev' for '  USB Keyboard'
[   250.941] (**)   USB Keyboard: always reports core events
[   250.941] (**) evdev:   USB Keyboard: Device: "/dev/input/event3"
[   250.941] (--) evdev:   USB Keyboard: Vendor 0x1241 Product 0x1503
[   250.941] (--) evdev:   USB Keyboard: Found keys
[   250.941] (II) evdev:   USB Keyboard: Configuring as keyboard
[   250.941] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input3/event3"
[   250.941] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD, id 9)
[   250.941] (**) Option "xkb_rules" "evdev"
[   250.941] (**) Option "xkb_model" "evdev"
[   250.941] (**) Option "xkb_layout" "de"
[   250.941] (**) Option "xkb_variant" "nodeadkeys"
[   250.943] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event4)
[   250.943] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"
[   250.943] (**)   USB Keyboard: Applying InputClass "keyboard"
[   250.943] (II) Using input driver 'evdev' for '  USB Keyboard'
[   250.943] (**)   USB Keyboard: always reports core events
[   250.943] (**) evdev:   USB Keyboard: Device: "/dev/input/event4"
[   250.943] (--) evdev:   USB Keyboard: Vendor 0x1241 Product 0x1503
[   250.943] (--) evdev:   USB Keyboard: Found keys
[   250.943] (II) evdev:   USB Keyboard: Configuring as keyboard
[   250.943] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input4/event4"
[   250.943] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD, id 10)
[   250.943] (**) Option "xkb_rules" "evdev"
[   250.943] (**) Option "xkb_model" "evdev"
[   250.943] (**) Option "xkb_layout" "de"
[   250.943] (**) Option "xkb_variant" "nodeadkeys"
[   250.944] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event5)
[   250.944] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
[   250.944] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "keyboard"
[   250.944] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
[   250.944] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
[   250.944] (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event5"
[   250.944] (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc03e
[   250.944] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 3 mouse buttons
[   250.944] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
[   250.944] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes
[   250.944] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
[   250.944] (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse
[   250.944] (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
[   250.945] (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
[   250.945] (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   250.945] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input5/event5"
[   250.945] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 11)
[   250.945] (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
[   250.945] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
[   250.945] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
[   250.945] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
[   250.945] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
[   250.945] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
[   250.945] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "keyboard"
[   250.945] (II) No input driver specified, ignoring this device.
[   250.945] (II) This device may have been added with another device file.
[   250.946] (II) config/udev: Adding input device iMON Panel, Knob and Mouse(15c2:ffdc) (/dev/input/event6)
[   250.946] (**) iMON Panel, Knob and Mouse(15c2:ffdc): Applying InputClass "evdev pointer catchall"
[   250.946] (**) iMON Panel, Knob and Mouse(15c2:ffdc): Applying InputClass "evdev keyboard catchall"
[   250.946] (**) iMON Panel, Knob and Mouse(15c2:ffdc): Applying InputClass "keyboard"
[   250.946] (II) Using input driver 'evdev' for 'iMON Panel, Knob and Mouse(15c2:ffdc)'
[   250.946] (**) iMON Panel, Knob and Mouse(15c2:ffdc): always reports core events
[   250.946] (**) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Device: "/dev/input/event6"
[   250.946] (--) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Vendor 0x15c2 Product 0xffdc
[   250.946] (--) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Found 3 mouse buttons
[   250.946] (--) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Found scroll wheel(s)
[   250.946] (--) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Found relative axes
[   250.946] (--) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Found x and y relative axes
[   250.946] (--) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Found keys
[   250.946] (II) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Configuring as mouse
[   250.946] (II) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Configuring as keyboard
[   250.946] (II) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): Adding scrollwheel support
[   250.946] (**) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): YAxisMapping: buttons 4 and 5
[   250.946] (**) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   250.946] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input6/event6"
[   250.946] (II) XINPUT: Adding extended input device "iMON Panel, Knob and Mouse(15c2:ffdc)" (type: KEYBOARD, id 12)
[   250.946] (**) Option "xkb_rules" "evdev"
[   250.946] (**) Option "xkb_model" "evdev"
[   250.946] (**) Option "xkb_layout" "de"
[   250.946] (**) Option "xkb_variant" "nodeadkeys"
[   250.947] (II) evdev: iMON Panel, Knob and Mouse(15c2:ffdc): initialized for relative axes.
[   250.947] (**) iMON Panel, Knob and Mouse(15c2:ffdc): (accel) keeping acceleration scheme 1
[   250.947] (**) iMON Panel, Knob and Mouse(15c2:ffdc): (accel) acceleration profile 0
[   250.947] (**) iMON Panel, Knob and Mouse(15c2:ffdc): (accel) acceleration factor: 2.000
[   250.947] (**) iMON Panel, Knob and Mouse(15c2:ffdc): (accel) acceleration threshold: 4
[   250.948] (II) config/udev: Adding input device iMON Panel, Knob and Mouse(15c2:ffdc) (/dev/input/mouse1)
[   250.948] (**) iMON Panel, Knob and Mouse(15c2:ffdc): Applying InputClass "keyboard"
[   250.948] (II) No input driver specified, ignoring this device.
[   250.948] (II) This device may have been added with another device file.
[   250.948] (II) config/udev: Adding input device iMON Remote (15c2:ffdc) (/dev/input/event7)
[   250.948] (**) iMON Remote (15c2:ffdc): Applying InputClass "evdev keyboard catchall"
[   250.948] (**) iMON Remote (15c2:ffdc): Applying InputClass "keyboard"
[   250.948] (II) Using input driver 'evdev' for 'iMON Remote (15c2:ffdc)'
[   250.948] (**) iMON Remote (15c2:ffdc): always reports core events
[   250.948] (**) evdev: iMON Remote (15c2:ffdc): Device: "/dev/input/event7"
[   250.948] (--) evdev: iMON Remote (15c2:ffdc): Vendor 0x15c2 Product 0xffdc
[   250.948] (--) evdev: iMON Remote (15c2:ffdc): Found keys
[   250.948] (II) evdev: iMON Remote (15c2:ffdc): Configuring as keyboard
[   250.948] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/rc/rc0/input7/event7"
[   250.948] (II) XINPUT: Adding extended input device "iMON Remote (15c2:ffdc)" (type: KEYBOARD, id 13)
[   250.948] (**) Option "xkb_rules" "evdev"
[   250.948] (**) Option "xkb_model" "evdev"
[   250.948] (**) Option "xkb_layout" "de"
[   250.949] (**) Option "xkb_variant" "nodeadkeys"


Ich hoffe ihr könnt mir helfen.

dsiggi

2

07.04.2013, 04:03

Ein Freund hatte auch mit HD-Wiedergabe zu kämpfen, ihm hat folgender link geholfen:
http://board.raidrush.ws/showthread.php?t=587077
Der hat aber ubuntu oder mint zu laufen weiß gerad nicht.

Und kuckst du noch https://wiki.archlinux.org/index.php/VA-API,
Da wird doch glatt behauptet das im mplayer repro ein mplayer-vaapi package verfügbar ist.

viel erfolg ;-)

3

07.04.2013, 09:41

Hi,
mit dem mplayer hab ich mich wohl falsch ausgedrückt. Es gibt wohl einen Port der das kann. Dieser ist aber nicht in portage. Außerdem geht es ja mit vlc und xbmc nicht, da wird mplayer auch nichts dran ändern.

Zu dem Link:
Das ist ja quasi das, was einem mplayer vorschlägt wenn der Rechner zu langsam ist. Aber Hardwaretechnisch muss das Mainboard die Wiedergabe packen, WIe gesagt, mit openElec läuft es ja.

Hier noch ein Nachtrag:

Bei der Wiedergabe von 1080p-Material unter openElec beträgt die CPU-Auslastung etwa 4%. Also hier wird wirklich alles von der GPU übernummen.
Unter Gentoo beträgt die CPU-Auslastung 100%. Hier wir nicht mal der Versuch unternommen die GPU mit einzubinden.

Gruß,
dsiggi

4

08.04.2013, 20:50

Guck doch mal nach mit was für einen Treiber openElec fährt, denn solltest du dann auch in Gentoo verwenden.
Gentoo Can Do!

Wiki auf: http://deepdoc.at

5

08.04.2013, 22:13

Alle von Dir genannten Programme haben eine Einstellung bei der Videoausgabe, die Du auf "VAAPI" verstellen solltest.
Auch wenn Open-Source kostenlos ist, ist sie nicht umsonst. Dein Preis ist Dein Engagement und Mitarbeit an OS-Projekten.
Wenn Du keinen Preis bezahlen willst, bist Du die Ware. Und das ist nicht Open Source, geschweigedenn frei.