lavf: add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/54/head
wm4 11 years ago committed by Michael Niedermayer
parent fde2afd9fb
commit 1a193c438c
  1. 3
      doc/APIchanges
  2. 8
      libavformat/avformat.h
  3. 9
      libavformat/isom.c
  4. 2
      libavformat/version.h

@ -15,6 +15,9 @@ libavutil: 2012-10-22
API changes, most recent first: API changes, most recent first:
2014-01-19 - xxxxxxx - lavf 55.25.100 - avformat.h
Add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags().
2014-01-19 - xxxxxxx - lavu 52.63.100 - rational.h 2014-01-19 - xxxxxxx - lavu 52.63.100 - rational.h
Add av_make_q() function. Add av_make_q() function.

@ -2188,6 +2188,14 @@ const struct AVCodecTag *avformat_get_riff_video_tags(void);
* @return the table mapping RIFF FourCCs for audio to AVCodecID. * @return the table mapping RIFF FourCCs for audio to AVCodecID.
*/ */
const struct AVCodecTag *avformat_get_riff_audio_tags(void); const struct AVCodecTag *avformat_get_riff_audio_tags(void);
/**
* @return the table mapping MOV FourCCs for video to libavcodec AVCodecID.
*/
const struct AVCodecTag *avformat_get_mov_video_tags(void);
/**
* @return the table mapping MOV FourCCs for audio to AVCodecID.
*/
const struct AVCodecTag *avformat_get_mov_audio_tags(void);
/** /**
* @} * @}

@ -574,3 +574,12 @@ void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout)
avio_wb32(pb, 0); // mNumberChannelDescriptions avio_wb32(pb, 0); // mNumberChannelDescriptions
} }
const struct AVCodecTag *avformat_get_mov_video_tags(void)
{
return ff_codec_movvideo_tags;
}
const struct AVCodecTag *avformat_get_mov_audio_tags(void)
{
return ff_codec_movaudio_tags;
}

@ -30,7 +30,7 @@
#include "libavutil/version.h" #include "libavutil/version.h"
#define LIBAVFORMAT_VERSION_MAJOR 55 #define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 24 #define LIBAVFORMAT_VERSION_MINOR 25
#define LIBAVFORMAT_VERSION_MICRO 100 #define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \

Loading…
Cancel
Save