aboutsummaryrefslogtreecommitdiffhomepage
path: root/audio/fmt-conversion.c
Commit message (Collapse)AuthorAge
* audio/fmt-conversion: change license to LGPLGravatar wm42017-05-05
| | | | | | | Although pretty similar to the probably unrelicensable video/fmt-conversion.c/h (basically using the same idea, but for audio), it was written by someone else. The format mapping was first added in commit ad95e046c2451.
* Update license headersGravatar Marcin Kurczewski2015-04-13
| | | | Signed-off-by: wm4 <wm4@nowhere>
* audio: fix format ID conversionGravatar wm42013-12-23
| | | | | AV_SAMPLE_FMT_NONE != 0, could apparently cause crashes in certain situations.
* audio/fmt-conversion.c: remove unknown audio format messagesGravatar wm42013-12-21
| | | | Same deal as with video/fmt-conversion.c.
* Split mpvcore/ into common/, misc/, bstr/Gravatar wm42013-12-17
|
* audio: drop "_NE"/"ne" suffix from audio formatsGravatar wm42013-11-15
| | | | | | You get the native format by not appending any suffix to the format. This change includes user-facing names, e.g. for the --format option.
* audio/format: add non-interleaved audio formatsGravatar wm42013-11-12
|
* audio: stop "unsupported sample format" spamGravatar wm42013-11-07
| | | | | | | It spams these in verbose mode. It's caused by format negotiation code in af.c. It's for the mpv format to ffmpeg-format case, and that one is very uninteresting. (The ffmpeg supported audio formats are practically never extended.)
* audio: fix bogus audio format comparisonGravatar wm42013-11-07
|
* audio: replace af_fmt2str_short -> af_fmt_to_strGravatar wm42013-11-07
| | | | Also, remove all af_fmt2str usages.
* core: move contents to mpvcore (2/2)Gravatar Stefano Pigozzi2013-08-06
| | | | Followup commit. Fixes all the files references.
* audio: add double sample formatGravatar wm42013-05-12
| | | | | | To make this easier, get rid of the direct mapping of the AF_FORMAT_BITS_MASK bit field to number of bytes. This way we can throw away the unused AF_FORMAT_48BIT and don't have to add ..._56BIT.
* ad_lavc: use fmt-conversion to map sample formatsGravatar Stefano Pigozzi2013-04-13