From 45580f8d4d90782e684792f252fe10a705703546 Mon Sep 17 00:00:00 2001 From: Roman Shaposhnik Date: Tue, 7 Oct 2008 16:07:15 +0000 Subject: cosmetic updates as per Michael's suggestion Originally committed as revision 15582 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dvdata.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/dvdata.h') diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index e94e7b86f4..331d4b5df2 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -6403,13 +6403,13 @@ static inline const DVprofile* dv_frame_profile(const uint8_t* frame) 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; -- cgit v1.2.3