Re: [FFmpeg-devel] Patch: added V210 codec support to MXF encoder

2020-09-19 Thread Swami Kevala
 > On Sat, Sep 19, 2020 at 12:12 AM Carl Eugen Hoyos 
wrote:

> Imo - and this is not meant to block your patch - it would make more
sense to test the file produced with FFmpeg (and your patch) with the Sony
development kit.

Yes, you are right. That would make more sense. Unfortunately I don't have
access to the Sony Server - the sample files were provided to me by a
vendor.
Will see what I can do.

-- 
Swami Kevala -- http://www.ishafoundation.org
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] Patch: added V210 codec support to MXF encoder

2020-09-18 Thread Carl Eugen Hoyos


> Am 17.09.2020 um 23:34 schrieb Swami Kevala :
> 
> Verified the container_ui and element_ui with a sample file produced by
> Sony Server  1.3.0.0.1 (Sony MXF Development Kit (Win32) 4.9.1.118.1)

Imo - and this is not meant to block your patch - it would make more sense to 
test the file produced with FFmpeg (and your patch) with the Sony development 
kit.

Carl Eugen
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] Added V210 codec support to MXF encoder

2020-09-18 Thread Swami Kevala
Verified the container_ui and element_ui with a sample file produced by
Sony Server  1.3.0.0.1 (Sony MXF Development Kit (Win32) 4.9.1.118.1)

Tested converting an ffv1/mkv to v210/mxf successfully


Signed-off-by: Swami Kevala 
---
 libavformat/mxfenc.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index cbb0fc5..32e5ffa 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -123,6 +123,7 @@ enum ULIndex {
 INDEX_DV,
 INDEX_DNXHD,
 INDEX_JPEG2000,
+INDEX_V210,
 INDEX_H264,
 INDEX_S436M,
 INDEX_PRORES,
@@ -138,6 +139,7 @@ static const struct {
 { AV_CODEC_ID_DVVIDEO,INDEX_DV },
 { AV_CODEC_ID_DNXHD,  INDEX_DNXHD },
 { AV_CODEC_ID_JPEG2000,   INDEX_JPEG2000 },
+{ AV_CODEC_ID_V210,   INDEX_V210 },
 { AV_CODEC_ID_H264,   INDEX_H264 },
 { AV_CODEC_ID_PRORES, INDEX_PRORES },
 { AV_CODEC_ID_NONE }
@@ -189,6 +191,11 @@ static const MXFContainerEssenceEntry
mxf_essence_container_uls[] = {
   {
0x06,0x0e,0x2b,0x34,0x01,0x02,0x01,0x01,0x0d,0x01,0x03,0x01,0x15,0x01,0x08,0x00
},
   {
0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x07,0x04,0x01,0x02,0x02,0x03,0x01,0x01,0x00
},
   mxf_write_cdci_desc },
+// V210
+{ {
0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x05,0x01,0x05
},
+  {
0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x15,0x01,0x02,0x00
},
+  {
0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x0A,0x04,0x01,0x02,0x01,0x01,0x02,0x02,0x01
},
+  mxf_write_cdci_desc },
 // H.264
 { {
0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x0a,0x0D,0x01,0x03,0x01,0x02,0x10,0x60,0x01
},
   {
0x06,0x0E,0x2B,0x34,0x01,0x02,0x01,0x01,0x0D,0x01,0x03,0x01,0x15,0x01,0x05,0x00
},
--
1.8.3.1
-- 
Swami Kevala -- http://www.ishafoundation.org

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] Patch: added V210 codec support to MXF encoder

2020-09-17 Thread Swami Kevala
Verified the container_ui and element_ui with a sample file produced by
Sony Server  1.3.0.0.1 (Sony MXF Development Kit (Win32) 4.9.1.118.1)

Tested converting an ffv1/mkv to v210/mxf successfully

-- 
*- 9442504660*

-- 
 


-- 
The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not 
the intended recipient, you should not disseminate, distribute or copy this 
e-mail. Please notify the sender immediately and destroy all copies of this 
message and any attachments. WARNING: Computer viruses can be transmitted 
via email. The recipient should check this email and any attachments for 
the presence of viruses. The Organisation accepts no liability for any 
damage caused by any virus transmitted by this email. 
www.ishafoundation.org 


0001-area-changed-Added-V210-codec-support-to-MXF-encoder.patch
Description: Binary data
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".