diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-12-18 17:49:08 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-12-18 17:49:08 +0000 |
commit | ecc0e9221fcfa3f46459b1f9c954298f93f72779 (patch) | |
tree | 30b4219f51797b302a820bbd67ff9b575bb3c54e /gst/mxf/mxfvc3.h | |
parent | 59c80c9a40b0b8bcdaddaa3dcb2b7260027ad1ac (diff) |
gst/mxf/: Add support for VC-3 (aka DNxHD essence, see SMPTE 2019-4).
Original commit message from CVS:
* gst/mxf/Makefile.am:
* gst/mxf/mxf.c: (plugin_init):
* gst/mxf/mxfvc3.c: (mxf_is_vc3_essence_track),
(mxf_vc3_handle_essence_element), (mxf_vc3_create_caps),
(mxf_vc3_init):
* gst/mxf/mxfvc3.h:
Add support for VC-3 (aka DNxHD essence, see SMPTE 2019-4).
This is untested because of lack of sample files but should
work fine.
Diffstat (limited to 'gst/mxf/mxfvc3.h')
-rw-r--r-- | gst/mxf/mxfvc3.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gst/mxf/mxfvc3.h b/gst/mxf/mxfvc3.h new file mode 100644 index 000000000..f2bb2a35c --- /dev/null +++ b/gst/mxf/mxfvc3.h @@ -0,0 +1,33 @@ +/* GStreamer + * Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +/* Implementation of SMPTE S2019-4 - Mapping VC-3 coding units into the MXF + * Generic Container + */ + +#ifndef __MXF_VC3_H__ +#define __MXF_VC3_H__ + +#include <gst/gst.h> + +#include "mxfparse.h" + +void mxf_vc3_init (void); + +#endif /* __MXF_VC3_H__ */ |