Skip to content
Permalink
audio-filters-…

Commits on Aug 18, 2011

  1. lavfi: ladspa src WIP

    mnzaki committed Aug 18, 2011
  2. lavfi-test: add regression test stub for audio filtering

    Stefano Sabatini authored and mnzaki committed Aug 18, 2011
  3. lavfi: add sox wrapper filter

    mnzaki committed Aug 18, 2011
  4. lavfi: add ladspa wrapper

    mnzaki committed Aug 18, 2011
  5. ffmpeg: add -af option

    Based on a patch by Hemanth.
    Stefano Sabatini authored and mnzaki committed Aug 18, 2011
  6. ffplay: add -af option

    mnzaki committed Aug 18, 2011
  7. lavfi: refactor query_formats and auto-insert audio conversion filters.

    Behaviour has been changed to fail negotiation if fields have been left empty
    
    Patch was originally based on a patch by Hemanth.
    mnzaki committed Aug 18, 2011
  8. lavfi: add audio resample filter

    Stefano Sabatini authored and mnzaki committed Aug 18, 2011
  9. lavfi: add audio convert filter

    Add aconvert filter to perform sample format and channel layout conversion.
    
    Based on code by Stefano Sabatini and "S.N. Hemanth Meenakshisundaram"
    smeenaks@ucsd.edu.
    mnzaki committed Aug 18, 2011

Commits on Aug 17, 2011

  1. lavfi: add asrc_abuffer - audio source buffer filter

    Originally based on code by Stefano Sabatini and S. N. Hemanth
    mnzaki committed Aug 17, 2011
  2. lavfi: add aformat filter

    mnzaki committed Aug 17, 2011

Commits on Aug 11, 2011

  1. Merge remote-tracking branch 'qatar/master'

    * qatar/master:
      ac3enc: add macros for option names to make them more understandable.
      ac3enc: fix 'channel_coupling' option to actually allow 'auto'.
      cavs: fix some crashes with invalid bitstreams
      ac3enc: clip coupling coordinates during calculation
      Remove incorrect info in documentation of AVCodecContext.bits_per_raw_sample.
      lavc: fix parentheses placement in avcodec_open2().
    
    Merged-by: Michael Niedermayer <michaelni@gmx.at>
    michaelni committed Aug 11, 2011
  2. cavsdec: check run value validity

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
    michaelni committed Aug 11, 2011
  3. ac3enc: fix 'channel_coupling' option to actually allow 'auto'.

    Use 'auto' as the default value.
    justinruggles committed Aug 11, 2011
  4. indevs.texi: fix typo (builf -> build)

    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  5. lavdev: add libavfilter virtual input device

    This input device is to be considered still experimental, only video
    output is supported.
    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  6. lavfi: remove mp test wrapper

    The source was natively integrated into libavfilter, with the name
    mptestsrc.
    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  7. lavfi: port mp test source

    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  8. vf_mp: sort listing of vf_info_t symbols

    This way it's easier for the programmer to look-up for a specific
    symbols (e.g. for checking if it's unused).
    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  9. vf_select: reindent after the previous commit

    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  10. vf_select: add NULL-checks in uninit

    Fix NULL pointer dereference in case of failed initialization.
    
    Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
    genwillyu authored and Stefano Sabatini committed Aug 11, 2011
  11. vf_select: check for isnan when setting t from pts

    Stefano Sabatini
    Stefano Sabatini committed Aug 11, 2011
  12. vf_select: set start_t if undefined

    Previously start_t was never set.
    
    Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
    genwillyu authored and Stefano Sabatini committed Aug 11, 2011

Commits on Aug 10, 2011

  1. cavs: fix some crashes with invalid bitstreams

    This removes all valgrind-reported invalid writes with one
    specific test file.
    
    Fixes http://www.ocert.org/advisories/ocert-2011-002.html
    
    Signed-off-by: Mans Rullgard <mans@mansr.com>
    mansr committed Aug 10, 2011
  2. ac3enc: clip coupling coordinates during calculation

    This is faster than using the clip_coefficients() function. Also,
    clipping the coordinates before determining reuse is better since it
    will compare coordinates that are closer to their final encoded values.
    justinruggles committed Aug 10, 2011
  3. Remove incorrect info in documentation of AVCodecContext.bits_per_raw…

    …_sample.
    
    bits_per_raw_sample is used in video as well, where sample_fmt is not used.
    justinruggles committed Aug 10, 2011
  4. oggenc: add missing initializer braces to shut up gcc warning.

    This fixes the warning:
        libavformat/oggenc.c:75:7: warning: missing braces around initializer [-Wmissing-braces]
    ubitux committed Aug 10, 2011
  5. avidec: add missing initializer braces to shut up gcc warning.

    This fixes the warning:
        libavformat/avidec.c:81:5: warning: missing braces around initializer [-Wmissing-braces]
    ubitux committed Aug 10, 2011
  6. alsa: remove too unused variables.

    This fixes the two following warnings:
        libavdevice/alsa-audio-dec.c:62:26: warning: unused variable ‘sw_params’ [-Wunused-variable]
        libavdevice/alsa-audio-dec.c:109:15: warning: unused variable ‘st’ [-Wunused-variable]
    ubitux committed Aug 10, 2011
  7. Always pass a AVFormatContext to av_log.

    This is consistent, allows custom handlers to print more info
    (since they probably know about the AVFormatContext class
    but not a demuxer-specific one) and also avoids issues due
    to the class pointer being NULL for non-raw mpegts.
    
    Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    rdoeffinger committed Aug 10, 2011
  8. cavsdec: avoid possible crash with crafted input

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
    michaelni committed Aug 10, 2011
  9. lavc: fix parentheses placement in avcodec_open2().

    Signed-off-by: Anton Khirnov <anton@khirnov.net>
    bcoudurier authored and elenril committed Aug 10, 2011
Older