Merge remote-tracking branch 'qatar/master'
* qatar/master: mmf: K&R formatting cosmetics Conflicts: libavformat/mmf.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
c475a58dd6
@ -21,8 +21,8 @@
|
||||
|
||||
#include "libavutil/channel_layout.h"
|
||||
#include "avformat.h"
|
||||
#include "internal.h"
|
||||
#include "avio_internal.h"
|
||||
#include "internal.h"
|
||||
#include "pcm.h"
|
||||
#include "rawenc.h"
|
||||
#include "riff.h"
|
||||
@ -75,7 +75,8 @@ static int mmf_write_header(AVFormatContext *s)
|
||||
|
||||
rate = mmf_rate_code(s->streams[0]->codec->sample_rate);
|
||||
if (rate < 0) {
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported sample rate %d, supported are 4000, 8000, 11025, 22050 and 44100\n", s->streams[0]->codec->sample_rate);
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported sample rate %d, supported are 4000, 8000, 11025, 22050 and 44100\n",
|
||||
s->streams[0]->codec->sample_rate);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
@ -209,8 +210,10 @@ static int mmf_read_header(AVFormatContext *s)
|
||||
for (;; avio_skip(pb, size)) {
|
||||
tag = avio_rl32(pb);
|
||||
size = avio_rb32(pb);
|
||||
if(tag == MKTAG('C','N','T','I')) continue;
|
||||
if(tag == MKTAG('O','P','D','A')) continue;
|
||||
if (tag == MKTAG('C', 'N', 'T', 'I'))
|
||||
continue;
|
||||
if (tag == MKTAG('O', 'P', 'D', 'A'))
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -240,8 +243,10 @@ static int mmf_read_header(AVFormatContext *s)
|
||||
for (;; avio_skip(pb, size)) {
|
||||
tag = avio_rl32(pb);
|
||||
size = avio_rb32(pb);
|
||||
if(tag == MKTAG('A','t','s','q')) continue;
|
||||
if(tag == MKTAG('A','s','p','I')) continue;
|
||||
if (tag == MKTAG('A', 't', 's', 'q'))
|
||||
continue;
|
||||
if (tag == MKTAG('A', 's', 'p', 'I'))
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -262,7 +267,8 @@ static int mmf_read_header(AVFormatContext *s)
|
||||
st->codec->channels = (params >> 7) + 1;
|
||||
st->codec->channel_layout = params >> 7 ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO;
|
||||
st->codec->bits_per_coded_sample = 4;
|
||||
st->codec->bit_rate = st->codec->sample_rate * st->codec->bits_per_coded_sample;
|
||||
st->codec->bit_rate = st->codec->sample_rate *
|
||||
st->codec->bits_per_coded_sample;
|
||||
|
||||
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
||||
|
||||
@ -271,8 +277,7 @@ static int mmf_read_header(AVFormatContext *s)
|
||||
|
||||
#define MAX_SIZE 4096
|
||||
|
||||
static int mmf_read_packet(AVFormatContext *s,
|
||||
AVPacket *pkt)
|
||||
static int mmf_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
{
|
||||
MMFContext *mmf = s->priv_data;
|
||||
int64_t left, size;
|
||||
@ -303,6 +308,7 @@ AVInputFormat ff_mmf_demuxer = {
|
||||
.flags = AVFMT_GENERIC_INDEX,
|
||||
};
|
||||
#endif
|
||||
|
||||
#if CONFIG_MMF_MUXER
|
||||
AVOutputFormat ff_mmf_muxer = {
|
||||
.name = "mmf",
|
||||
|
Loading…
x
Reference in New Issue
Block a user