Skip to content

Commit

Permalink
libavfilter: example audio filtering program
Browse files Browse the repository at this point in the history
Based on a patch by Andrew Kelley <[email protected]>

Signed-off-by: Diego Biurrun <[email protected]>
  • Loading branch information
elenril authored and DonDiego committed Feb 25, 2014
1 parent a1c6996 commit e7dfaf1
Show file tree
Hide file tree
Showing 4 changed files with 369 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
/doc/avoptions_format.texi
/doc/doxy/html/
/doc/examples/avcodec
/doc/examples/filter_audio
/doc/examples/metadata
/doc/examples/output
/doc/examples/transcode_aac
Expand Down
2 changes: 2 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,7 @@ COMPONENT_LIST="

EXAMPLE_LIST="
avcodec_example
filter_audio_example
metadata_example
output_example
transcode_aac_example
Expand Down Expand Up @@ -2030,6 +2031,7 @@ scale_filter_deps="swscale"

# examples
avcodec_example_deps="avcodec avutil"
filter_audio_example_deps="avfilter avutil"
metadata_example_deps="avformat avutil"
output_example_deps="avcodec avformat avutil swscale"
transcode_aac_example_deps="avcodec avformat avresample"
Expand Down
3 changes: 2 additions & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ DOCS-$(CONFIG_TEXI2HTML) += $(HTMLPAGES)
DOCS = $(DOCS-yes)

DOC_EXAMPLES-$(CONFIG_AVCODEC_EXAMPLE) += avcodec
DOC_EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
DOC_EXAMPLES-$(CONFIG_METADATA_EXAMPLE) += metadata
DOC_EXAMPLES-$(CONFIG_OUTPUT_EXAMPLE) += output
DOC_EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac
ALL_DOC_EXAMPLES = avcodec metadata output transcode_aac
ALL_DOC_EXAMPLES = avcodec filter_audio metadata output transcode_aac

DOC_EXAMPLES := $(DOC_EXAMPLES-yes:%=doc/examples/%$(EXESUF))
ALL_DOC_EXAMPLES := $(ALL_DOC_EXAMPLES:%=doc/examples/%$(EXESUF))
Expand Down
Loading

0 comments on commit e7dfaf1

Please sign in to comment.