summaryrefslogtreecommitdiff
path: root/libavformat/flacenc.h
Commit message (Collapse)AuthorAgeFilesLines
* avformat: Remove unnecessary inclusions from libavcodecAndreas Rheinhardt2022-03-231-3/+2
| | | | | | Also improve the other headers a bit while at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avformat/flacenc: Add const to ff_flac_write_header() parameterAndreas Rheinhardt2019-11-281-1/+1
| | | | | | | The extradata is not changed at all. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Merge commit 'e19d48dfce52f1417f7f06143b96fed00cbcdc52'Michael Niedermayer2014-06-011-2/+2
|\ | | | | | | | | | | | | | | | | | | * commit 'e19d48dfce52f1417f7f06143b96fed00cbcdc52': flac muxer: support reading updated extradata from side data Conflicts: libavformat/flacenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * flac muxer: support reading updated extradata from side dataAnton Khirnov2014-06-011-2/+2
| |
* | Merge commit '54ed488b1af583df6c9d2a73b4a44f16b7e4f82c'Michael Niedermayer2014-05-281-0/+2
|\ \ | |/ | | | | | | | | | | | | | | | | * commit '54ed488b1af583df6c9d2a73b4a44f16b7e4f82c': flac muxer: write WAVEFORMATEXTENSIBLE_CHANNEL_MASK tag for multichannel files Conflicts: libavformat/flacenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * flac muxer: write WAVEFORMATEXTENSIBLE_CHANNEL_MASK tag for multichannel filesAnton Khirnov2014-05-281-0/+2
| |
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-201-1/+1
| | | | | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* | avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-201-1/+1
|/ | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit ae628ec1fd7f54c102bf9e667a3edd404b9b9128)
* Put ff_flac_write_header() in a separate C file to allow it to be shared withoutJustin Ruggles2010-03-231-23/+2
| | | | | | duplicating code or adding a dependency on vorbiscomment.o. Originally committed as revision 22652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ff_flac_write_header() to flacenc.h, which removes the Matroska muxer'sJustin Ruggles2010-03-221-2/+25
| | | | | | dependency on flacenc.o and fixes the unnecessary dependency on vorbiscomment.o. Originally committed as revision 22639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VorbisComment writing to FLAC files.James Darnley2010-03-201-1/+2
| | | | | | Patch by James Darnley <james darnley at gmail>. Originally committed as revision 22605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Share the function to write a raw FLAC header and use it in the MatroskaJustin Ruggles2009-02-261-0/+29
muxer. Originally committed as revision 17606 to svn://svn.ffmpeg.org/ffmpeg/trunk