Browse Source

Fix compilation with --disable-everything.

tags/n2.3
Carl Eugen Hoyos 11 years ago
parent
commit
a1e3ea475a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dv_profile.c

+ 1
- 1
libavcodec/dv_profile.c View File

@@ -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;
}


Loading…
Cancel
Save