OSDN Git Service

android: add missing includes
authorJaap Jan Meijer <jjmeijer88@gmail.com>
Sun, 7 Aug 2016 23:11:42 +0000 (01:11 +0200)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Wed, 7 Jun 2017 15:42:30 +0000 (23:42 +0800)
Change-Id: I97c95c1c5f0d0c5ceb27d80c7915c2c5a8927bb1

android/include/libavcodec/bsf_list.c [new file with mode: 0644]
android/include/libavformat/protocol_list.c [new file with mode: 0644]

diff --git a/android/include/libavcodec/bsf_list.c b/android/include/libavcodec/bsf_list.c
new file mode 100644 (file)
index 0000000..e80fcdc
--- /dev/null
@@ -0,0 +1,18 @@
+static const AVBitStreamFilter *bitstream_filters[] = {
+    &ff_aac_adtstoasc_bsf,
+    &ff_chomp_bsf,
+    &ff_dump_extradata_bsf,
+    &ff_dca_core_bsf,
+    &ff_h264_mp4toannexb_bsf,
+    &ff_hevc_mp4toannexb_bsf,
+    &ff_imx_dump_header_bsf,
+    &ff_mjpeg2jpeg_bsf,
+    &ff_mjpega_dump_header_bsf,
+    &ff_mp3_header_decompress_bsf,
+    &ff_mpeg4_unpack_bframes_bsf,
+    &ff_mov2textsub_bsf,
+    &ff_noise_bsf,
+    &ff_remove_extradata_bsf,
+    &ff_text2movsub_bsf,
+    &ff_vp9_superframe_bsf,
+    NULL };
diff --git a/android/include/libavformat/protocol_list.c b/android/include/libavformat/protocol_list.c
new file mode 100644 (file)
index 0000000..ca7ca83
--- /dev/null
@@ -0,0 +1,28 @@
+static const URLProtocol *url_protocols[] = {
+    &ff_async_protocol,
+    &ff_cache_protocol,
+    &ff_concat_protocol,
+    &ff_crypto_protocol,
+    &ff_data_protocol,
+    &ff_ffrtmphttp_protocol,
+    &ff_file_protocol,
+    &ff_ftp_protocol,
+    &ff_gopher_protocol,
+    &ff_hls_protocol,
+    &ff_http_protocol,
+    &ff_httpproxy_protocol,
+    &ff_icecast_protocol,
+    &ff_mmsh_protocol,
+    &ff_mmst_protocol,
+    &ff_md5_protocol,
+    &ff_pipe_protocol,
+    &ff_rtmp_protocol,
+    &ff_rtmpt_protocol,
+    &ff_rtp_protocol,
+    &ff_srtp_protocol,
+    &ff_subfile_protocol,
+    &ff_tcp_protocol,
+    &ff_udp_protocol,
+    &ff_udplite_protocol,
+    &ff_unix_protocol,
+    NULL };