summaryrefslogtreecommitdiff
path: root/doc/examples/decode_audio.c
Commit message (Collapse)AuthorAge
* doc/examples/decode_audio: Fix "warning: ISO C90 forbids mixed declarations ↵Michael Niedermayer2019-09-16
| | | | | | and code" Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/examples/decode_audio: print message about how to play the output fileSteven Liu2019-08-26
| | | | Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
* examples: Don't call deprecated functions which don't do anythingMark Thompson2018-02-09
|
* Merge commit 'fee0f1de2c6a9924acb74013436dbea8f2bd1ecb'Clément Bœsch2017-04-04
|\ | | | | | | | | | | | | * commit 'fee0f1de2c6a9924acb74013436dbea8f2bd1ecb': examples/decode_audio: flush the decoder Merged-by: Clément Bœsch <cboesch@gopro.com>
| * examples/decode_audio: flush the decoderAnton Khirnov2016-11-23
| |
* | Merge commit '9a38184a143a1560814b084aebe628f8df46e666'Clément Bœsch2017-04-04
|\| | | | | | | | | | | | | * commit '9a38184a143a1560814b084aebe628f8df46e666': examples/decode_audio: allocate the packet dynamically Merged-by: Clément Bœsch <cboesch@gopro.com>
| * examples/decode_audio: allocate the packet dynamicallyAnton Khirnov2016-11-23
| | | | | | | | AVPackets on stack are discouraged now.
| * examples/decode_audio: handle planar audio now produced by the MP2 decoderAnton Khirnov2016-11-23
| |
* | Merge commit '3d66717f7cb5555257244be8f5bce172ed3af7ac'Clément Bœsch2017-04-04
|\| | | | | | | | | | | | | * commit '3d66717f7cb5555257244be8f5bce172ed3af7ac': examples/decode_audio: use the new audio decoding API Merged-by: Clément Bœsch <cboesch@gopro.com>
| * examples/decode_audio: use the new audio decoding APIAnton Khirnov2016-11-23
| |
* | Merge commit '0946c754d99c05413e813ee515039adcf0f9232a'Clément Bœsch2017-04-04
|\| | | | | | | | | | | | | * commit '0946c754d99c05413e813ee515039adcf0f9232a': examples/decode_audio: use a parser for splitting the input Merged-by: Clément Bœsch <cboesch@gopro.com>
| * examples/decode_audio: use a parser for splitting the inputAnton Khirnov2016-11-23
| | | | | | | | | | Do not rely on the decoder handling this, as it's not guaranteed to work.
* | examples/decode_audio: reduce the scope of 2 variablesClément Bœsch2017-04-04
| |
* | doc/decode_audio: use <> to include libav* headersJames Almer2017-03-31
| | | | | | | | Found-by: ubitux
* | Merge commit '905cdcaa9d081d3d945ce555b27b43a75c3af57b'James Almer2017-03-31
|\| | | | | | | | | | | | | * commit '905cdcaa9d081d3d945ce555b27b43a75c3af57b': examples/decode_audio: Add missing header for av_free() Merged-by: James Almer <jamrial@gmail.com>
| * examples/decode_audio: Add missing header for av_free()Diego Biurrun2016-11-10
| |
* | doc/examples/{de,en}code_audio: fix includesClément Bœsch2017-03-29
| | | | | | | | Consistent with other examples.
* | Merge commit '90265814f993098d79b0a0f40745ecdb403fbf56'Clément Bœsch2017-03-29
|\| | | | | | | | | | | | | * commit '90265814f993098d79b0a0f40745ecdb403fbf56': examples/decode_audio: constify the AVCodec instance Merged-by: Clément Bœsch <u@pkh.me>
| * examples/decode_audio: constify the AVCodec instanceAnton Khirnov2016-11-02
| |
* | Merge commit 'f5df897c4b61985e3afc89ba1290649712ff438e'Clément Bœsch2017-03-29
|/ | | | | | | * commit 'f5df897c4b61985e3afc89ba1290649712ff438e': examples/avcodec: split audio decoding into a separate example Merged-by: Clément Bœsch <u@pkh.me>
* examples/avcodec: split audio decoding into a separate exampleAnton Khirnov2016-11-02
The four examples (audio/video encoding/decoding) are completely independent so it makes little sense to have them all in one file.