| Commit message (Expand) | Author | Age | Files | Lines |
* | avcodec/internal: Hide stuff only used by the core decode API | Andreas Rheinhardt | 2022-05-12 | 1 | -0/+1 |
* | lavc: drop a confusing message about "thread emulation" | Anton Khirnov | 2022-05-11 | 1 | -3/+0 |
* | lavc/avcodec: only allocate decoding packets for decoders | Anton Khirnov | 2022-05-11 | 1 | -6/+1 |
* | lib*/version: Move library version functions into files of their own | Andreas Rheinhardt | 2022-05-10 | 1 | -25/+0 |
* | avcodec/avcodec: Don't reset decoder-fields for encoders when flushing | Andreas Rheinhardt | 2022-04-13 | 1 | -12/+11 |
* | avcodec/avcodec: Simplify accessing AVSubtitleRect via dedicated pointer | Andreas Rheinhardt | 2022-04-13 | 1 | -6/+9 |
* | avcodec/avcodec: Avoid av_frame_unref(NULL) | Andreas Rheinhardt | 2022-04-13 | 1 | -1/+2 |
* | lavc/encode: drop EncodeSimpleContext | Anton Khirnov | 2022-04-13 | 1 | -2/+2 |
* | lavc/avcodec: only allocate the encoding frame for encoders | Anton Khirnov | 2022-04-13 | 1 | -3/+1 |
* | lavc/avcodec: simplify codec id/type validity checking | Anton Khirnov | 2022-04-13 | 1 | -8/+6 |
* | avcodec/codec_internal: Add FFCodec, hide internal part of AVCodec | Andreas Rheinhardt | 2022-03-21 | 1 | -17/+19 |
* | avcodec/internal: Move FF_CODEC_CAP_* to a new header codec_internal.h | Andreas Rheinhardt | 2022-03-21 | 1 | -0/+1 |
* | libavcodec: Split version.h | Martin Storsjö | 2022-03-16 | 1 | -0/+1 |
* | lavc: drop temporary compat wrappers for channel layout API change | Anton Khirnov | 2022-03-15 | 1 | -29/+0 |
* | lavc: switch to the new channel layout API | Vittorio Giovara | 2022-03-15 | 1 | -8/+73 |
* | avcodec/avcodec: Decrease the amount of time while holding the lock | Andreas Rheinhardt | 2022-02-18 | 1 | -5/+5 |
* | lavc/avcodec: switch to new FIFO API | Anton Khirnov | 2022-02-07 | 1 | -11/+6 |
* | avcodec/internal: Allow receive_frame codecs to use decode_simple pkt | Andreas Rheinhardt | 2021-11-07 | 1 | -4/+4 |
* | avcodec/avcodec: Simplify check for flushing of bsf | Andreas Rheinhardt | 2021-09-26 | 1 | -1/+1 |
* | avcodec/avcodec: Remove redundant assert | Andreas Rheinhardt | 2021-09-26 | 1 | -3/+0 |
* | avcodec/avcodec: Make sanity check stricter | Andreas Rheinhardt | 2021-09-26 | 1 | -2/+1 |
* | avcodec: add a Film Grain codec property flag | James Almer | 2021-08-24 | 1 | -0/+2 |
* | avcodec/avcodec: Stop including channel_layout.h in avcodec.h | Andreas Rheinhardt | 2021-07-22 | 1 | -0/+1 |
* | avcodec/avcodec: Stop including bsf.h in avcodec.h | Andreas Rheinhardt | 2021-07-22 | 1 | -0/+1 |
* | avcodec/avcodec: Don't free options on failure in avcodec_open2() | Andreas Rheinhardt | 2021-06-08 | 1 | -1/+0 |
* | avcodec/avcodec: Avoid redundant copies of options in avcodec_open2 | Andreas Rheinhardt | 2021-06-08 | 1 | -11/+3 |
* | avcodec/frame_thread_encoder: Avoid dictionaries | Andreas Rheinhardt | 2021-06-08 | 1 | -1/+1 |
* | avcodec/avcodec: Use avcodec_close() on avcodec_open2() failure | Andreas Rheinhardt | 2021-04-28 | 1 | -40/+9 |
* | avcodec/avcodec: Store whether AVCodec->close needs to be called | Andreas Rheinhardt | 2021-04-28 | 1 | -12/+11 |
* | avcodec/avcodec: Free frame_thread_encoder on avcodec_open2() error | Andreas Rheinhardt | 2021-04-28 | 1 | -0/+2 |
* | avcodec: Remove deprecated old encode/decode APIs | Andreas Rheinhardt | 2021-04-27 | 1 | -30/+0 |
* | avcodec: Remove deprecated AVCodecContext.coded_frame | Andreas Rheinhardt | 2021-04-27 | 1 | -10/+0 |
* | avcodec: Remove lock manager API | Andreas Rheinhardt | 2021-04-27 | 1 | -7/+0 |
* | avcodec/avcodec: Actually honour the documentation of subtitle_header | Andreas Rheinhardt | 2021-04-24 | 1 | -2/+5 |
* | avcodec/avcodec: Use AVBPrint in avcodec_string() | Andreas Rheinhardt | 2021-03-24 | 1 | -68/+65 |
* | avcodec/avcodec: Update check for identical colorspace/primaries/trc names | Andreas Rheinhardt | 2021-03-24 | 1 | -7/+7 |
* | avcodec/avcodec: Don't use NULL for %s printf specifier | Andreas Rheinhardt | 2021-03-24 | 1 | -16/+22 |
* | avcodec/avcodec: Use dedicated pointer to access AVCodecInternal | Andreas Rheinhardt | 2021-03-24 | 1 | -24/+23 |
* | avcodec/avcodec: Move decoder channel count check to ff_decode_preinit | Andreas Rheinhardt | 2021-03-20 | 1 | -8/+0 |
* | avcodec/avcodec: Sanitize options before using them | Andreas Rheinhardt | 2021-03-20 | 1 | -7/+7 |
* | avcodec/avcodec: Perform sub_charenc/iconv checks before AVCodec.init() | Andreas Rheinhardt | 2021-03-20 | 1 | -40/+0 |
* | avcodec/avcodec: Check earlier for codec id/type mismatch | Andreas Rheinhardt | 2021-03-20 | 1 | -12/+12 |
* | avcodec: move core AVCodecContext functions from util.c to a new file | James Almer | 2021-03-19 | 1 | -0/+845 |
* | broken mess removial | Michael Niedermayer | 2004-09-29 | 1 | -173/+0 |
* | libdts support by (Benjamin Zores <ben at geexbox dot org>) | Michael Niedermayer | 2004-07-14 | 1 | -0/+1 |
* | flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot ... | Garrick Meeker | 2003-07-09 | 1 | -0/+1 |
* | per file doxy | Michael Niedermayer | 2003-03-06 | 1 | -0/+5 |
* | * still unfinished code for Options | Zdenek Kabelac | 2003-02-10 | 1 | -19/+19 |
* | * useless commit - ignore | Zdenek Kabelac | 2002-11-11 | 1 | -4/+20 |
* | * first shot for the new avcodec API | Zdenek Kabelac | 2002-05-14 | 1 | -0/+150 |