Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 131882 Details for
Bug 193705
media-video/avidemux-2.3.0 fails to build
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Remove cross initialization
avidemux-2.3.0-cross-init.patch (text/plain), 1.58 KB, created by
Charles Clément
on 2007-09-25 17:21:11 UTC
(
hide
)
Description:
Remove cross initialization
Filename:
MIME Type:
Creator:
Charles Clément
Created:
2007-09-25 17:21:11 UTC
Size:
1.58 KB
patch
obsolete
>Index: avidemux_2.3.0/avidemux/ADM_lavformat/ADM_lavformat.cpp >=================================================================== >--- avidemux_2.3.0.orig/avidemux/ADM_lavformat/ADM_lavformat.cpp >+++ avidemux_2.3.0/avidemux/ADM_lavformat/ADM_lavformat.cpp >@@ -257,10 +257,15 @@ uint8_t lavMuxer::open(const char *filen > c->width = info->width; > c->height = info->height; > >+ AVRational fps25 = (AVRational){1001,25025}; >+ AVRational fps24 = (AVRational){1001,24000}; >+ AVRational fps30 = (AVRational){1001,30000}; >+ AVRational fpsfree = (AVRational){1001,_fps1000}; >+ > switch(_fps1000) > { > case 25000: >- c->time_base= (AVRational){1001,25025}; >+ c->time_base= fps25; > //c->frame_rate = 25025; > //c->frame_rate_base = 1001; > break; >@@ -272,18 +277,18 @@ uint8_t lavMuxer::open(const char *filen > */ > if(_type==MUXER_MP4 || _type==MUXER_PSP) > { >- c->time_base= (AVRational){1001,24000}; >+ c->time_base= fps24; > break; > } > case 29970: >- c->time_base= (AVRational){1001,30000}; >+ c->time_base= fps30; > //c->frame_rate = 30000; > //c->frame_rate_base = 1001; > break; > default: > if(_type==MUXER_MP4 || _type==MUXER_PSP) > { >- c->time_base= (AVRational){1000,_fps1000}; >+ c->time_base= fpsfree; > break; > } > else
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 193705
: 131882