summaryrefslogtreecommitdiffstats
path: root/libavcodec/dvdata.h
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2008-10-07 16:07:15 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2008-10-07 16:07:15 +0000
commit45580f8d4d90782e684792f252fe10a705703546 (patch)
tree73e5f835f03618b49955835ce7f305680ff845c2 /libavcodec/dvdata.h
parent90d30402b41a557e726fbb79f0fc7d6fac237eee (diff)
downloadffmpeg-streaming-45580f8d4d90782e684792f252fe10a705703546.zip
ffmpeg-streaming-45580f8d4d90782e684792f252fe10a705703546.tar.gz
cosmetic updates as per Michael's suggestion
Originally committed as revision 15582 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dvdata.h')
-rw-r--r--libavcodec/dvdata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h
index e94e7b8..331d4b5 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; 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;
OpenPOWER on IntegriCloud