diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-20 03:39:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-20 03:39:04 +0200 |
commit | 7d25af1547f8d97231f1c6e4cab7ad2bbf1dd071 (patch) | |
tree | 4e3c6acef8b008570ae2db92455799014fc5eeca | |
parent | 9e6769d2dc7bb33a2317b85fb55239958119e78c (diff) | |
parent | c23c96b638cbf6c489fd301e6b3d5555632fba37 (diff) | |
download | ffmpeg-7d25af1547f8d97231f1c6e4cab7ad2bbf1dd071.tar.gz |
Merge commit 'c23c96b638cbf6c489fd301e6b3d5555632fba37'
* commit 'c23c96b638cbf6c489fd301e6b3d5555632fba37':
lavf: add av_stream_get_side_data
Conflicts:
doc/APIchanges
libavformat/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | doc/APIchanges | 4 | ||||
-rw-r--r-- | libavformat/avformat.h | 11 | ||||
-rw-r--r-- | libavformat/utils.c | 15 | ||||
-rw-r--r-- | libavformat/version.h | 4 |
4 files changed, 32 insertions, 2 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 6999594966..323f773c96 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -15,6 +15,10 @@ libavutil: 2012-10-22 API changes, most recent first: +2014-05-19 - xxxxxxx - lavf 55.18.0 - avformat.h + Add av_stream_get_side_data() to access stream-level side data + in the same way as av_packet_get_side_data(). + 2014-05-xx - xxxxxxx - lavu 52.86.100 - fifo.h Add av_fifo_alloc_array() function. diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 09870d1d35..2677c27e4d 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1771,6 +1771,17 @@ const AVClass *avformat_get_class(void); */ AVStream *avformat_new_stream(AVFormatContext *s, const AVCodec *c); +/** + * Get side information from stream. + * + * @param stream stream + * @param type desired side information type + * @param size pointer for side information size to store (optional) + * @return pointer to data if present or NULL otherwise + */ +uint8_t *av_stream_get_side_data(AVStream *stream, + enum AVPacketSideDataType type, int *size); + AVProgram *av_new_program(AVFormatContext *s, int id); /** diff --git a/libavformat/utils.c b/libavformat/utils.c index 6454421d7d..f840bc045e 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4665,3 +4665,18 @@ int ff_generate_avci_extradata(AVStream *st) return 0; } + +uint8_t *av_stream_get_side_data(AVStream *st, enum AVPacketSideDataType type, + int *size) +{ + int i; + + for (i = 0; i < st->nb_side_data; i++) { + if (st->side_data[i].type == type) { + if (size) + *size = st->side_data[i].size; + return st->side_data[i].data; + } + } + return NULL; +} diff --git a/libavformat/version.h b/libavformat/version.h index 5bc08982c4..2d2ca9a0b7 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,8 +30,8 @@ #include "libavutil/version.h" #define LIBAVFORMAT_VERSION_MAJOR 55 -#define LIBAVFORMAT_VERSION_MINOR 38 -#define LIBAVFORMAT_VERSION_MICRO 101 +#define LIBAVFORMAT_VERSION_MINOR 39 +#define LIBAVFORMAT_VERSION_MICRO 100 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |