[FFmpeg-cvslog] codec_desc: mark PCM A-law/mu-law lossy

Paul B Mahol git at videolan.org
Sat Nov 24 12:24:29 CET 2012


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Nov 24 11:19:27 2012 +0000| [4995145f408df45ac8d18f6fc49329565faa29ea] | committer: Paul B Mahol

codec_desc: mark PCM A-law/mu-law lossy

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4995145f408df45ac8d18f6fc49329565faa29ea
---

 libavcodec/codec_desc.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c
index 08aced8..5e4f357 100644
--- a/libavcodec/codec_desc.c
+++ b/libavcodec/codec_desc.c
@@ -1376,12 +1376,14 @@ static const AVCodecDescriptor codec_descriptors[] = {
         .type      = AVMEDIA_TYPE_AUDIO,
         .name      = "pcm_mulaw",
         .long_name = NULL_IF_CONFIG_SMALL("PCM mu-law / G.711 mu-law"),
+        .props     = AV_CODEC_PROP_LOSSY,
     },
     {
         .id        = AV_CODEC_ID_PCM_ALAW,
         .type      = AVMEDIA_TYPE_AUDIO,
         .name      = "pcm_alaw",
         .long_name = NULL_IF_CONFIG_SMALL("PCM A-law / G.711 A-law"),
+        .props     = AV_CODEC_PROP_LOSSY,
     },
     {
         .id        = AV_CODEC_ID_PCM_S32LE,



More information about the ffmpeg-cvslog mailing list