Mageia Bugzilla – Attachment 13193 Details for
Bug 30198
Update recordmydesktop to 0.4.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
[patch]
New Theora fix
02-fix-new-theora.patch (text/plain), 1.62 KB, created by
Kristoffer Grundström
on 2022-03-24 01:58:49 CET
(
hide
)
Description:
New Theora fix
Filename:
MIME Type:
Creator:
Kristoffer Grundström
Created:
2022-03-24 01:58:49 CET
Size:
1.62 KB
patch
obsolete
>From: José L. Redrejo RodrÃguez <root@localhost> >Subject: Fix recording with newest libtheora versions > > >--- recordmydesktop-0.3.8.1+svn602.orig/src/rmd_initialize_data.c 2010-02-08 18:30:42.000000000 +0100 >+++ recordmydesktop-0.3.8.1+svn602.bueno/src/rmd_initialize_data.c 2010-02-08 19:12:36.000000000 +0100 >@@ -223,7 +223,7 @@ > args->channels = 1; > args->frequency = 22050; > args->buffsize = 4096; >- args->v_bitrate = 45000; >+ args->v_bitrate = 0; > args->v_quality = 63; > args->s_quality = 10; > >@DPATCH@ > >--- recordmydesktop-0.3.8.1+svn602.orig/src/rmd_parseargs.c 2010-02-08 18:30:42.000000000 +0100 >+++ recordmydesktop-0.3.8.1+svn602.bueno/src/rmd_parseargs.c 2010-02-08 19:15:01.000000000 +0100 >@@ -215,7 +215,7 @@ > > { "v_bitrate", '\0', > POPT_ARG_INT, &arg_return->v_bitrate, 0, >- "A number from 45000 to 2000000 for desired encoded video bitrate(default 45000).", >+ "A number from 0 to 2000000 for desired encoded video bitrate(default 0).", > "n" }, > > { "s_quality", '\0', >@@ -460,8 +460,8 @@ > fprintf(stdout, "--v_quality must be within the inclusive range [0-63].\n"); > success = FALSE; > } >- if (args->v_bitrate < 45000 || args->v_quality > 2000000) { >- fprintf(stdout, "--v_bitrate must be within the inclusive range [45000-2000000].\n"); >+ if (args->v_bitrate < 0 || args->v_quality > 2000000) { >+ fprintf(stdout, "--v_bitrate must be within the inclusive range [0-2000000].\n"); > success = FALSE; > } > if (args->frequency <= 0) {
From: José L. Redrejo RodrÃguez <root@localhost> Subject: Fix recording with newest libtheora versions --- recordmydesktop-0.3.8.1+svn602.orig/src/rmd_initialize_data.c 2010-02-08 18:30:42.000000000 +0100 +++ recordmydesktop-0.3.8.1+svn602.bueno/src/rmd_initialize_data.c 2010-02-08 19:12:36.000000000 +0100 @@ -223,7 +223,7 @@ args->channels = 1; args->frequency = 22050; args->buffsize = 4096; - args->v_bitrate = 45000; + args->v_bitrate = 0; args->v_quality = 63; args->s_quality = 10; @DPATCH@ --- recordmydesktop-0.3.8.1+svn602.orig/src/rmd_parseargs.c 2010-02-08 18:30:42.000000000 +0100 +++ recordmydesktop-0.3.8.1+svn602.bueno/src/rmd_parseargs.c 2010-02-08 19:15:01.000000000 +0100 @@ -215,7 +215,7 @@ { "v_bitrate", '\0', POPT_ARG_INT, &arg_return->v_bitrate, 0, - "A number from 45000 to 2000000 for desired encoded video bitrate(default 45000).", + "A number from 0 to 2000000 for desired encoded video bitrate(default 0).", "n" }, { "s_quality", '\0', @@ -460,8 +460,8 @@ fprintf(stdout, "--v_quality must be within the inclusive range [0-63].\n"); success = FALSE; } - if (args->v_bitrate < 45000 || args->v_quality > 2000000) { - fprintf(stdout, "--v_bitrate must be within the inclusive range [45000-2000000].\n"); + if (args->v_bitrate < 0 || args->v_quality > 2000000) { + fprintf(stdout, "--v_bitrate must be within the inclusive range [0-2000000].\n"); success = FALSE; } if (args->frequency <= 0) {
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 30198
:
13191
|
13192
| 13193