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

Francois Cartegnie git at videolan.org
Tue Feb 26 19:45:43 CET 2019


vlc/vlc-3.0 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri Feb  8 18:16:01 2019 +0100| [8397b62865a1135d23e2a004be343e82e905c649] | committer: Francois Cartegnie

mux: mp4: use main profile id for mp2v

(cherry picked from commit 492b8a4d6a0ab9914d9abc74579d92e2e66d6a17)

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=8397b62865a1135d23e2a004be343e82e905c649
---

 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 28d5cf2078..95d3aef270 100644
--- a/modules/mux/mp4/libmp4mux.c
+++ b/modules/mux/mp4/libmp4mux.c
@@ -272,7 +272,7 @@ static bo_t *GetESDS(mp4mux_trackinfo_t *p_track)
         /* fallthrough */
     case VLC_CODEC_MP2V:
         /* MPEG-I=0x6b, MPEG-II = 0x60 -> 0x65 */
-        i_object_type_indication = 0x65;
+        i_object_type_indication = 0x61; /* Visual 13818-2 Main Profile */
         break;
     case VLC_CODEC_MP1V:
         i_object_type_indication = 0x6a; /* Visual ISO/IEC 11172-2  */



More information about the vlc-commits mailing list