2006-09-10 14:02:42 +00:00
|
|
|
/*
|
2011-11-25 19:29:12 +00:00
|
|
|
* RIFF common functions and data
|
2006-09-10 14:02:42 +00:00
|
|
|
* copyright (c) 2000 Fabrice Bellard
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2007-01-21 01:39:17 +00:00
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2007-01-21 01:39:17 +00:00
|
|
|
* internal header for RIFF based (de)muxers
|
|
|
|
* do NOT include this in end user applications
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVFORMAT_RIFF_H
|
|
|
|
#define AVFORMAT_RIFF_H
|
2006-07-12 00:09:34 +00:00
|
|
|
|
2007-06-16 22:59:13 +00:00
|
|
|
#include "avio.h"
|
2010-05-22 16:01:32 +00:00
|
|
|
#include "internal.h"
|
2011-11-24 20:02:43 +00:00
|
|
|
#include "metadata.h"
|
|
|
|
|
|
|
|
extern const AVMetadataConv ff_riff_info_conv[];
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2011-02-20 10:04:12 +00:00
|
|
|
int64_t ff_start_tag(AVIOContext *pb, const char *tag);
|
|
|
|
void ff_end_tag(AVIOContext *pb, int64_t start);
|
2006-07-12 00:09:34 +00:00
|
|
|
|
2010-12-26 01:23:44 +00:00
|
|
|
/**
|
|
|
|
* Read BITMAPINFOHEADER structure and set AVStream codec width, height and
|
|
|
|
* bits_per_encoded_sample fields. Does not read extradata.
|
2017-02-08 11:51:37 +00:00
|
|
|
* Writes the size of the BMP file to *size.
|
2010-12-26 01:23:44 +00:00
|
|
|
* @return codec tag
|
|
|
|
*/
|
2017-02-08 11:51:37 +00:00
|
|
|
int ff_get_bmp_header(AVIOContext *pb, AVStream *st, uint32_t *size);
|
2010-12-26 01:23:44 +00:00
|
|
|
|
2020-07-08 12:02:25 +00:00
|
|
|
void ff_put_bmp_header(AVIOContext *pb, AVCodecParameters *par, int for_asf, int ignore_extradata, int rgb_frame_is_flipped);
|
2014-04-30 02:26:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell ff_put_wav_header() to use WAVEFORMATEX even for PCM codecs.
|
|
|
|
*/
|
|
|
|
#define FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX 0x00000001
|
|
|
|
|
2015-09-10 12:04:18 +00:00
|
|
|
/**
|
|
|
|
* Tell ff_put_wav_header() to write an empty channel mask.
|
|
|
|
*/
|
|
|
|
#define FF_PUT_WAV_HEADER_SKIP_CHANNELMASK 0x00000002
|
|
|
|
|
2014-04-30 02:26:05 +00:00
|
|
|
/**
|
|
|
|
* Write WAVEFORMAT header structure.
|
|
|
|
*
|
|
|
|
* @param flags a combination of FF_PUT_WAV_HEADER_* constants
|
|
|
|
*
|
|
|
|
* @return the size or -1 on error
|
|
|
|
*/
|
2016-04-10 19:58:15 +00:00
|
|
|
int ff_put_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int flags);
|
2014-04-30 02:26:05 +00:00
|
|
|
|
2012-08-05 09:11:04 +00:00
|
|
|
enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps);
|
2016-04-10 19:58:15 +00:00
|
|
|
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int size, int big_endian);
|
2006-07-12 00:09:34 +00:00
|
|
|
|
2013-02-14 19:00:30 +00:00
|
|
|
extern const AVCodecTag ff_codec_bmp_tags[]; // exposed through avformat_get_riff_video_tags()
|
2009-06-22 23:09:34 +00:00
|
|
|
extern const AVCodecTag ff_codec_wav_tags[];
|
2021-02-18 02:26:57 +00:00
|
|
|
/* The following list contains both ff_codec_bmp_tags and ff_codec_wav_tags. */
|
|
|
|
extern const AVCodecTag *const ff_riff_codec_tags_list[];
|
2021-02-18 02:43:13 +00:00
|
|
|
/* The following list contains only ff_codec_wav_tags. */
|
|
|
|
extern const AVCodecTag *const ff_wav_codec_tags_list[];
|
2006-07-12 00:09:34 +00:00
|
|
|
|
2019-08-23 23:39:33 +00:00
|
|
|
extern const AVCodecTag ff_codec_bmp_tags_unofficial[];
|
|
|
|
|
2014-05-30 05:17:28 +00:00
|
|
|
void ff_parse_specific_params(AVStream *st, int *au_rate, int *au_ssize, int *au_scale);
|
2006-07-12 00:09:34 +00:00
|
|
|
|
2011-11-24 20:02:43 +00:00
|
|
|
int ff_read_riff_info(AVFormatContext *s, int64_t size);
|
|
|
|
|
2011-11-25 19:29:12 +00:00
|
|
|
/**
|
|
|
|
* Write all recognized RIFF tags from s->metadata
|
|
|
|
*/
|
|
|
|
void ff_riff_write_info(AVFormatContext *s);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write a single RIFF info tag
|
|
|
|
*/
|
|
|
|
void ff_riff_write_info_tag(AVIOContext *pb, const char *tag, const char *str);
|
|
|
|
|
2011-04-05 10:36:46 +00:00
|
|
|
typedef uint8_t ff_asf_guid[16];
|
|
|
|
|
2013-04-20 11:36:45 +00:00
|
|
|
typedef struct AVCodecGuid {
|
|
|
|
enum AVCodecID id;
|
|
|
|
ff_asf_guid guid;
|
|
|
|
} AVCodecGuid;
|
|
|
|
|
|
|
|
extern const AVCodecGuid ff_codec_wav_guids[];
|
2011-11-24 20:02:43 +00:00
|
|
|
|
2011-04-05 10:36:55 +00:00
|
|
|
#define FF_PRI_GUID \
|
2014-12-02 10:39:06 +00:00
|
|
|
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x " \
|
|
|
|
"{%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
|
2013-04-20 11:36:45 +00:00
|
|
|
|
2011-04-05 10:36:55 +00:00
|
|
|
#define FF_ARG_GUID(g) \
|
2013-04-20 11:36:45 +00:00
|
|
|
g[0], g[1], g[2], g[3], g[4], g[5], g[6], g[7], \
|
2014-12-02 10:39:06 +00:00
|
|
|
g[8], g[9], g[10], g[11], g[12], g[13], g[14], g[15],\
|
|
|
|
g[3], g[2], g[1], g[0], g[5], g[4], g[7], g[6], \
|
2013-04-20 11:36:45 +00:00
|
|
|
g[8], g[9], g[10], g[11], g[12], g[13], g[14], g[15]
|
|
|
|
|
|
|
|
#define FF_MEDIASUBTYPE_BASE_GUID \
|
|
|
|
0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71
|
2015-09-16 12:03:13 +00:00
|
|
|
#define FF_AMBISONIC_BASE_GUID \
|
|
|
|
0x21, 0x07, 0xD3, 0x11, 0x86, 0x44, 0xC8, 0xC1, 0xCA, 0x00, 0x00, 0x00
|
2017-02-16 13:03:38 +00:00
|
|
|
#define FF_BROKEN_BASE_GUID \
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0xAA
|
2011-04-05 10:36:55 +00:00
|
|
|
|
2011-04-05 10:36:46 +00:00
|
|
|
static av_always_inline int ff_guidcmp(const void *g1, const void *g2)
|
|
|
|
{
|
|
|
|
return memcmp(g1, g2, sizeof(ff_asf_guid));
|
|
|
|
}
|
|
|
|
|
2014-02-12 14:51:38 +00:00
|
|
|
int ff_get_guid(AVIOContext *s, ff_asf_guid *g);
|
2014-01-28 23:44:59 +00:00
|
|
|
void ff_put_guid(AVIOContext *s, const ff_asf_guid *g);
|
2015-02-27 18:25:27 +00:00
|
|
|
const ff_asf_guid *ff_get_codec_guid(enum AVCodecID id, const AVCodecGuid *av_guid);
|
2011-04-05 10:36:46 +00:00
|
|
|
|
2012-08-07 21:57:21 +00:00
|
|
|
enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid);
|
2011-04-05 10:36:55 +00:00
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_RIFF_H */
|