Re: [FFmpeg-devel] [PATCH 6/6] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-05 Thread Mark Reid
On Tue, Jul 5, 2016 at 1:53 AM, Carl Eugen Hoyos wrote: > Mark Reid gmail.com> writes: > >> if (track->vos_data && track->vos_len > 0x29) { >> -if (track->vos_data[0] == 0x00 && >> -track->vos_data[1] == 0x00 && >> -track->vos_data[2] ==

Re: [FFmpeg-devel] [PATCH 6/6] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-05 Thread Carl Eugen Hoyos
Mark Reid gmail.com> writes: > if (track->vos_data && track->vos_len > 0x29) { > -if (track->vos_data[0] == 0x00 && > -track->vos_data[1] == 0x00 && > -track->vos_data[2] == 0x02 && > -track->vos_data[3] == 0x80 && > -

[FFmpeg-devel] [PATCH 6/6] libavformat/movenc: add dnxhr compatibility for apple players

2016-07-04 Thread Mark Reid
--- libavformat/movenc.c | 34 +++--- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d614933..e97fb74 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -32,6 +32,7 @@ #include "isom.h"