Commit 6841c8c5 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote branch 'qatar/master'

* qatar/master:
  log: Fix an oob array read.
  cosmetics: trim trailing whitespace in postproc
  Ban strncpy() it's too easy to misuse.
  psymodel: Remove wrapper functions.
  aacenc: Replace loop counters in aac_encode_frame() with more descriptive 'ch' and 'w'.
  regtest: remove redundant flags in jpg test
  regtest: use run_ffmpeg in do_image_formats
  regtest: simplify encoding functions
  ffmpeg.c: check for interlaced flag in the correct place.
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 25308afb 847aaec6
...@@ -1267,7 +1267,7 @@ static void do_video_out(AVFormatContext *s, ...@@ -1267,7 +1267,7 @@ static void do_video_out(AVFormatContext *s,
/* better than nothing: use input picture interlaced /* better than nothing: use input picture interlaced
settings */ settings */
big_picture.interlaced_frame = in_picture->interlaced_frame; big_picture.interlaced_frame = in_picture->interlaced_frame;
if(avcodec_opts[AVMEDIA_TYPE_VIDEO]->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)){ if (ost->st->codec->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME)) {
if(top_field_first == -1) if(top_field_first == -1)
big_picture.top_field_first = in_picture->top_field_first; big_picture.top_field_first = in_picture->top_field_first;
else else
......
...@@ -489,7 +489,7 @@ static int aac_encode_frame(AVCodecContext *avctx, ...@@ -489,7 +489,7 @@ static int aac_encode_frame(AVCodecContext *avctx,
AACEncContext *s = avctx->priv_data; AACEncContext *s = avctx->priv_data;
int16_t *samples = s->samples, *samples2, *la; int16_t *samples = s->samples, *samples2, *la;
ChannelElement *cpe; ChannelElement *cpe;
int i, j, chans, tag, start_ch; int i, ch, w, chans, tag, start_ch;
const uint8_t *chan_map = aac_chan_configs[avctx->channels-1]; const uint8_t *chan_map = aac_chan_configs[avctx->channels-1];
int chan_el_counter[4]; int chan_el_counter[4];
FFPsyWindowInfo windows[AAC_MAX_CHANNELS]; FFPsyWindowInfo windows[AAC_MAX_CHANNELS];
...@@ -524,34 +524,33 @@ static int aac_encode_frame(AVCodecContext *avctx, ...@@ -524,34 +524,33 @@ static int aac_encode_frame(AVCodecContext *avctx,
tag = chan_map[i+1]; tag = chan_map[i+1];
chans = tag == TYPE_CPE ? 2 : 1; chans = tag == TYPE_CPE ? 2 : 1;
cpe = &s->cpe[i]; cpe = &s->cpe[i];
for (j = 0; j < chans; j++) { for (ch = 0; ch < chans; ch++) {
IndividualChannelStream *ics = &cpe->ch[j].ics; IndividualChannelStream *ics = &cpe->ch[ch].ics;
int k; int cur_channel = start_ch + ch;
int cur_channel = start_ch + j;
samples2 = samples + cur_channel; samples2 = samples + cur_channel;
la = samples2 + (448+64) * avctx->channels; la = samples2 + (448+64) * avctx->channels;
if (!data) if (!data)
la = NULL; la = NULL;
if (tag == TYPE_LFE) { if (tag == TYPE_LFE) {
wi[j].window_type[0] = ONLY_LONG_SEQUENCE; wi[ch].window_type[0] = ONLY_LONG_SEQUENCE;
wi[j].window_shape = 0; wi[ch].window_shape = 0;
wi[j].num_windows = 1; wi[ch].num_windows = 1;
wi[j].grouping[0] = 1; wi[ch].grouping[0] = 1;
} else { } else {
wi[j] = ff_psy_suggest_window(&s->psy, samples2, la, cur_channel, wi[ch] = s->psy.model->window(&s->psy, samples2, la, cur_channel,
ics->window_sequence[0]); ics->window_sequence[0]);
} }
ics->window_sequence[1] = ics->window_sequence[0]; ics->window_sequence[1] = ics->window_sequence[0];
ics->window_sequence[0] = wi[j].window_type[0]; ics->window_sequence[0] = wi[ch].window_type[0];
ics->use_kb_window[1] = ics->use_kb_window[0]; ics->use_kb_window[1] = ics->use_kb_window[0];
ics->use_kb_window[0] = wi[j].window_shape; ics->use_kb_window[0] = wi[ch].window_shape;
ics->num_windows = wi[j].num_windows; ics->num_windows = wi[ch].num_windows;
ics->swb_sizes = s->psy.bands [ics->num_windows == 8]; ics->swb_sizes = s->psy.bands [ics->num_windows == 8];
ics->num_swb = tag == TYPE_LFE ? 12 : s->psy.num_bands[ics->num_windows == 8]; ics->num_swb = tag == TYPE_LFE ? 12 : s->psy.num_bands[ics->num_windows == 8];
for (k = 0; k < ics->num_windows; k++) for (w = 0; w < ics->num_windows; w++)
ics->group_len[k] = wi[j].grouping[k]; ics->group_len[w] = wi[ch].grouping[w];
apply_window_and_mdct(avctx, s, &cpe->ch[j], samples2); apply_window_and_mdct(avctx, s, &cpe->ch[ch], samples2);
} }
start_ch += chans; start_ch += chans;
} }
...@@ -569,10 +568,10 @@ static int aac_encode_frame(AVCodecContext *avctx, ...@@ -569,10 +568,10 @@ static int aac_encode_frame(AVCodecContext *avctx,
cpe = &s->cpe[i]; cpe = &s->cpe[i];
put_bits(&s->pb, 3, tag); put_bits(&s->pb, 3, tag);
put_bits(&s->pb, 4, chan_el_counter[tag]++); put_bits(&s->pb, 4, chan_el_counter[tag]++);
for (j = 0; j < chans; j++) { for (ch = 0; ch < chans; ch++) {
s->cur_channel = start_ch + j; s->cur_channel = start_ch + ch;
ff_psy_set_band_info(&s->psy, s->cur_channel, cpe->ch[j].coeffs, &wi[j]); s->psy.model->analyze(&s->psy, s->cur_channel, cpe->ch[ch].coeffs, &wi[ch]);
s->coder->search_for_quantizers(avctx, s, &cpe->ch[j], s->lambda); s->coder->search_for_quantizers(avctx, s, &cpe->ch[ch], s->lambda);
} }
cpe->common_window = 0; cpe->common_window = 0;
if (chans > 1 if (chans > 1
...@@ -580,8 +579,8 @@ static int aac_encode_frame(AVCodecContext *avctx, ...@@ -580,8 +579,8 @@ static int aac_encode_frame(AVCodecContext *avctx,
&& wi[0].window_shape == wi[1].window_shape) { && wi[0].window_shape == wi[1].window_shape) {
cpe->common_window = 1; cpe->common_window = 1;
for (j = 0; j < wi[0].num_windows; j++) { for (w = 0; w < wi[0].num_windows; w++) {
if (wi[0].grouping[j] != wi[1].grouping[j]) { if (wi[0].grouping[w] != wi[1].grouping[w]) {
cpe->common_window = 0; cpe->common_window = 0;
break; break;
} }
...@@ -598,9 +597,9 @@ static int aac_encode_frame(AVCodecContext *avctx, ...@@ -598,9 +597,9 @@ static int aac_encode_frame(AVCodecContext *avctx,
encode_ms_info(&s->pb, cpe); encode_ms_info(&s->pb, cpe);
} }
} }
for (j = 0; j < chans; j++) { for (ch = 0; ch < chans; ch++) {
s->cur_channel = start_ch + j; s->cur_channel = start_ch + ch;
encode_individual_channel(avctx, s, &cpe->ch[j], cpe->common_window); encode_individual_channel(avctx, s, &cpe->ch[ch], cpe->common_window);
} }
start_ch += chans; start_ch += chans;
} }
......
...@@ -45,19 +45,6 @@ av_cold int ff_psy_init(FFPsyContext *ctx, AVCodecContext *avctx, ...@@ -45,19 +45,6 @@ av_cold int ff_psy_init(FFPsyContext *ctx, AVCodecContext *avctx,
return 0; return 0;
} }
FFPsyWindowInfo ff_psy_suggest_window(FFPsyContext *ctx,
const int16_t *audio, const int16_t *la,
int channel, int prev_type)
{
return ctx->model->window(ctx, audio, la, channel, prev_type);
}
void ff_psy_set_band_info(FFPsyContext *ctx, int channel,
const float *coeffs, const FFPsyWindowInfo *wi)
{
ctx->model->analyze(ctx, channel, coeffs, wi);
}
av_cold void ff_psy_end(FFPsyContext *ctx) av_cold void ff_psy_end(FFPsyContext *ctx)
{ {
if (ctx->model->end) if (ctx->model->end)
......
...@@ -80,8 +80,30 @@ typedef struct FFPsyContext { ...@@ -80,8 +80,30 @@ typedef struct FFPsyContext {
typedef struct FFPsyModel { typedef struct FFPsyModel {
const char *name; const char *name;
int (*init) (FFPsyContext *apc); int (*init) (FFPsyContext *apc);
/**
* Suggest window sequence for channel.
*
* @param ctx model context
* @param audio samples for the current frame
* @param la lookahead samples (NULL when unavailable)
* @param channel number of channel element to analyze
* @param prev_type previous window type
*
* @return suggested window information in a structure
*/
FFPsyWindowInfo (*window)(FFPsyContext *ctx, const int16_t *audio, const int16_t *la, int channel, int prev_type); FFPsyWindowInfo (*window)(FFPsyContext *ctx, const int16_t *audio, const int16_t *la, int channel, int prev_type);
/**
* Perform psychoacoustic analysis and set band info (threshold, energy).
*
* @param ctx model context
* @param channel audio channel number
* @param coeffs pointer to the transformed coefficients
* @param wi window information
*/
void (*analyze)(FFPsyContext *ctx, int channel, const float *coeffs, const FFPsyWindowInfo *wi); void (*analyze)(FFPsyContext *ctx, int channel, const float *coeffs, const FFPsyWindowInfo *wi);
void (*end) (FFPsyContext *apc); void (*end) (FFPsyContext *apc);
} FFPsyModel; } FFPsyModel;
...@@ -100,33 +122,6 @@ av_cold int ff_psy_init(FFPsyContext *ctx, AVCodecContext *avctx, ...@@ -100,33 +122,6 @@ av_cold int ff_psy_init(FFPsyContext *ctx, AVCodecContext *avctx,
int num_lens, int num_lens,
const uint8_t **bands, const int* num_bands); const uint8_t **bands, const int* num_bands);
/**
* Suggest window sequence for channel.
*
* @param ctx model context
* @param audio samples for the current frame
* @param la lookahead samples (NULL when unavailable)
* @param channel number of channel element to analyze
* @param prev_type previous window type
*
* @return suggested window information in a structure
*/
FFPsyWindowInfo ff_psy_suggest_window(FFPsyContext *ctx,
const int16_t *audio, const int16_t *la,
int channel, int prev_type);
/**
* Perform psychoacoustic analysis and set band info (threshold, energy).
*
* @param ctx model context
* @param channel audio channel number
* @param coeffs pointer to the transformed coefficients
* @param wi window information
*/
void ff_psy_set_band_info(FFPsyContext *ctx, int channel, const float *coeffs,
const FFPsyWindowInfo *wi);
/** /**
* Cleanup model context at the end. * Cleanup model context at the end.
* *
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#undef rand #undef rand
#undef srand #undef srand
#undef printf #undef printf
#undef strncpy
#define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\n\t" #define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\n\t"
......
...@@ -137,6 +137,8 @@ ...@@ -137,6 +137,8 @@
#define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
#undef strcat #undef strcat
#define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
#undef strncpy
#define strncpy strncpy_is_forbidden_due_to_security_issues_use_av_strlcpy
#undef exit #undef exit
#define exit exit_is_forbidden #define exit exit_is_forbidden
#ifndef LIBAVFORMAT_BUILD #ifndef LIBAVFORMAT_BUILD
......
...@@ -111,7 +111,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) ...@@ -111,7 +111,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl); vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
print_prefix= line[strlen(line)-1] == '\n'; print_prefix = strlen(line) && line[strlen(line)-1] == '\n';
#if HAVE_ISATTY #if HAVE_ISATTY
if(!is_atty) is_atty= isatty(2) ? 1 : -1; if(!is_atty) is_atty= isatty(2) ? 1 : -1;
......
...@@ -1104,4 +1104,3 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3], ...@@ -1104,4 +1104,3 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
} }
} }
} }
This diff is collapsed.
...@@ -30,8 +30,7 @@ do_image_formats() ...@@ -30,8 +30,7 @@ do_image_formats()
outfile="$datadir/images/$1/" outfile="$datadir/images/$1/"
mkdir -p "$outfile" mkdir -p "$outfile"
file=${outfile}%02d.$1 file=${outfile}%02d.$1
$echov $ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file run_ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file
$ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file
do_md5sum ${outfile}02.$1 >> $logfile do_md5sum ${outfile}02.$1 >> $logfile
do_ffmpeg_crc $file $3 -i $target_path/$file do_ffmpeg_crc $file $3 -i $target_path/$file
wc -c ${outfile}02.$1 >> $logfile wc -c ${outfile}02.$1 >> $logfile
...@@ -169,7 +168,7 @@ do_image_formats sgi ...@@ -169,7 +168,7 @@ do_image_formats sgi
fi fi
if [ -n "$do_jpg" ] ; then if [ -n "$do_jpg" ] ; then
do_image_formats jpg "-flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p" "-f image2" do_image_formats jpg "-pix_fmt yuvj420p" "-f image2"
fi fi
if [ -n "$do_pcx" ] ; then if [ -n "$do_pcx" ] ; then
......
...@@ -121,13 +121,13 @@ do_video_decoding() ...@@ -121,13 +121,13 @@ do_video_decoding()
do_video_encoding() do_video_encoding()
{ {
file=${outfile}$1 file=${outfile}$1
do_ffmpeg $file $2 -f image2 -vcodec pgmyuv -i $raw_src $3 do_ffmpeg $file -f image2 -vcodec pgmyuv -i $raw_src $2
} }
do_audio_encoding() do_audio_encoding()
{ {
file=${outfile}$1 file=${outfile}$1
do_ffmpeg $file -ab 128k -ac 2 -f s16le -i $pcm_src $3 do_ffmpeg $file -ab 128k -ac 2 -f s16le -i $pcm_src $2
} }
do_audio_decoding() do_audio_decoding()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment