summaryrefslogtreecommitdiff
path: root/libavformat/avisynth.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-02-23 08:20:12 +0100
committerAnton Khirnov <anton@khirnov.net>2013-03-11 18:23:50 +0100
commit85a5bc054c1290699ccbf5799ba6c4e2fbcc3530 (patch)
tree63f34e340221524d630668a3040b874a01e40212 /libavformat/avisynth.c
parent7b486ab13bfcfa88a7cd92586de50e49966ec292 (diff)
lavf: remove disabled FF_API_R_FRAME_RATE cruft
Diffstat (limited to 'libavformat/avisynth.c')
-rw-r--r--libavformat/avisynth.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
index eb5e7adffd..43b3da5bc7 100644
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -122,9 +122,6 @@ static int avisynth_read_header(AVFormatContext *s)
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->avg_frame_rate.num = stream->info.dwRate;
st->avg_frame_rate.den = stream->info.dwScale;
-#if FF_API_R_FRAME_RATE
- st->r_frame_rate = st->avg_frame_rate;
-#endif
st->codec->width = imgfmt.bmiHeader.biWidth;
st->codec->height = imgfmt.bmiHeader.biHeight;