From: Carl Eugen Hoyos Date: Thu, 10 Jul 2014 06:26:59 +0000 (+0200) Subject: Fix compilation with --disable-everything. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a1e3ea475ac3cffa4672877f0cc8c8d48aa99963;p=ffmpeg Fix compilation with --disable-everything. --- diff --git a/libavcodec/dv_profile.c b/libavcodec/dv_profile.c index 25c2f550ff3..58ce79f269f 100644 --- a/libavcodec/dv_profile.c +++ b/libavcodec/dv_profile.c @@ -297,11 +297,11 @@ const AVDVProfile* avpriv_dv_frame_profile2(AVCodecContext* codec, const AVDVPro /* check if old sys matches and assumes corrupted input */ if (sys && buf_size == sys->frame_size) return sys; -#endif /* hack for trac issue #217, dv files created with QuickTime 3 */ if ((frame[3] & 0x7f) == 0x3f && frame[80 * 5 + 48 + 3] == 0xff) return &dv_profiles[dsf]; +#endif return NULL; }