You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec: Add picture structure information to AVCodecParserContext.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
committed by
Anton Khirnov
parent
fd06291239
commit
b493847df4
@@ -13,6 +13,9 @@ libavutil: 2012-10-22
|
|||||||
|
|
||||||
API changes, most recent first:
|
API changes, most recent first:
|
||||||
|
|
||||||
|
2013-05-xx - xxxxxxx - lavc 55.7.0 - avcodec.h
|
||||||
|
Add picture_structure to AVCodecParserContext.
|
||||||
|
|
||||||
2013-05-xx - xxxxxxx - lavu 52.11.0 - pixdesc.h
|
2013-05-xx - xxxxxxx - lavu 52.11.0 - pixdesc.h
|
||||||
Replace PIX_FMT_* flags with AV_PIX_FMT_FLAG_*.
|
Replace PIX_FMT_* flags with AV_PIX_FMT_FLAG_*.
|
||||||
|
|
||||||
|
@@ -3407,6 +3407,13 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
|
|||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
enum AVPictureStructure {
|
||||||
|
AV_PICTURE_STRUCTURE_UNKNOWN, //< unknown
|
||||||
|
AV_PICTURE_STRUCTURE_TOP_FIELD, //< coded as top field
|
||||||
|
AV_PICTURE_STRUCTURE_BOTTOM_FIELD, //< coded as bottom field
|
||||||
|
AV_PICTURE_STRUCTURE_FRAME, //< coded as frame
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct AVCodecParserContext {
|
typedef struct AVCodecParserContext {
|
||||||
void *priv_data;
|
void *priv_data;
|
||||||
struct AVCodecParser *parser;
|
struct AVCodecParser *parser;
|
||||||
@@ -3542,6 +3549,16 @@ typedef struct AVCodecParserContext {
|
|||||||
int duration;
|
int duration;
|
||||||
|
|
||||||
enum AVFieldOrder field_order;
|
enum AVFieldOrder field_order;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate whether a picture is coded as a frame, top field or bottom field.
|
||||||
|
*
|
||||||
|
* For example, H.264 field_pic_flag equal to 0 corresponds to
|
||||||
|
* AV_PICTURE_STRUCTURE_FRAME. An H.264 picture with field_pic_flag
|
||||||
|
* equal to 1 and bottom_field_flag equal to 0 corresponds to
|
||||||
|
* AV_PICTURE_STRUCTURE_TOP_FIELD.
|
||||||
|
*/
|
||||||
|
enum AVPictureStructure picture_structure;
|
||||||
} AVCodecParserContext;
|
} AVCodecParserContext;
|
||||||
|
|
||||||
typedef struct AVCodecParser {
|
typedef struct AVCodecParser {
|
||||||
|
@@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_MAJOR 55
|
#define LIBAVCODEC_VERSION_MAJOR 55
|
||||||
#define LIBAVCODEC_VERSION_MINOR 6
|
#define LIBAVCODEC_VERSION_MINOR 7
|
||||||
#define LIBAVCODEC_VERSION_MICRO 0
|
#define LIBAVCODEC_VERSION_MICRO 0
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||||
|
Reference in New Issue
Block a user