bare-ffmpeg 1.0.0-11 → 1.0.0-13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -12
- package/binding.cc +1761 -0
- package/cmake/ports/ffmpeg/port.cmake +513 -0
- package/cmake/ports/opus/patches/01-windows-clang.patch +52 -0
- package/cmake/ports/opus/port.cmake +38 -0
- package/cmake/ports/svt-av1/port.cmake +42 -0
- package/cmake/ports/x264/patches/01-windows-clang.patch +33 -0
- package/cmake/ports/x264/port.cmake +157 -0
- package/lib/channel-layout.js +0 -9
- package/lib/codec-context.js +4 -3
- package/lib/codec-parameters.js +0 -8
- package/lib/format-context.js +0 -3
- package/lib/frame.js +4 -3
- package/lib/stream.js +0 -9
- package/package.json +4 -3
- package/prebuilds/android-arm/bare-ffmpeg.bare +0 -0
- package/prebuilds/android-arm64/bare-ffmpeg.bare +0 -0
- package/prebuilds/android-ia32/bare-ffmpeg.bare +0 -0
- package/prebuilds/android-x64/bare-ffmpeg.bare +0 -0
- package/prebuilds/darwin-arm64/bare-ffmpeg.bare +0 -0
- package/prebuilds/darwin-x64/bare-ffmpeg.bare +0 -0
- package/prebuilds/ios-arm64/bare-ffmpeg.bare +0 -0
- package/prebuilds/ios-arm64-simulator/bare-ffmpeg.bare +0 -0
- package/prebuilds/ios-x64-simulator/bare-ffmpeg.bare +0 -0
- package/prebuilds/linux-arm64/bare-ffmpeg.bare +0 -0
- package/prebuilds/linux-x64/bare-ffmpeg.bare +0 -0
- package/prebuilds/win32-arm64/bare-ffmpeg.bare +0 -0
- package/prebuilds/win32-x64/bare-ffmpeg.bare +0 -0
package/README.md
CHANGED
|
@@ -361,12 +361,6 @@ Parameters:
|
|
|
361
361
|
|
|
362
362
|
**Returns**: `void`
|
|
363
363
|
|
|
364
|
-
##### `CodecParameters.destroy()`
|
|
365
|
-
|
|
366
|
-
Destroys the `CodecParameters` and frees all associated resources. Automatically called when the object is managed by a `using` declaration.
|
|
367
|
-
|
|
368
|
-
**Returns**: `void`
|
|
369
|
-
|
|
370
364
|
### `InputFormat`
|
|
371
365
|
|
|
372
366
|
The `InputFormat` API provides functionality to specify input format for media sources.
|
|
@@ -676,12 +670,6 @@ Creates and opens an encoder for this stream.
|
|
|
676
670
|
|
|
677
671
|
**Returns**: `CodecContext` instance
|
|
678
672
|
|
|
679
|
-
##### `Stream.destroy()`
|
|
680
|
-
|
|
681
|
-
Destroys the `Stream` and frees all associated resources. Automatically called when the object is managed by a `using` declaration.
|
|
682
|
-
|
|
683
|
-
**Returns**: `void`
|
|
684
|
-
|
|
685
673
|
### `Resampler`
|
|
686
674
|
|
|
687
675
|
The `Resampler` API provides functionality to convert audio between different sample rates, channel layouts, and sample formats.
|