Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3a319ab6
Commit
3a319ab6
authored
Sep 21, 2007
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add D-10 NTSC support
Originally committed as revision 10539 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
28cf7215
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
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