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
f151f541
Commit
f151f541
authored
Dec 02, 2014
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/qcp: Print unknown GUID on error.
parent
7f6515e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
qcp.c
libavformat/qcp.c
+3
-1
No files found.
libavformat/qcp.c
View file @
f151f541
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include "libavutil/channel_layout.h"
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "avformat.h"
#include "riff.h"
typedef
struct
{
typedef
struct
{
uint32_t
data_size
;
///< size of data chunk
uint32_t
data_size
;
///< size of data chunk
...
@@ -106,7 +107,8 @@ static int qcp_read_header(AVFormatContext *s)
...
@@ -106,7 +107,8 @@ static int qcp_read_header(AVFormatContext *s)
}
else
if
(
!
memcmp
(
buf
,
guid_smv
,
16
))
{
}
else
if
(
!
memcmp
(
buf
,
guid_smv
,
16
))
{
st
->
codec
->
codec_id
=
AV_CODEC_ID_SMV
;
st
->
codec
->
codec_id
=
AV_CODEC_ID_SMV
;
}
else
{
}
else
{
av_log
(
s
,
AV_LOG_ERROR
,
"Unknown codec GUID.
\n
"
);
av_log
(
s
,
AV_LOG_ERROR
,
"Unknown codec GUID "
FF_PRI_GUID
".
\n
"
,
FF_ARG_GUID
(
buf
));
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
avio_skip
(
pb
,
2
+
80
);
// codec-version + codec-name
avio_skip
(
pb
,
2
+
80
);
// codec-version + codec-name
...
...
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