@qvac/decoder-audio 0.1.0 → 0.2.0

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 CHANGED
@@ -6,6 +6,7 @@ This decoder addon leverages the GStreamer pipeline for efficient, asynchronous
6
6
 
7
7
  - [Installation](#installation)
8
8
  - [Usage](#usage)
9
+ - [Supported Audio Formats](#supported-audio-formats)
9
10
  - [1. Creating the Decoder Instance](#1-creating-the-decoder-instance)
10
11
  - [2. Loading the Decoder](#2-loading-the-decoder)
11
12
  - [3. Decoding Audio](#3-decoding-audio)
@@ -56,6 +57,24 @@ npm install @tetherto/qvac-lib-decoder-audio@latest
56
57
 
57
58
  This library provides a simple workflow for decoding audio streams.
58
59
 
60
+ ### Supported Audio Formats
61
+
62
+ The library exports two constants that define the supported audio formats:
63
+
64
+ ```javascript
65
+ const GSTDecoder = require('@tetherto/qvac-lib-decoder-audio')
66
+
67
+ // Audio formats that require decoding before processing
68
+ console.log(GSTDecoder.FORMATS_NEEDING_DECODE)
69
+ // ['.mp3', '.m4a', '.ogg', '.flac', '.aac', '.wav']
70
+
71
+ // All supported audio formats (including raw)
72
+ console.log(GSTDecoder.SUPPORTED_AUDIO_FORMATS)
73
+ // ['.mp3', '.m4a', '.ogg', '.wav', '.flac', '.aac', '.raw']
74
+ ```
75
+
76
+ These constants can be used to validate input file formats or to determine if a file needs decoding before processing.
77
+
59
78
  ### 1. Creating the Decoder Instance
60
79
 
61
80
  To get started, import the decoder addon and create an instance:
package/index.d.ts CHANGED
@@ -54,4 +54,16 @@ declare class GSTDecoder extends BaseInference {
54
54
  getStatus(): Promise<any>
55
55
  }
56
56
 
57
+ declare namespace GSTDecoder {
58
+ /**
59
+ * Audio formats that require decoding before processing
60
+ */
61
+ export const FORMATS_NEEDING_DECODE: readonly string[]
62
+
63
+ /**
64
+ * All supported audio formats (including raw)
65
+ */
66
+ export const SUPPORTED_AUDIO_FORMATS: readonly string[]
67
+ }
68
+
57
69
  export = GSTDecoder
package/index.js CHANGED
@@ -4,6 +4,7 @@ const QvacResponse = require('@qvac/response')
4
4
  const BaseInference = require('@qvac/infer-base/WeightsProvider/BaseInference')
5
5
  const { GSTDecoderInterface } = require('./gstreamer')
6
6
  const createStreamAccumulator = require('./utils/createStreamAccumulator')
7
+ const { FORMATS_NEEDING_DECODE, SUPPORTED_AUDIO_FORMATS } = require('./constants')
7
8
 
8
9
  const END_OF_INPUT = 'end of job'
9
10
 
@@ -14,7 +15,9 @@ class GSTDecoder extends BaseInference {
14
15
  /**
15
16
  * Creates an instance of GSTDecoder.
16
17
  * @constructor
17
- * @param {Object} config - environment-specific inference setup configuration
18
+ * @param {Object} options - Constructor options
19
+ * @param {Object} options.config - environment-specific inference setup configuration
20
+ * @param {*} [args] - Additional arguments passed to BaseInference
18
21
  */
19
22
 
20
23
  constructor ({ config, ...args }) {
@@ -100,4 +103,9 @@ class GSTDecoder extends BaseInference {
100
103
  }
101
104
  }
102
105
 
106
+ const FFmpegDecoder = require('./lib/ffmpeg/ffmpeg-decoder')
107
+
103
108
  module.exports = GSTDecoder
109
+ module.exports.FORMATS_NEEDING_DECODE = FORMATS_NEEDING_DECODE
110
+ module.exports.SUPPORTED_AUDIO_FORMATS = SUPPORTED_AUDIO_FORMATS
111
+ module.exports.FFmpegDecoder = FFmpegDecoder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qvac/decoder-audio",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Tether",
@@ -16,7 +16,7 @@
16
16
  "lint": "standard --ignore 'addon/**'",
17
17
  "lint:fix": "standard --fix --ignore 'addon/**'",
18
18
  "test:unit:generate": "brittle -r test/unit/all.js test/unit/*.test.js",
19
- "test:integration:generate": "brittle -r test/integration/all.js test/integration/*.test.js",
19
+ "test:integration:generate": "brittle -r test/integration/all.js test/integration/ffmpeg-decoder.test.js",
20
20
  "test:integration": "npm run test:integration:generate && bare test/integration/all.js"
21
21
  },
22
22
  "files": [
@@ -44,9 +44,14 @@
44
44
  "dependencies": {
45
45
  "@qvac/infer-base": "^0.1.0",
46
46
  "@qvac/error": "^0.1.0",
47
+ "@qvac/logging": "^0.1.0",
47
48
  "@qvac/response": "^0.1.0",
48
49
  "bare-assert": "^1.0.2",
49
- "bare-fs": "^4.0.2"
50
+ "bare-channel": "^5.2.0",
51
+ "bare-ffmpeg": "^1.0.0-29",
52
+ "bare-fs": "^4.0.2",
53
+ "bare-path": "^3.0.0",
54
+ "bare-worker": "^3.2.0"
50
55
  },
51
56
  "bugs": "https://github.com/tetherto/qvac-lib-decoder-audio/issues",
52
57
  "types": "index.d.ts"
@@ -7,7 +7,7 @@
7
7
  ],
8
8
  "current_versions": [
9
9
  {
10
- "version": "0.1"
10
+ "version": "0.2"
11
11
  }
12
12
  ],
13
13
  "exported_symbols": [
@@ -133,7 +133,6 @@
133
133
  "_ff_aac_usac_mdst_filt_prev",
134
134
  "_ff_aac_num_swb_480",
135
135
  "_GST_CAT_QOS",
136
- "_av_sha_size",
137
136
  "_g_timeout_funcs",
138
137
  "_ff_eac3_profiles",
139
138
  "_ff_tx_tab_131072_double",
@@ -1584,7 +1583,6 @@
1584
1583
  "_g_param_spec_get_name_quark",
1585
1584
  "_g_str_match_string",
1586
1585
  "_pcre2_substring_nametable_scan_8",
1587
- "_avpriv_open",
1588
1586
  "_av_tx_uninit",
1589
1587
  "_gst_codec_utils_aac_get_profile",
1590
1588
  "_gst_navigation_query_new_angles",
@@ -1718,7 +1716,6 @@
1718
1716
  "_gst_app_sink_set_buffer_list_support",
1719
1717
  "_g_spawn_sync",
1720
1718
  "_gst_video_codec_state_ref",
1721
- "_avpriv_tempfile",
1722
1719
  "_g_variant_new_object_path",
1723
1720
  "_gst_date_time_new_ym",
1724
1721
  "_g_main_context_pending",
@@ -3490,7 +3487,6 @@
3490
3487
  "_gst_navigation_event_parse_command",
3491
3488
  "_g_unix_set_fd_nonblocking",
3492
3489
  "_avio_rl32",
3493
- "_av_sha_alloc",
3494
3490
  "_av_opt_get_q",
3495
3491
  "_av_fmt_ctx_get_duration_estimation_method",
3496
3492
  "_g_ptr_array_sort_with_data",
@@ -4392,7 +4388,6 @@
4392
4388
  "_gst_event_type_flags_get_type",
4393
4389
  "_av_color_transfer_name",
4394
4390
  "_gst_navigation_query_set_commandsv",
4395
- "_avpriv_fopen_utf8",
4396
4391
  "_gst_debug_category_free",
4397
4392
  "_av_iamf_audio_element_get_class",
4398
4393
  "_av_dirname",
@@ -4653,14 +4648,13 @@
4653
4648
  "_g_rename",
4654
4649
  "__gst_plugin_loader_client_run",
4655
4650
  "_ff_sbrdsp_init",
4656
- "_av_sha_update",
4657
4651
  "_avio_get_str16le",
4652
+ "_ff_inlink_queued_samples",
4658
4653
  "_ff_set_common_samplerates2",
4659
4654
  "_ff_thread_report_progress",
4660
4655
  "_g_ptr_array_extend",
4661
- "_ff_inlink_queued_samples",
4662
- "_gst_tag_list_get_string",
4663
4656
  "_g_clear_handle_id",
4657
+ "_gst_tag_list_get_string",
4664
4658
  "_g_parse_debug_string",
4665
4659
  "_g_slist_delete_link",
4666
4660
  "_g_type_plugin_complete_type_info",
@@ -5039,7 +5033,6 @@
5039
5033
  "_g_variant_type_new",
5040
5034
  "_ff_read_string_to_bprint_overwrite",
5041
5035
  "_g_bookmark_file_new",
5042
- "_av_sha_final",
5043
5036
  "__vorbis_block_ripcord",
5044
5037
  "_gst_navigation_event_new_mouse_scroll",
5045
5038
  "_gst_codec_utils_h264_get_level_idc",
@@ -6208,7 +6201,6 @@
6208
6201
  "_avfilter_graph_segment_free",
6209
6202
  "_vorbis_synthesis_init",
6210
6203
  "_av_buffersrc_parameters_set",
6211
- "_av_sha_init",
6212
6204
  "_ff_progress_frame_replace",
6213
6205
  "_av_buffersink_get_color_range",
6214
6206
  "_av_color_space_name",
@@ -7,7 +7,7 @@
7
7
  ],
8
8
  "current_versions": [
9
9
  {
10
- "version": "0.1"
10
+ "version": "0.2"
11
11
  }
12
12
  ],
13
13
  "exported_symbols": [
@@ -133,7 +133,6 @@
133
133
  "_ff_aac_usac_mdst_filt_prev",
134
134
  "_ff_aac_num_swb_480",
135
135
  "_GST_CAT_QOS",
136
- "_av_sha_size",
137
136
  "_g_timeout_funcs",
138
137
  "_ff_eac3_profiles",
139
138
  "_ff_tx_tab_131072_double",
@@ -1582,7 +1581,6 @@
1582
1581
  "_g_param_spec_get_name_quark",
1583
1582
  "_g_str_match_string",
1584
1583
  "_pcre2_substring_nametable_scan_8",
1585
- "_avpriv_open",
1586
1584
  "_av_tx_uninit",
1587
1585
  "_gst_codec_utils_aac_get_profile",
1588
1586
  "_gst_navigation_query_new_angles",
@@ -1716,7 +1714,6 @@
1716
1714
  "_gst_app_sink_set_buffer_list_support",
1717
1715
  "_g_spawn_sync",
1718
1716
  "_gst_video_codec_state_ref",
1719
- "_avpriv_tempfile",
1720
1717
  "_g_variant_new_object_path",
1721
1718
  "_gst_date_time_new_ym",
1722
1719
  "_g_main_context_pending",
@@ -3480,7 +3477,6 @@
3480
3477
  "_gst_navigation_event_parse_command",
3481
3478
  "_g_unix_set_fd_nonblocking",
3482
3479
  "_avio_rl32",
3483
- "_av_sha_alloc",
3484
3480
  "_av_opt_get_q",
3485
3481
  "_av_fmt_ctx_get_duration_estimation_method",
3486
3482
  "_g_ptr_array_sort_with_data",
@@ -3685,9 +3681,9 @@
3685
3681
  "_g_variant_dup_bytestring",
3686
3682
  "_gst_pad_probe_info_get_buffer",
3687
3683
  "_g_type_check_instance",
3684
+ "_g_test_init",
3688
3685
  "_gst_base_sink_get_sync",
3689
3686
  "_gst_audio_resampler_resample",
3690
- "_g_test_init",
3691
3687
  "_gst_clock_single_shot_id_reinit",
3692
3688
  "_g_thread_unref",
3693
3689
  "_drft_init",
@@ -4374,7 +4370,6 @@
4374
4370
  "_gst_event_type_flags_get_type",
4375
4371
  "_av_color_transfer_name",
4376
4372
  "_gst_navigation_query_set_commandsv",
4377
- "_avpriv_fopen_utf8",
4378
4373
  "_gst_debug_category_free",
4379
4374
  "_av_iamf_audio_element_get_class",
4380
4375
  "_av_dirname",
@@ -4634,14 +4629,13 @@
4634
4629
  "_g_rename",
4635
4630
  "__gst_plugin_loader_client_run",
4636
4631
  "_ff_sbrdsp_init",
4637
- "_av_sha_update",
4638
4632
  "_avio_get_str16le",
4633
+ "_ff_inlink_queued_samples",
4639
4634
  "_ff_set_common_samplerates2",
4640
4635
  "_ff_thread_report_progress",
4641
4636
  "_g_ptr_array_extend",
4642
- "_ff_inlink_queued_samples",
4643
- "_gst_tag_list_get_string",
4644
4637
  "_g_clear_handle_id",
4638
+ "_gst_tag_list_get_string",
4645
4639
  "_g_parse_debug_string",
4646
4640
  "_g_slist_delete_link",
4647
4641
  "_g_type_plugin_complete_type_info",
@@ -5017,7 +5011,6 @@
5017
5011
  "_g_variant_type_new",
5018
5012
  "_ff_read_string_to_bprint_overwrite",
5019
5013
  "_g_bookmark_file_new",
5020
- "_av_sha_final",
5021
5014
  "__vorbis_block_ripcord",
5022
5015
  "_gst_navigation_event_new_mouse_scroll",
5023
5016
  "_gst_codec_utils_h264_get_level_idc",
@@ -6178,7 +6171,6 @@
6178
6171
  "_avfilter_graph_segment_free",
6179
6172
  "_vorbis_synthesis_init",
6180
6173
  "_av_buffersrc_parameters_set",
6181
- "_av_sha_init",
6182
6174
  "_ff_progress_frame_replace",
6183
6175
  "_av_buffersink_get_color_range",
6184
6176
  "_av_color_space_name",
@@ -7,7 +7,7 @@
7
7
  ],
8
8
  "current_versions": [
9
9
  {
10
- "version": "0.1"
10
+ "version": "0.2"
11
11
  }
12
12
  ],
13
13
  "exported_symbols": [
@@ -133,7 +133,6 @@
133
133
  "_ff_aac_usac_mdst_filt_prev",
134
134
  "_ff_aac_num_swb_480",
135
135
  "_GST_CAT_QOS",
136
- "_av_sha_size",
137
136
  "_g_timeout_funcs",
138
137
  "_ff_eac3_profiles",
139
138
  "_ff_tx_tab_131072_double",
@@ -1584,7 +1583,6 @@
1584
1583
  "_g_param_spec_get_name_quark",
1585
1584
  "_g_str_match_string",
1586
1585
  "_pcre2_substring_nametable_scan_8",
1587
- "_avpriv_open",
1588
1586
  "_av_tx_uninit",
1589
1587
  "_gst_codec_utils_aac_get_profile",
1590
1588
  "_gst_navigation_query_new_angles",
@@ -1718,7 +1716,6 @@
1718
1716
  "_gst_app_sink_set_buffer_list_support",
1719
1717
  "_g_spawn_sync",
1720
1718
  "_gst_video_codec_state_ref",
1721
- "_avpriv_tempfile",
1722
1719
  "_g_variant_new_object_path",
1723
1720
  "_gst_date_time_new_ym",
1724
1721
  "_g_main_context_pending",
@@ -3490,7 +3487,6 @@
3490
3487
  "_gst_navigation_event_parse_command",
3491
3488
  "_g_unix_set_fd_nonblocking",
3492
3489
  "_avio_rl32",
3493
- "_av_sha_alloc",
3494
3490
  "_av_opt_get_q",
3495
3491
  "_av_fmt_ctx_get_duration_estimation_method",
3496
3492
  "_g_ptr_array_sort_with_data",
@@ -4392,7 +4388,6 @@
4392
4388
  "_gst_event_type_flags_get_type",
4393
4389
  "_av_color_transfer_name",
4394
4390
  "_gst_navigation_query_set_commandsv",
4395
- "_avpriv_fopen_utf8",
4396
4391
  "_gst_debug_category_free",
4397
4392
  "_av_iamf_audio_element_get_class",
4398
4393
  "_av_dirname",
@@ -4653,14 +4648,13 @@
4653
4648
  "_g_rename",
4654
4649
  "__gst_plugin_loader_client_run",
4655
4650
  "_ff_sbrdsp_init",
4656
- "_av_sha_update",
4657
4651
  "_avio_get_str16le",
4652
+ "_ff_inlink_queued_samples",
4658
4653
  "_ff_set_common_samplerates2",
4659
4654
  "_ff_thread_report_progress",
4660
4655
  "_g_ptr_array_extend",
4661
- "_ff_inlink_queued_samples",
4662
- "_gst_tag_list_get_string",
4663
4656
  "_g_clear_handle_id",
4657
+ "_gst_tag_list_get_string",
4664
4658
  "_g_parse_debug_string",
4665
4659
  "_g_slist_delete_link",
4666
4660
  "_g_type_plugin_complete_type_info",
@@ -5039,7 +5033,6 @@
5039
5033
  "_g_variant_type_new",
5040
5034
  "_ff_read_string_to_bprint_overwrite",
5041
5035
  "_g_bookmark_file_new",
5042
- "_av_sha_final",
5043
5036
  "__vorbis_block_ripcord",
5044
5037
  "_gst_navigation_event_new_mouse_scroll",
5045
5038
  "_gst_codec_utils_h264_get_level_idc",
@@ -6208,7 +6201,6 @@
6208
6201
  "_avfilter_graph_segment_free",
6209
6202
  "_vorbis_synthesis_init",
6210
6203
  "_av_buffersrc_parameters_set",
6211
- "_av_sha_init",
6212
6204
  "_ff_progress_frame_replace",
6213
6205
  "_av_buffersink_get_color_range",
6214
6206
  "_av_color_space_name",
@@ -7,7 +7,7 @@
7
7
  ],
8
8
  "current_versions": [
9
9
  {
10
- "version": "0.1"
10
+ "version": "0.2"
11
11
  }
12
12
  ],
13
13
  "exported_symbols": [
@@ -133,7 +133,6 @@
133
133
  "_ff_aac_usac_mdst_filt_prev",
134
134
  "_ff_aac_num_swb_480",
135
135
  "_GST_CAT_QOS",
136
- "_av_sha_size",
137
136
  "_g_timeout_funcs",
138
137
  "_ff_eac3_profiles",
139
138
  "_ff_tx_tab_131072_double",
@@ -1584,7 +1583,6 @@
1584
1583
  "_g_param_spec_get_name_quark",
1585
1584
  "_g_str_match_string",
1586
1585
  "_pcre2_substring_nametable_scan_8",
1587
- "_avpriv_open",
1588
1586
  "_av_tx_uninit",
1589
1587
  "_gst_codec_utils_aac_get_profile",
1590
1588
  "_gst_navigation_query_new_angles",
@@ -1718,7 +1716,6 @@
1718
1716
  "_gst_app_sink_set_buffer_list_support",
1719
1717
  "_g_spawn_sync",
1720
1718
  "_gst_video_codec_state_ref",
1721
- "_avpriv_tempfile",
1722
1719
  "_g_variant_new_object_path",
1723
1720
  "_gst_date_time_new_ym",
1724
1721
  "_g_main_context_pending",
@@ -3490,7 +3487,6 @@
3490
3487
  "_gst_navigation_event_parse_command",
3491
3488
  "_g_unix_set_fd_nonblocking",
3492
3489
  "_avio_rl32",
3493
- "_av_sha_alloc",
3494
3490
  "_av_opt_get_q",
3495
3491
  "_av_fmt_ctx_get_duration_estimation_method",
3496
3492
  "_g_ptr_array_sort_with_data",
@@ -4392,7 +4388,6 @@
4392
4388
  "_gst_event_type_flags_get_type",
4393
4389
  "_av_color_transfer_name",
4394
4390
  "_gst_navigation_query_set_commandsv",
4395
- "_avpriv_fopen_utf8",
4396
4391
  "_gst_debug_category_free",
4397
4392
  "_av_iamf_audio_element_get_class",
4398
4393
  "_av_dirname",
@@ -4653,14 +4648,13 @@
4653
4648
  "_g_rename",
4654
4649
  "__gst_plugin_loader_client_run",
4655
4650
  "_ff_sbrdsp_init",
4656
- "_av_sha_update",
4657
4651
  "_avio_get_str16le",
4652
+ "_ff_inlink_queued_samples",
4658
4653
  "_ff_set_common_samplerates2",
4659
4654
  "_ff_thread_report_progress",
4660
4655
  "_g_ptr_array_extend",
4661
- "_ff_inlink_queued_samples",
4662
- "_gst_tag_list_get_string",
4663
4656
  "_g_clear_handle_id",
4657
+ "_gst_tag_list_get_string",
4664
4658
  "_g_parse_debug_string",
4665
4659
  "_g_slist_delete_link",
4666
4660
  "_g_type_plugin_complete_type_info",
@@ -5039,7 +5033,6 @@
5039
5033
  "_g_variant_type_new",
5040
5034
  "_ff_read_string_to_bprint_overwrite",
5041
5035
  "_g_bookmark_file_new",
5042
- "_av_sha_final",
5043
5036
  "__vorbis_block_ripcord",
5044
5037
  "_gst_navigation_event_new_mouse_scroll",
5045
5038
  "_gst_codec_utils_h264_get_level_idc",
@@ -6208,7 +6201,6 @@
6208
6201
  "_avfilter_graph_segment_free",
6209
6202
  "_vorbis_synthesis_init",
6210
6203
  "_av_buffersrc_parameters_set",
6211
- "_av_sha_init",
6212
6204
  "_ff_progress_frame_replace",
6213
6205
  "_av_buffersink_get_color_range",
6214
6206
  "_av_color_space_name",
@@ -7,7 +7,7 @@
7
7
  ],
8
8
  "current_versions": [
9
9
  {
10
- "version": "0.1"
10
+ "version": "0.2"
11
11
  }
12
12
  ],
13
13
  "exported_symbols": [
@@ -134,7 +134,6 @@
134
134
  "_ff_aac_usac_mdst_filt_prev",
135
135
  "_ff_aac_num_swb_480",
136
136
  "_GST_CAT_QOS",
137
- "_av_sha_size",
138
137
  "_g_timeout_funcs",
139
138
  "_ff_eac3_profiles",
140
139
  "_ff_tx_tab_131072_double",
@@ -1584,7 +1583,6 @@
1584
1583
  "_g_param_spec_get_name_quark",
1585
1584
  "_g_str_match_string",
1586
1585
  "_pcre2_substring_nametable_scan_8",
1587
- "_avpriv_open",
1588
1586
  "_av_tx_uninit",
1589
1587
  "_gst_codec_utils_aac_get_profile",
1590
1588
  "_gst_navigation_query_new_angles",
@@ -1718,7 +1716,6 @@
1718
1716
  "_gst_app_sink_set_buffer_list_support",
1719
1717
  "_g_spawn_sync",
1720
1718
  "_gst_video_codec_state_ref",
1721
- "_avpriv_tempfile",
1722
1719
  "_g_variant_new_object_path",
1723
1720
  "_gst_date_time_new_ym",
1724
1721
  "_g_main_context_pending",
@@ -3486,7 +3483,6 @@
3486
3483
  "_gst_navigation_event_parse_command",
3487
3484
  "_g_unix_set_fd_nonblocking",
3488
3485
  "_avio_rl32",
3489
- "_av_sha_alloc",
3490
3486
  "_av_opt_get_q",
3491
3487
  "_av_fmt_ctx_get_duration_estimation_method",
3492
3488
  "_g_ptr_array_sort_with_data",
@@ -4381,7 +4377,6 @@
4381
4377
  "_gst_event_type_flags_get_type",
4382
4378
  "_av_color_transfer_name",
4383
4379
  "_gst_navigation_query_set_commandsv",
4384
- "_avpriv_fopen_utf8",
4385
4380
  "_gst_debug_category_free",
4386
4381
  "_av_iamf_audio_element_get_class",
4387
4382
  "_av_dirname",
@@ -4641,14 +4636,13 @@
4641
4636
  "_g_rename",
4642
4637
  "__gst_plugin_loader_client_run",
4643
4638
  "_ff_sbrdsp_init",
4644
- "_av_sha_update",
4645
4639
  "_avio_get_str16le",
4640
+ "_ff_inlink_queued_samples",
4646
4641
  "_ff_set_common_samplerates2",
4647
4642
  "_ff_thread_report_progress",
4648
4643
  "_g_ptr_array_extend",
4649
- "_ff_inlink_queued_samples",
4650
- "_gst_tag_list_get_string",
4651
4644
  "_g_clear_handle_id",
4645
+ "_gst_tag_list_get_string",
4652
4646
  "_g_parse_debug_string",
4653
4647
  "_g_slist_delete_link",
4654
4648
  "_g_type_plugin_complete_type_info",
@@ -5024,7 +5018,6 @@
5024
5018
  "_g_variant_type_new",
5025
5019
  "_ff_read_string_to_bprint_overwrite",
5026
5020
  "_g_bookmark_file_new",
5027
- "_av_sha_final",
5028
5021
  "__vorbis_block_ripcord",
5029
5022
  "_gst_navigation_event_new_mouse_scroll",
5030
5023
  "_gst_codec_utils_h264_get_level_idc",
@@ -6188,7 +6181,6 @@
6188
6181
  "_avfilter_graph_segment_free",
6189
6182
  "_vorbis_synthesis_init",
6190
6183
  "_av_buffersrc_parameters_set",
6191
- "_av_sha_init",
6192
6184
  "_ff_progress_frame_replace",
6193
6185
  "_av_buffersink_get_color_range",
6194
6186
  "_av_color_space_name",