summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-04-01 17:30:45 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-04-01 17:38:29 +0200
commite7c7b0d000e81d24327602e04d8fed400dbb7193 (patch)
treebb20f8be50f70bdec1c68b8b9003c8c8399611d6
parenta0350330cdbbb39544e64f4909d86a969b4664dd (diff)
downloadffmpeg-streaming-e7c7b0d000e81d24327602e04d8fed400dbb7193.zip
ffmpeg-streaming-e7c7b0d000e81d24327602e04d8fed400dbb7193.tar.gz
Another aspect ratio fix try. This leaves the setdar addition at the end (preferred by people).
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--ffmpeg.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 4c7ba5b..2a7431c 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -149,6 +149,7 @@ static int nb_streamid_map = 0;
static int frame_width = 0;
static int frame_height = 0;
static float frame_aspect_ratio = 0;
+static int frame_aspect_ratio_override = 0;
static enum PixelFormat frame_pix_fmt = PIX_FMT_NONE;
static enum AVSampleFormat audio_sample_fmt = AV_SAMPLE_FMT_NONE;
static int max_frames[4] = {INT_MAX, INT_MAX, INT_MAX, INT_MAX};
@@ -2854,6 +2855,7 @@ static void opt_frame_aspect_ratio(const char *arg)
ffmpeg_exit(1);
}
frame_aspect_ratio = ar;
+ frame_aspect_ratio_override = 1;
}
static int opt_metadata(const char *opt, const char *arg)
@@ -3294,6 +3296,7 @@ static void opt_input_file(const char *filename)
else
frame_aspect_ratio=av_q2d(dec->sample_aspect_ratio);
frame_aspect_ratio *= (float) dec->width / dec->height;
+ frame_aspect_ratio_override = 0;
frame_pix_fmt = dec->pix_fmt;
rfps = ic->streams[i]->r_frame_rate.num;
rfps_base = ic->streams[i]->r_frame_rate.den;
@@ -3419,14 +3422,12 @@ static void new_video_stream(AVFormatContext *oc, int file_idx)
codec = avcodec_find_encoder(codec_id);
}
#if CONFIG_AVFILTER
- if(frame_aspect_ratio > 0){
- char *tmp;
+ if(frame_aspect_ratio_override){
i = vfilters ? strlen(vfilters) : 0;
- tmp= av_malloc(i+100);
- snprintf(tmp, i+100, "setdar=%f%c%s\n", frame_aspect_ratio, i?',':' ', vfilters ? vfilters : "");
- av_freep(&vfilters);
- vfilters= tmp;
+ vfilters = av_realloc(vfilters, i+100);
+ snprintf(vfilters+i, 100, "%csetdar=%f\n", i?',':' ', frame_aspect_ratio);
frame_aspect_ratio=0;
+ frame_aspect_ratio_override=0;
}
ost->avfilter= vfilters;
OpenPOWER on IntegriCloud