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
834bff48
Commit
834bff48
authored
Jul 28, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove useless variables
Originally committed as revision 5840 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e076173f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
mxf.c
libavformat/mxf.c
+0
-7
No files found.
libavformat/mxf.c
View file @
834bff48
...
...
@@ -91,7 +91,6 @@ typedef struct MXFDescriptor {
UID
uid
;
UID
essence_container_ul
;
UID
essence_codec_ul
;
enum
CodecType
codec_type
;
AVRational
sample_rate
;
AVRational
aspect_ratio
;
int
width
;
...
...
@@ -101,7 +100,6 @@ typedef struct MXFDescriptor {
struct
MXFDescriptor
**
sub_descriptors
;
UID
*
sub_descriptors_refs
;
int
sub_descriptors_count
;
int
block_align
;
int
linked_track_id
;
}
MXFDescriptor
;
...
...
@@ -616,7 +614,6 @@ static int mxf_read_metadata_generic_descriptor(MXFContext *mxf, KLVPacket *klv)
descriptor
->
linked_track_id
=
get_be32
(
pb
);
break
;
case
0x3201
:
/* PictureEssenceCoding */
descriptor
->
codec_type
=
CODEC_TYPE_VIDEO
;
get_buffer
(
pb
,
descriptor
->
essence_codec_ul
,
16
);
break
;
case
0x3203
:
...
...
@@ -629,15 +626,11 @@ static int mxf_read_metadata_generic_descriptor(MXFContext *mxf, KLVPacket *klv)
descriptor
->
aspect_ratio
.
num
=
get_be32
(
pb
);
descriptor
->
aspect_ratio
.
den
=
get_be32
(
pb
);
break
;
case
0x3D0A
:
descriptor
->
block_align
=
get_be16
(
pb
);
break
;
case
0x3D03
:
descriptor
->
sample_rate
.
num
=
get_be32
(
pb
);
descriptor
->
sample_rate
.
den
=
get_be32
(
pb
);
break
;
case
0x3D06
:
/* SoundEssenceCompression */
descriptor
->
codec_type
=
CODEC_TYPE_AUDIO
;
get_buffer
(
pb
,
descriptor
->
essence_codec_ul
,
16
);
break
;
case
0x3D07
:
...
...
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