Go to the documentation of this file.
37 const uint8_t *buf,
int buf_size)
40 const uint8_t *buf_end = buf + buf_size;
42 int frame_rate_index, ext_type, bytes_left;
43 int frame_rate_ext_n, frame_rate_ext_d;
44 int top_field_first, repeat_first_field, progressive_frame;
45 int horiz_size_ext, vert_size_ext, bit_rate_ext;
55 while (buf < buf_end) {
58 bytes_left = buf_end - buf;
61 if (bytes_left >= 2) {
62 s->pict_type = (buf[1] >> 3) & 7;
64 vbv_delay = ((buf[1] & 0x07) << 13) | (buf[2] << 5) | (buf[3] >> 3);
68 if (bytes_left >= 7) {
69 pc->width = (buf[0] << 4) | (buf[1] >> 4);
70 pc->height = ((buf[1] & 0x0f) << 8) | buf[2];
76 frame_rate_index = buf[3] & 0xf;
78 bit_rate = (buf[4]<<10) | (buf[5]<<2) | (buf[6]>>6);
84 if (bytes_left >= 1) {
85 ext_type = (buf[0] >> 4);
88 if (bytes_left >= 6) {
89 horiz_size_ext = ((buf[1] & 1) << 1) | (buf[2] >> 7);
90 vert_size_ext = (buf[2] >> 5) & 3;
91 bit_rate_ext = ((buf[2] & 0x1F)<<7) | (buf[3]>>1);
92 frame_rate_ext_n = (buf[5] >> 5) & 3;
93 frame_rate_ext_d = (buf[5] & 0x1f);
94 pc->progressive_sequence = buf[1] & (1 << 3);
97 chroma_format = (buf[1] >> 1) & 3;
98 switch (chroma_format) {
104 pc->width = (
pc->width & 0xFFF) | (horiz_size_ext << 12);
105 pc->height = (
pc->height& 0xFFF) | ( vert_size_ext << 12);
106 bit_rate = (bit_rate&0x3FFFF) | (bit_rate_ext << 18);
109 avctx->
framerate.
num =
pc->frame_rate.num * (frame_rate_ext_n + 1);
110 avctx->
framerate.
den =
pc->frame_rate.den * (frame_rate_ext_d + 1);
116 if (bytes_left >= 5) {
117 top_field_first = buf[3] & (1 << 7);
118 repeat_first_field = buf[3] & (1 << 1);
119 progressive_frame = buf[4] & (1 << 7);
123 if (repeat_first_field) {
124 if (
pc->progressive_sequence) {
129 }
else if (progressive_frame) {
134 if (!
pc->progressive_sequence && !progressive_frame) {
171 s->width =
pc->width;
172 s->height =
pc->height;
177 #if FF_API_AVCTX_TIMEBASE
185 const uint8_t **poutbuf,
int *poutbuf_size,
186 const uint8_t *buf,
int buf_size)
208 ff_dlog(
NULL,
"pict_type=%d frame_rate=%0.3f repeat_pict=%d\n",
212 *poutbuf_size = buf_size;
217 const uint8_t *buf,
int buf_size)
223 for(
i=0;
i<buf_size;
i++){
227 }
else if(found &&
state != 0x1B5 && state < 0x200 && state >= 0x100)
AVPixelFormat
Pixel format.
static int mpegvideo_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
void ff_parse_close(AVCodecParserContext *s)
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
#define SLICE_MAX_START_CODE
#define PICTURE_START_CODE
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int has_b_frames
Size of the frame reordering buffer in the decoder.
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
static double av_q2d(AVRational a)
Convert an AVRational to a double.
static int mpegvideo_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
static enum AVPixelFormat pix_fmt
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
int64_t rc_max_rate
maximum bitrate
AVCodecParser ff_mpegvideo_parser
Rational number (pair of numerator and denominator).
int64_t bit_rate
the average bitrate
int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
Find the end of the current frame in the bitstream.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
static void mpegvideo_extract_headers(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t *buf, int buf_size)
#define SLICE_MIN_START_CODE
@ AV_PICTURE_TYPE_NONE
Undefined.
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
#define PARSER_FLAG_COMPLETE_FRAMES
#define i(width, name, range_min, range_max)
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
const AVRational ff_mpeg12_frame_rate_tab[]
main external API structure.
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
int coded_width
Bitstream width / height, may be different from width/height e.g.
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
static int mpegvideo_parse_init(AVCodecParserContext *s)
int width
picture width / height.
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding