Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(808)

Side by Side Diff: media/BUILD.gn

Issue 691233002: Added aac bitstream converter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Figured it out Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 deps += [ "//third_party/ffmpeg" ] 247 deps += [ "//third_party/ffmpeg" ]
248 sources += [ 248 sources += [
249 "ffmpeg/ffmpeg_common.cc", 249 "ffmpeg/ffmpeg_common.cc",
250 "ffmpeg/ffmpeg_common.h", 250 "ffmpeg/ffmpeg_common.h",
251 "filters/audio_file_reader.cc", 251 "filters/audio_file_reader.cc",
252 "filters/audio_file_reader.h", 252 "filters/audio_file_reader.h",
253 "filters/blocking_url_protocol.cc", 253 "filters/blocking_url_protocol.cc",
254 "filters/blocking_url_protocol.h", 254 "filters/blocking_url_protocol.h",
255 "filters/ffmpeg_audio_decoder.cc", 255 "filters/ffmpeg_audio_decoder.cc",
256 "filters/ffmpeg_audio_decoder.h", 256 "filters/ffmpeg_audio_decoder.h",
257 "filters/ffmpeg_bitstream_converter.h",
257 "filters/ffmpeg_demuxer.cc", 258 "filters/ffmpeg_demuxer.cc",
258 "filters/ffmpeg_demuxer.h", 259 "filters/ffmpeg_demuxer.h",
259 "filters/ffmpeg_glue.cc", 260 "filters/ffmpeg_glue.cc",
260 "filters/ffmpeg_glue.h", 261 "filters/ffmpeg_glue.h",
261 "filters/ffmpeg_video_decoder.cc", 262 "filters/ffmpeg_video_decoder.cc",
262 "filters/ffmpeg_video_decoder.h", 263 "filters/ffmpeg_video_decoder.h",
263 "filters/in_memory_url_protocol.cc", 264 "filters/in_memory_url_protocol.cc",
264 "filters/in_memory_url_protocol.h", 265 "filters/in_memory_url_protocol.h",
265 ] 266 ]
266 if (proprietary_codecs) { 267 if (proprietary_codecs) {
267 sources += [ 268 sources += [
269 "filters/ffmpeg_aac_bitstream_converter.cc",
270 "filters/ffmpeg_aac_bitstream_converter.h",
268 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.cc", 271 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.cc",
269 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.h", 272 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.h",
270 ] 273 ]
271 } 274 }
272 } 275 }
273 276
274 if (cpu_arch == "arm" && arm_use_neon) { 277 if (cpu_arch == "arm" && arm_use_neon) {
275 defines += [ "USE_NEON" ] 278 defines += [ "USE_NEON" ]
276 } 279 }
277 280
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 "filters/pipeline_integration_test_base.cc", 568 "filters/pipeline_integration_test_base.cc",
566 ] 569 ]
567 } 570 }
568 571
569 if (cpu_arch != "arm" && is_chromeos && use_x11) { 572 if (cpu_arch != "arm" && is_chromeos && use_x11) {
570 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] 573 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ]
571 } 574 }
572 575
573 if (proprietary_codecs) { 576 if (proprietary_codecs) {
574 sources += [ 577 sources += [
578 "filters/ffmpeg_aac_bitstream_converter_unittest.cc",
575 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", 579 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc",
576 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", 580 "filters/h264_to_annex_b_bitstream_converter_unittest.cc",
577 "formats/common/stream_parser_test_base.cc", 581 "formats/common/stream_parser_test_base.cc",
578 "formats/common/stream_parser_test_base.h", 582 "formats/common/stream_parser_test_base.h",
579 "formats/mp2t/es_adapter_video_unittest.cc", 583 "formats/mp2t/es_adapter_video_unittest.cc",
580 "formats/mp2t/es_parser_adts_unittest.cc", 584 "formats/mp2t/es_parser_adts_unittest.cc",
581 "formats/mp2t/es_parser_h264_unittest.cc", 585 "formats/mp2t/es_parser_h264_unittest.cc",
582 "formats/mp2t/es_parser_mpeg1audio_unittest.cc", 586 "formats/mp2t/es_parser_mpeg1audio_unittest.cc",
583 "formats/mp2t/es_parser_test_base.cc", 587 "formats/mp2t/es_parser_test_base.cc",
584 "formats/mp2t/es_parser_test_base.h", 588 "formats/mp2t/es_parser_test_base.h",
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 deps = [ 770 deps = [
767 ":media", 771 ":media",
768 ":shared_memory_support", 772 ":shared_memory_support",
769 "//base", 773 "//base",
770 "//ui/gl", 774 "//ui/gl",
771 "//ui/gfx", 775 "//ui/gfx",
772 "//ui/gfx/geometry", 776 "//ui/gfx/geometry",
773 ] 777 ]
774 } 778 }
775 } 779 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/ffmpeg_aac_bitstream_converter.h » ('j') | media/filters/ffmpeg_aac_bitstream_converter.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698