summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2014-07-30 22:09:44 +0000
committerjstebbins <[email protected]>2014-07-30 22:09:44 +0000
commit0e0c317a9327eb166089a9d68c435e698cfe2cd4 (patch)
tree509b8c26f18ca362c4ae4e33be505bd84e149e88 /libhb
parent870e2d7a5562d74e2b2419f9f25eb7649f095131 (diff)
fix comment in isIframe()
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6248 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c
index df19423f9..5ebdc3639 100644
--- a/libhb/stream.c
+++ b/libhb/stream.c
@@ -1359,7 +1359,7 @@ static int isIframe( hb_stream_t *stream, const uint8_t *buf, int len )
}
if ( pes->stream_type == 0x10 || pes->codec_param == AV_CODEC_ID_MPEG4 )
{
- // we have an vc1 stream
+ // we have an mpeg4 stream
for (ii = 0; ii < len-1; ii++)
{
strid = (strid << 8) | buf[ii];