| Commit message (Expand) | Author | Age | Files | Lines |
* | lavfi/af_hdcd: convert to query_func2() | Anton Khirnov | 2024-09-09 | 1 | -16/+13 |
* | lavfi: drop internal.h | Anton Khirnov | 2024-08-19 | 1 | -1/+0 |
* | lavfi/internal: move functions used by filters to filters.h | Anton Khirnov | 2024-08-19 | 1 | -0/+1 |
* | all: use designated initializers for AVOption.unit | Anton Khirnov | 2024-02-14 | 1 | -10/+10 |
* | avfilter/af_hdcd: Drop a redundant log | Andreas Rheinhardt | 2024-02-14 | 1 | -3/+0 |
* | avfilter/internal: Don't include formats.h | Andreas Rheinhardt | 2023-08-07 | 1 | -0/+1 |
* | avfilter: Deduplicate default audio inputs/outputs | Andreas Rheinhardt | 2023-08-07 | 1 | -8/+1 |
* | avfilter: convert to new channel layout API | James Almer | 2022-03-15 | 1 | -14/+14 |
* | avfilter: Replace query_formats callback with union of list and callback | Andreas Rheinhardt | 2021-10-05 | 1 | -1/+1 |
* | avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilter | Andreas Rheinhardt | 2021-08-20 | 1 | -4/+2 |
* | avfilter/formats: Factor common function combinations out | Andreas Rheinhardt | 2021-08-13 | 1 | -2/+1 |
* | avcodec/avcodec: Stop including channel_layout.h in avcodec.h | Andreas Rheinhardt | 2021-07-22 | 1 | -0/+1 |
* | avfilter: Constify all AVFilters | Andreas Rheinhardt | 2021-04-27 | 1 | -1/+1 |
* | avfilter/af_hdcd: Fix undefined shifts | Andreas Rheinhardt | 2021-04-01 | 1 | -4/+4 |
* | lavfi: regroup formats lists in a single structure. | Nicolas George | 2020-09-08 | 1 | -2/+2 |
* | avfilter: don't anonymously typedef structs | Paul B Mahol | 2017-05-13 | 1 | -2/+2 |
* | Fix all -Wformat warnings raised by DJGPP | Clément Bœsch | 2017-03-29 | 1 | -2/+5 |
* | avfilter/af_hdcd: Fix leak of memory allocated by ff_make_format_list() | Michael Niedermayer | 2017-01-22 | 1 | -4/+2 |
* | doc: fix spelling errors | Andreas Cadhalpun | 2016-10-21 | 1 | -1/+1 |
* | af_hdcd: disable auto-convert by default | Burt P | 2016-10-05 | 1 | -46/+1 |
* | af_hdcd: add experimental 20 and 24-bit decoding support | Burt P | 2016-10-05 | 1 | -20/+68 |
* | af_hdcd: hdcd_scan() and hdcd_integrate() handle stereo and single channel | Burt P | 2016-10-05 | 1 | -218/+85 |
* | af_hdcd: support s16p (WavPack) directly | Burt P | 2016-10-05 | 1 | -3/+12 |
* | af_hdcd: allow all HDCD sample rates | Burt P | 2016-10-05 | 1 | -6/+8 |
* | af_hdcd: add mono as a supported channel layout | Burt P | 2016-10-05 | 1 | -1/+4 |
* | af_hdcd: fix bounds check in hdcd_envelope() | Burt P | 2016-09-08 | 1 | -2/+5 |
* | af_hdcd: hdcd_analyze_gen() using int instead of float | Burt P | 2016-09-07 | 1 | -5/+4 |
* | af_hdcd: tweak hdcd_analyze_prepare() a bit | Burt P | 2016-09-07 | 1 | -3/+6 |
* | af_hdcd: move decoding setup from init to config_input | Burt P | 2016-09-07 | 1 | -19/+21 |
* | af_hdcd: fix possible integer overflow | Burt P | 2016-09-07 | 1 | -5/+4 |
* | af_hdcd: some types renamed to remove _t | Burt P | 2016-09-07 | 1 | -29/+29 |
* | af_hdcd: av_frame_free(out) if av_frame_copy_props() fails | Burt P | 2016-08-25 | 1 | -0/+1 |
* | af_hdcd: for easier maintenance alongside libhdcd | Burt P | 2016-08-25 | 1 | -99/+172 |
* | af_hdcd: check return value of av_frame_copy_props() | Burt P | 2016-08-24 | 1 | -2/+6 |
* | af_hdcd: PE table limits | Burt P | 2016-08-21 | 1 | -5/+7 |
* | af_hdcd: add AVOption to disable autoconversion in the filter graph | Burt P | 2016-08-21 | 1 | -3/+13 |
* | af_hdcd: add AVOption to set the CDT period | Burt P | 2016-08-21 | 1 | -3/+9 |
* | af_hdcd: Code comments update | Burt P | 2016-08-21 | 1 | -86/+95 |
* | af_hdcd: Don't warn if converting from AV_SAMPLE_FMT_S16P | Burt P | 2016-08-08 | 1 | -14/+20 |
* | af_hdcd: Add analyze mode | Burt P | 2016-08-08 | 1 | -8/+155 |
* | af_hdcd: convert AVOptions from INT to BOOL | Burt P | 2016-08-06 | 1 | -2/+2 |
* | af_hdcd: add flags to AVOption defs | Burt P | 2016-08-02 | 1 | -2/+3 |
* | af_hdcd: Warn if there is any resampling or format conversion in the link chain | Burt P | 2016-08-01 | 1 | -4/+58 |
* | af_hdcd: Process stereo channels together, fix #5727 | Burt P | 2016-08-01 | 1 | -38/+249 |
* | af_hdcd: Move code detect/check into own function | Burt P | 2016-08-01 | 1 | -26/+60 |
* | af_hdcd: add force_pe filter option | Burt P | 2016-08-01 | 1 | -4/+22 |
* | af_hdcd: Improve error detection logging | Burt P | 2016-08-01 | 1 | -15/+19 |
* | af_hdcd: give cdt expired counter a value for never set | Burt P | 2016-07-31 | 1 | -3/+14 |
* | af_hdcd: fix a minor cosmetic annoyance | Burt P | 2016-07-31 | 1 | -2/+2 |
* | lavfi/hdcd: fix style | Clément Bœsch | 2016-07-28 | 1 | -5/+7 |