Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
3a319ab6
Commit
3a319ab6
authored
Sep 21, 2007
by
Baptiste Coudurier
Browse files
add D-10 NTSC support
Originally committed as revision 10539 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
28cf7215
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
libavformat/mxf.c
libavformat/mxf.c
+6
-0
No files found.
libavformat/mxf.c
View file @
3a319ab6
...
...
@@ -593,6 +593,9 @@ static const MXFCodecUL mxf_codec_uls[] = {
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x01
,
0x05
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* D-10 30Mbps PAL */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x01
,
0x03
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* D-10 40Mbps PAL */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x01
,
0x01
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* D-10 50Mbps PAL */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x01
,
0x06
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* D-10 30Mbps NTSC */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x01
,
0x04
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* D-10 40Mbps NTSC */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x01
,
0x02
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* D-10 50Mbps NTSC */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x03
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x02
,
0x00
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* 422P@ML I-Frame */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x03
,
0x04
,
0x01
,
0x02
,
0x02
,
0x01
,
0x02
,
0x03
,
0x00
},
CODEC_ID_MPEG2VIDEO
,
Frame
},
/* 422P@ML Long GoP */
...
...
@@ -639,6 +642,9 @@ static const MXFCodecUL mxf_sound_essence_container_uls[] = {
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x0D
,
0x01
,
0x03
,
0x01
,
0x02
,
0x01
,
0x05
,
0x01
},
CODEC_ID_PCM_S16LE
,
Frame
},
/* D-10 Mapping 30Mbps PAL Extended Template */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x0D
,
0x01
,
0x03
,
0x01
,
0x02
,
0x01
,
0x03
,
0x01
},
CODEC_ID_PCM_S16LE
,
Frame
},
/* D-10 Mapping 40Mbps PAL Extended Template */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x0D
,
0x01
,
0x03
,
0x01
,
0x02
,
0x01
,
0x01
,
0x01
},
CODEC_ID_PCM_S16LE
,
Frame
},
/* D-10 Mapping 50Mbps PAL Extended Template */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x0D
,
0x01
,
0x03
,
0x01
,
0x02
,
0x01
,
0x06
,
0x01
},
CODEC_ID_PCM_S16LE
,
Frame
},
/* D-10 Mapping 30Mbps NTSC Extended Template */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x0D
,
0x01
,
0x03
,
0x01
,
0x02
,
0x01
,
0x04
,
0x01
},
CODEC_ID_PCM_S16LE
,
Frame
},
/* D-10 Mapping 40Mbps NTSC Extended Template */
{
{
0x06
,
0x0E
,
0x2B
,
0x34
,
0x04
,
0x01
,
0x01
,
0x01
,
0x0D
,
0x01
,
0x03
,
0x01
,
0x02
,
0x01
,
0x02
,
0x01
},
CODEC_ID_PCM_S16LE
,
Frame
},
/* D-10 Mapping 50Mbps NTSC Extended Template */
{
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
},
CODEC_ID_NONE
,
Frame
},
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment