Go to the documentation of this file.
34 #if !FF_API_FLAG_TRUNCATED
39 static int mpeg1_find_frame_end(
ParseContext *pc,
const uint8_t *buf,
57 for (
i = 0;
i < buf_size;
i++) {
63 if ((buf[
i] & 3) == 3)
103 const uint8_t *buf,
int buf_size)
106 const uint8_t *buf_end = buf + buf_size;
108 int frame_rate_index, ext_type, bytes_left;
109 int frame_rate_ext_n, frame_rate_ext_d;
110 int top_field_first, repeat_first_field, progressive_frame;
111 int horiz_size_ext, vert_size_ext, bit_rate_ext;
121 while (buf < buf_end) {
124 bytes_left = buf_end - buf;
127 if (bytes_left >= 2) {
128 s->pict_type = (buf[1] >> 3) & 7;
130 vbv_delay = ((buf[1] & 0x07) << 13) | (buf[2] << 5) | (buf[3] >> 3);
134 if (bytes_left >= 7) {
135 pc->width = (buf[0] << 4) | (buf[1] >> 4);
136 pc->height = ((buf[1] & 0x0f) << 8) | buf[2];
142 frame_rate_index = buf[3] & 0xf;
144 bit_rate = (buf[4]<<10) | (buf[5]<<2) | (buf[6]>>6);
150 if (bytes_left >= 1) {
151 ext_type = (buf[0] >> 4);
154 if (bytes_left >= 6) {
155 horiz_size_ext = ((buf[1] & 1) << 1) | (buf[2] >> 7);
156 vert_size_ext = (buf[2] >> 5) & 3;
157 bit_rate_ext = ((buf[2] & 0x1F)<<7) | (buf[3]>>1);
158 frame_rate_ext_n = (buf[5] >> 5) & 3;
159 frame_rate_ext_d = (buf[5] & 0x1f);
160 pc->progressive_sequence = buf[1] & (1 << 3);
163 chroma_format = (buf[1] >> 1) & 3;
164 switch (chroma_format) {
170 pc->width = (
pc->width & 0xFFF) | (horiz_size_ext << 12);
171 pc->height = (
pc->height& 0xFFF) | ( vert_size_ext << 12);
172 bit_rate = (bit_rate&0x3FFFF) | (bit_rate_ext << 18);
175 avctx->
framerate.
num =
pc->frame_rate.num * (frame_rate_ext_n + 1);
176 avctx->
framerate.
den =
pc->frame_rate.den * (frame_rate_ext_d + 1);
182 if (bytes_left >= 5) {
183 top_field_first = buf[3] & (1 << 7);
184 repeat_first_field = buf[3] & (1 << 1);
185 progressive_frame = buf[4] & (1 << 7);
189 if (repeat_first_field) {
190 if (
pc->progressive_sequence) {
195 }
else if (progressive_frame) {
200 if (!
pc->progressive_sequence && !progressive_frame) {
237 s->width =
pc->width;
238 s->height =
pc->height;
243 #if FF_API_AVCTX_TIMEBASE
251 const uint8_t **poutbuf,
int *poutbuf_size,
252 const uint8_t *buf,
int buf_size)
261 #if FF_API_FLAG_TRUNCATED
264 next = mpeg1_find_frame_end(
pc, buf, buf_size,
s);
278 ff_dlog(
NULL,
"pict_type=%d frame_rate=%0.3f repeat_pict=%d\n",
282 *poutbuf_size = buf_size;
AVPixelFormat
Pixel format.
#define SLICE_MAX_START_CODE
void ff_parse_close(AVCodecParserContext *s)
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
uint32_t state
contains the last few bytes in MSB order
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove, int fuzzy)
Fetch timestamps for a specific byte within the current access unit.
#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.
const AVCodecParser ff_mpegvideo_parser
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
#define SLICE_MIN_START_CODE
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 PICTURE_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)
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
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