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
af62b427
Commit
af62b427
authored
May 25, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/h264: fix () in macros
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
97e6b5ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
h264.h
libavcodec/h264.h
+8
-8
No files found.
libavcodec/h264.h
View file @
af62b427
...
...
@@ -67,10 +67,10 @@
#define MAX_SLICES 16
#ifdef ALLOW_INTERLACE
#define MB_MBAFF(h)
h
->mb_mbaff
#define MB_FIELD(h)
h
->mb_field_decoding_flag
#define FRAME_MBAFF(h)
h
->mb_aff_frame
#define FIELD_PICTURE(h) (
h
->picture_structure != PICT_FRAME)
#define MB_MBAFF(h)
(h)
->mb_mbaff
#define MB_FIELD(h)
(h)
->mb_field_decoding_flag
#define FRAME_MBAFF(h)
(h)
->mb_aff_frame
#define FIELD_PICTURE(h) (
(h)
->picture_structure != PICT_FRAME)
#define LEFT_MBS 2
#define LTOP 0
#define LBOT 1
...
...
@@ -90,12 +90,12 @@
#define FIELD_OR_MBAFF_PICTURE(h) (FRAME_MBAFF(h) || FIELD_PICTURE(h))
#ifndef CABAC
#define CABAC(h)
h
->pps.cabac
#define CABAC(h)
(h)
->pps.cabac
#endif
#define CHROMA(h) (
h
->sps.chroma_format_idc)
#define CHROMA422(h) (
h
->sps.chroma_format_idc == 2)
#define CHROMA444(h) (
h
->sps.chroma_format_idc == 3)
#define CHROMA(h) (
(h)
->sps.chroma_format_idc)
#define CHROMA422(h) (
(h)
->sps.chroma_format_idc == 2)
#define CHROMA444(h) (
(h)
->sps.chroma_format_idc == 3)
#define EXTENDED_SAR 255
...
...
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