#include "webrtc/common_video/h264/sps_vui_rewriter.h"
#include <algorithm>
#include <memory>
#include "webrtc/base/bitbuffer.h"
#include "webrtc/base/checks.h"
#include "webrtc/base/logging.h"
#include "webrtc/common_video/h264/h264_common.h"
#include "webrtc/common_video/h264/sps_parser.h"
◆ COPY_BITS
#define COPY_BITS |
( |
|
src, |
|
|
|
dest, |
|
|
|
tmp, |
|
|
|
bits |
|
) |
| |
Value:do { \
RETURN_FALSE_ON_FAIL((
src)->ReadBits(&tmp,
bits)); \
RETURN_FALSE_ON_FAIL((
dest)->WriteBits(tmp,
bits)); \
} while (0)
OPENSSL_EXPORT ASN1_BIT_STRING * bits
Definition: x509v3.h:532
dest
Definition: upload.py:394
GLenum src
Definition: gl2ext.h:304
◆ COPY_EXP_GOLOMB
#define COPY_EXP_GOLOMB |
( |
|
src, |
|
|
|
dest, |
|
|
|
tmp |
|
) |
| |
Value:do { \
RETURN_FALSE_ON_FAIL((
src)->ReadExponentialGolomb(&tmp)); \
RETURN_FALSE_ON_FAIL((
dest)->WriteExponentialGolomb(tmp)); \
} while (0)
dest
Definition: upload.py:394
GLenum src
Definition: gl2ext.h:304
◆ COPY_UINT8
#define COPY_UINT8 |
( |
|
src, |
|
|
|
dest, |
|
|
|
tmp |
|
) |
| |
Value:do { \
RETURN_FALSE_ON_FAIL((
src)->ReadUInt8(&tmp)); \
RETURN_FALSE_ON_FAIL((
dest)->WriteUInt8(tmp)); \
} while (0)
dest
Definition: upload.py:394
GLenum src
Definition: gl2ext.h:304
◆ RETURN_FALSE_ON_FAIL
#define RETURN_FALSE_ON_FAIL |
( |
|
x | ) |
|
Value: LOG_F(
LS_ERROR) <<
" (line:" << __LINE__ <<
") FAILED: " #
x; \
return false; \
}
EGLSurface EGLint x
Definition: eglext.h:950
Definition: logging.h:113