Mercurial > libavcodec.hg
changeset 8013:0eeb93cedecb libavcodec
cosmetic updates as per Michael's suggestion
author | romansh |
---|---|
date | Tue, 07 Oct 2008 16:07:15 +0000 |
parents | 8b39df76fe9a |
children | 07d8986fbea7 |
files | dvdata.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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; i<sizeof(dv_profiles)/sizeof(DVprofile); i++) if (codec->height == 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;