From: Leandro Dorileo Date: Wed, 7 Jan 2015 18:10:36 +0000 (-0200) Subject: mp4: change codec identifier mpeg1audio to mpeg4aac-lc X-Git-Tag: release_0.5.0~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e83a7ae5a7f22d1193077a7b3756ce0c70198433;p=platform%2Fupstream%2Flightmediascanner.git mp4: change codec identifier mpeg1audio to mpeg4aac-lc To keep consistence between the identified audio codec by mp4 plugin and the dlna rules we need to make the plugin code know we expect mpeg4aac-lc instead of mpeg1audio. --- diff --git a/src/plugins/mp4/mp4.c b/src/plugins/mp4/mp4.c index 7e374a7..311b792 100644 --- a/src/plugins/mp4/mp4.c +++ b/src/plugins/mp4/mp4.c @@ -94,7 +94,7 @@ DECL_STR(_codec_audio_mpeg2aac_main, "mpeg2aac-main"); DECL_STR(_codec_audio_mpeg2aac_lc, "mpeg2aac-lc"); DECL_STR(_codec_audio_mpeg2aac_ssr, "mpeg2aac-ssr"); DECL_STR(_codec_audio_mpeg2audio, "mpeg2audio"); -DECL_STR(_codec_audio_mpeg1audio, "mpeg1audio"); +DECL_STR(_codec_audio_mpeg1audio, "mpeg4aac-lc"); DECL_STR(_codec_audio_pcm16le, "pcm16le"); DECL_STR(_codec_audio_vorbis, "vorbis"); DECL_STR(_codec_audio_alaw, "alaw");