[datatype-dev] CR/CN: Problem while playing Sample.mov file that comes with quick time installation
Greg Wright gwright at real.comLooks good.
--greg.
Deepak Jain wrote:
> *Synopsis:* Problem while playing Sample.mov file that comes with quick
> time installation
>
> *Overview:*
> The file Sample.mov that comes with the quick time installation was not
> getting played on Atlas310. We were getting HXR_C0RRUPT_FILE as the error.
> The file contains a 'meta' atom which is a standard box(Box). However
> meta atom is a FullBox as per ISO spec.
> Until we are ready to deal with meta tag within mov files, we should
> simply skip meta tag .
>
> *Files Modified:*
> datatype/mp4/fileformat/qtffplin.cpp
>
> *Image Size and Heap Use impact (Client -Only):*
> None.
>
> *Platforms and Profiles Affected:*
> None
>
> *Distribution Libraries Affected:*
> None.
>
> *Distribution library impact and planned action:*
> None.
>
> *Platforms and Profiles Build Verified:*
> Profile: helix-client-all-defines
> Target: splay
> BIF: hxclient_3_1_0_atlas_restricted
>
> *Branch:*
> Atlas310
>
> Thanks,
> Deepak Jain
>
>
> Index: qtffplin.cpp
> ===================================================================
> RCS file: /cvsroot/datatype/mp4/fileformat/qtffplin.cpp,v
> retrieving revision 1.60.2.4
> diff -u -r1.60.2.4 qtffplin.cpp
> --- qtffplin.cpp 29 Oct 2008 16:44:40 -0000 1.60.2.4
> +++ qtffplin.cpp 31 Dec 2008 09:17:34 -0000
> @@ -1979,6 +1979,13 @@
> }
> break;
>
> + case QT_meta:
> + if (m_TrackManager.GetFType() == QT_FTYPE_UNKNOWN)
> + {
> + eCmd = ATMZR_CMD_SKIP;
> + }
> + break;
> +
> default:
> // do nothing;
> break;
>
>
> _______________________________________________
> Datatype-dev mailing list
> Datatype-dev at helixcommunity.org
> http://lists.helixcommunity.org/mailman/listinfo/datatype-dev
>