# HG changeset patch # User romansh # Date 1223395635 0 # Node ID 0eeb93cedecb1acf755843170294db19179ecf3a # Parent 8b39df76fe9a2b4643d8e66519bda526ec9b55c4 cosmetic updates as per Michael's suggestion diff -r 8b39df76fe9a -r 0eeb93cedecb dvdata.h --- a/dvdata.h Tue Oct 07 16:06:18 2008 +0000 +++ b/dvdata.h Tue Oct 07 16:07:15 2008 +0000 @@ -6403,13 +6403,13 @@ return NULL; } -static inline const DVprofile* dv_codec_profile(AVCodecContext* codec) +static const DVprofile* dv_codec_profile(AVCodecContext* codec) { int i; for (i=0; iheight == dv_profiles[i].height && codec->pix_fmt == dv_profiles[i].pix_fmt && - codec->width == dv_profiles[i].width) + codec->width == dv_profiles[i].width) return &dv_profiles[i]; return NULL;