Skip to content

Commit

Permalink
Merge pull request #3 from umjammer/0.8.8
Browse files Browse the repository at this point in the history
0.8.8
  • Loading branch information
umjammer authored Mar 4, 2022
2 parents 8c0b8c4 + 97ecbec commit 6a858f1
Show file tree
Hide file tree
Showing 27 changed files with 899 additions and 427 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ vavi ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ vavi ]
schedule:
- cron: '27 6 * * 2'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
26 changes: 26 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ vavi ]
pull_request:
branches: [ vavi ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
48 changes: 13 additions & 35 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,19 @@
# JAADec
**This is a fork of https://sourceforge.net/projects/jaadec/ containing fixes to make it play nice with other Java Sound Providers.**

The original project was licensed under Public Domain and as such this fork is also licensed under Public Domain. Use as you like!
[![Release](https://jitpack.io/v/umjammer/JAADec.svg)](https://jitpack.io/#umjammer/JAADec)
[![Actions Status](https://github.com/umjammer/JAADec/workflows/Java%20CI/badge.svg)](https://github.com/umjammer/JAADec/actions)

JAAD is an AAC decoder and MP4 demultiplexer library written completely in Java. It uses no native libraries, is platform-independent and portable. It can read MP4 container from almost every input-stream (files, network sockets etc.) and decode AAC-LC (Low Complexity) and HE-AAC (High Efficiency/AAC+).
# JAADec

This library is available on Bintray's `jcenter` as a Maven/Gradle download.<br>
https://bintray.com/dv8fromtheworld/maven/JAADec/view
<p>
For Gradle:
**This is a fork of https://sourceforge.net/projects/jaadec/
containing fixes to make it play nice with other Java Sound Providers.**

```groovy
repositories {
jcenter()
}
The original project was licensed under Public Domain
and as such this fork is also licensed under Public Domain. Use as you like!

dependencies {
compile 'net.sourceforge.jaadec:jaad:0.8.6'
}
```
<p>
For Maven:
JAAD is an AAC decoder and MP4 demultiplexer library written completely in Java.
It uses no native libraries, is platform-independent and portable.
It can read MP4 container from almost every input-stream (files, network sockets etc.)
and decode AAC-LC (Low Complexity) and HE-AAC (High Efficiency/AAC+).

```xml
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
## Install

<dependencies>
<dependency>
<groupId>net.sourceforge.jaadec</groupId>
<artifactId>jaad</artifactId>
<version>0.8.6</version>
</dependency>
</dependencies>
```
* https://jitpack.io/v/umjammer/JAADec
32 changes: 0 additions & 32 deletions build.gradle

This file was deleted.

Binary file removed gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 0 additions & 6 deletions gradle/wrapper/gradle-wrapper.properties

This file was deleted.

164 changes: 0 additions & 164 deletions gradlew

This file was deleted.

Loading

0 comments on commit 6a858f1

Please sign in to comment.