[vlc-commits] mux: mp4: use main profile id for mp2v

Francois Cartegnie git at videolan.org
Fri Feb 8 21:20:26 CET 2019


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri Feb  8 18:16:01 2019 +0100| [492b8a4d6a0ab9914d9abc74579d92e2e66d6a17] | committer: Francois Cartegnie

mux: mp4: use main profile id for mp2v

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=492b8a4d6a0ab9914d9abc74579d92e2e66d6a17
---

 modules/mux/mp4/libmp4mux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/mux/mp4/libmp4mux.c b/modules/mux/mp4/libmp4mux.c
index 352b70e5be..f99a346336 100644
--- a/modules/mux/mp4/libmp4mux.c
+++ b/modules/mux/mp4/libmp4mux.c
@@ -577,7 +577,7 @@ static bo_t *GetESDS(mp4mux_trackinfo_t *p_track)
         /* fallthrough */
     case VLC_CODEC_MP2V:
         /* MPEG-I=0x6b, MPEG-II = 0x60 -> 0x65 */
-        i_object_profile_indication = 0x65; /* Visual 13818-2 422 Profile */
+        i_object_profile_indication = 0x61; /* Visual 13818-2 Main Profile */
         break;
     case VLC_CODEC_MP1V:
         i_object_profile_indication = 0x6a; /* Visual ISO/IEC 11172-2  */



More information about the vlc-commits mailing list