all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#40349] gnu: Add vo-amrwbenc
@ 2020-03-31 13:30 Raghav Gururajan
  2020-03-31 13:32 ` Raghav Gururajan
  2020-04-02  3:20 ` [bug#40349] gnu: Add vo-amrwbenc (v2) Raghav Gururajan
  0 siblings, 2 replies; 5+ messages in thread
From: Raghav Gururajan @ 2020-03-31 13:30 UTC (permalink / raw)
  To: 40349

Hello Guix!

Please find the attached patch to add "vo-amrwbenc" package.

Regards,
RG.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#40349] gnu: Add vo-amrwbenc
  2020-03-31 13:30 [bug#40349] gnu: Add vo-amrwbenc Raghav Gururajan
@ 2020-03-31 13:32 ` Raghav Gururajan
  2020-04-02  3:20 ` [bug#40349] gnu: Add vo-amrwbenc (v2) Raghav Gururajan
  1 sibling, 0 replies; 5+ messages in thread
From: Raghav Gururajan @ 2020-03-31 13:32 UTC (permalink / raw)
  To: 40349

[-- Attachment #1: Type: text/plain, Size: 34 bytes --]

OOPS! File is now attached here.

[-- Attachment #2: vo-amrwbenc.patch --]
[-- Type: application/octet-stream, Size: 1353 bytes --]

From e91520e7df71d0737a76b9db64711ace8affe1db Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Tue, 31 Mar 2020 09:27:49 -0400
Subject: [PATCH 21/21] gnu: Add vo-amrwbenc

* gnu/packages/audio.scm (vo-amrwbenc): New variable.
---
 gnu/packages/audio.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 76be063ac4..6b3aa7a1af 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -119,6 +119,25 @@
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26))
 
+(define-public vo-amrwbenc
+ (package
+  (name "vo-amrwbenc")
+   (version "0.1.3")
+   (source
+    (origin
+     (method url-fetch)
+     (uri
+      (string-append "https://sourceforge.net/projects/opencore-amr/files/"
+                     name "/" name "-" version ".tar.gz"))
+     (sha256
+      (base32 "0klx3nkidc6b8aawchpk19n3xlrzgnc046w4gd0rdqphw28v6ljn"))))
+ (build-system gnu-build-system)
+ (synopsis "Adaptive Multi Rate Codec")
+ (description "VO-AMR is a library of VisualOn implementation of
+Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.")
+ (home-page "https://sourceforge.net/projects/opencore-amr/")
+ (license license:asl2.0)))
+
 (define-public opencore-amr
  (package
   (name "opencore-amr")
-- 
2.26.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#40349] gnu: Add vo-amrwbenc (v2)
  2020-03-31 13:30 [bug#40349] gnu: Add vo-amrwbenc Raghav Gururajan
  2020-03-31 13:32 ` Raghav Gururajan
@ 2020-04-02  3:20 ` Raghav Gururajan
  2020-04-05 23:56   ` bug#40349: " Danny Milosavljevic
  2020-04-05 23:58   ` [bug#40349] " Danny Milosavljevic
  1 sibling, 2 replies; 5+ messages in thread
From: Raghav Gururajan @ 2020-04-02  3:20 UTC (permalink / raw)
  To: 40349

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: vo-amrwbenc-v2.patch --]
[-- Type: application/octet-stream, Size: 1391 bytes --]

From a91755d531118ddc00bb264762c926e65bfceca5 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Wed, 1 Apr 2020 23:18:08 -0400
Subject: [PATCH 18/18] gnu: Add vo-amrwbenc

* gnu/packages/linphone.scm (vo-amrwbenc): New variable.
---
 gnu/packages/audio.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index d077b41ca3..73199d70fa 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -119,6 +119,25 @@
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26))
 
+(define-public vo-amrwbenc
+  (package
+    (name "vo-amrwbenc")
+    (version "0.1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://sourceforge.net/projects/opencore-amr/files/"
+                       name "/" name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0klx3nkidc6b8aawchpk19n3xlrzgnc046w4gd0rdqphw28v6ljn"))))
+    (build-system gnu-build-system)
+    (synopsis "Adaptive Multi Rate Codec")
+    (description "VO-AMR is a library of VisualOn implementation of
+Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.")
+    (home-page "https://sourceforge.net/projects/opencore-amr/")
+    (license license:asl2.0)))
+
 (define-public opencore-amr
   (package
     (name "opencore-amr")
-- 
2.26.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#40349: gnu: Add vo-amrwbenc (v2)
  2020-04-02  3:20 ` [bug#40349] gnu: Add vo-amrwbenc (v2) Raghav Gururajan
@ 2020-04-05 23:56   ` Danny Milosavljevic
  2020-04-05 23:58   ` [bug#40349] " Danny Milosavljevic
  1 sibling, 0 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2020-04-05 23:56 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: 40349-done

[-- Attachment #1: Type: text/plain, Size: 249 bytes --]

Thanks for the patch!

Pushed to guix master as commit 62e9f00ce2391b062afa3ed96dfd34a3d0762af7.

Maybe it would be better to use mirror://sourceforge in order to spread the load
on the servers--but I couldn't figure out how in a few minutes.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#40349] gnu: Add vo-amrwbenc (v2)
  2020-04-02  3:20 ` [bug#40349] gnu: Add vo-amrwbenc (v2) Raghav Gururajan
  2020-04-05 23:56   ` bug#40349: " Danny Milosavljevic
@ 2020-04-05 23:58   ` Danny Milosavljevic
  1 sibling, 0 replies; 5+ messages in thread
From: Danny Milosavljevic @ 2020-04-05 23:58 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: 40349

[-- Attachment #1: Type: text/plain, Size: 130 bytes --]

Now that we have vo-amrwbenv, ./gnu/packages/video.scm (ffmpeg) and ./gnu/packages/gstreamer.scm (gst-plugins-bad) could use it.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-04-05 23:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-31 13:30 [bug#40349] gnu: Add vo-amrwbenc Raghav Gururajan
2020-03-31 13:32 ` Raghav Gururajan
2020-04-02  3:20 ` [bug#40349] gnu: Add vo-amrwbenc (v2) Raghav Gururajan
2020-04-05 23:56   ` bug#40349: " Danny Milosavljevic
2020-04-05 23:58   ` [bug#40349] " Danny Milosavljevic

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.