Home
last modified time | relevance | path

Searched refs:MKTAG (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/videoio/src/
Dffmpeg_codecs.hpp86 #ifndef MKTAG
87 #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24)) macro
163 { AV_CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
164 { AV_CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
165 { AV_CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
166 { AV_CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
167 { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') },
168 { AV_CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') },
170 { AV_CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
171 { AV_CODEC_ID_H263P, MKTAG('H', '2', '6', '3') },
[all …]
Dcap_ffmpeg_impl.hpp158 #define AVERROR_EOF (-MKTAG( 'E','O','F',' '))
2130 c->codec_tag = MKTAG('H', '2', '6', '4'); in open()
/external/opencv3/3rdparty/include/ffmpeg_/libavutil/
Derror.h47 #define FFERRTAG(a, b, c, d) (-(int)MKTAG(a, b, c, d))
Dcommon.h285 #define MKTAG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((unsigned)(d) << 24)) macro
/external/opencv3/3rdparty/include/ffmpeg_/libavformat/
Davformat.h595 …AVSTREAM_PARSE_FULL_RAW=MKTAG(0,'R','A','W'), /**< full parsing and repack with timestamp an…