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
8165ee93
Commit
8165ee93
authored
Feb 02, 2007
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0x00000103 is not an escape marker
Originally committed as revision 7807 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a836a2c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
vc1.c
libavcodec/vc1.c
+1
-2
No files found.
libavcodec/vc1.c
View file @
8165ee93
...
...
@@ -50,7 +50,6 @@ static const uint16_t table_mb_intra[64][2];
//@{
enum
VC1Code
{
VC1_CODE_RES0
=
0x00000100
,
VC1_CODE_ESCAPE
=
0x00000103
,
VC1_CODE_ENDOFSEQ
=
0x0000010A
,
VC1_CODE_SLICE
,
VC1_CODE_FIELD
,
...
...
@@ -4107,7 +4106,7 @@ static void vc1_decode_blocks(VC1Context *v)
}
}
#define IS_MARKER(x) (((
(x) & ~0xFF) == VC1_CODE_RES0) && ((x) != VC1_CODE_ESCAPE)
)
#define IS_MARKER(x) (((
x) & ~0xFF) == VC1_CODE_RES0
)
/** Find VC-1 marker in buffer
* @return position where next marker starts or end of buffer if no marker found
...
...
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