Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 98911 Details for
Bug 150217
ebuild for vdrrip with UGLY patch to cope with problems caused by newer versions of mplayer used by gentoo
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
mplayercmd.diff
mplayercmd.diff (text/plain), 1.44 KB, created by
E. Scaglione
on 2006-10-06 00:45:19 UTC
(
hide
)
Description:
mplayercmd.diff
Filename:
MIME Type:
Creator:
E. Scaglione
Created:
2006-10-06 00:45:19 UTC
Size:
1.44 KB
patch
obsolete
>diff -r -u vdrrip-0.3.0/movie.c vdrrip-0.3.0.gentoo/movie.c >--- vdrrip-0.3.0/movie.c 2004-04-21 18:47:10.000000000 +0200 >+++ vdrrip-0.3.0.gentoo/movie.c 2006-10-06 09:38:31.000000000 +0200 >@@ -21,8 +21,8 @@ > > #define SAVEFILE "save.vdrrip" > >-#define IDENTCMD "%s \'%s\'%s -identify -frames 0 2>/dev/null | sed -e \'s/[`\\!$\"]/\\&/g\'" >-#define CROPCMD "%s \'%s\'%s -vo null -ao null -really-quiet -ss %i -frames %i -vop cropdetect 2>/dev/null | grep \"crop=\" | sed \"s/.*crop\\(.*\\)).*/\\1/\" | sort | uniq -c | sort -r" >+#define IDENTCMD "%s \'%s\'%s -identify -vo null -ao null -frames 0 2>/dev/null | sed -e \'s/[`\\!$\"]/\\&/g\'" >+#define CROPCMD "%s \'%s\'%s -vo null -ao null -quiet -ss %i -frames %i -vop cropdetect 2>/dev/null | grep \"crop=\" | sed \"s/.*crop\\(.*\\)).*/\\1/\" | sort | uniq -c | sort -r" > #define AUDIOCMD "%s \'%s/001.vdr\' -vo null -ao null -frames 0 -aid %i 2>/dev/null | grep AUDIO" > #define AUDIOCMDDVD "%s %s -vo null -ao null -frames 0 -aid %i 2>/dev/null | grep AUDIO" > #define MENCCMD "%s %s help 2>/dev/null" >@@ -517,7 +517,9 @@ > > s = strcol(strgrep("ID_VIDEO_ASPECT", p), "=", 2); > if (s) { >- Aspect = atof(s); >+ /* FIXME newer mplayer does no longer return the aspect of dvb streams so it fixed to 4:3 this DOESN'T of course work with feeds or movies with different aspect ratio */ >+ Aspect = atof(s); >+ if (Aspect==0) {Aspect = 1.3333333333;} > } else {Aspect = -1;} > > CalcAspect = Aspect;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 150217
:
98891
|
98892
|
98893
|
98894
|
98895
|
98896
|
98905
|
98906
|
98907
|
98908
|
98909
|
98911
|
99010
|
99011
|
99142
|
99378
|
99379
|
99579
|
99599
|
101310