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
986c2ccb
Commit
986c2ccb
authored
Aug 01, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add some useful debug info
Originally committed as revision 5881 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
907a0510
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
mov.c
libavformat/mov.c
+2
-0
No files found.
libavformat/mov.c
View file @
986c2ccb
...
...
@@ -586,6 +586,7 @@ static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
sc
->
esds
.
avg_bitrate
=
get_be32
(
pb
);
st
->
codec
->
codec_id
=
codec_get_id
(
ff_mov_obj_type
,
sc
->
esds
.
object_type_id
);
dprintf
(
"esds object type id %d
\n
"
,
sc
->
esds
.
object_type_id
);
len
=
mov_mp4_read_descr
(
pb
,
&
tag
);
if
(
tag
==
MP4DecSpecificDescrTag
)
{
dprintf
(
"Specific MPEG4 header len=%d
\n
"
,
len
);
...
...
@@ -1056,6 +1057,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
get_be32
(
pb
);
/* vendor */
st
->
codec
->
channels
=
get_be16
(
pb
);
/* channel count */
dprintf
(
"audio channels %d
\n
"
,
st
->
codec
->
channels
);
st
->
codec
->
bits_per_sample
=
get_be16
(
pb
);
/* sample size */
/* do we need to force to 16 for AMR ? */
...
...
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