diff options
author | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2010-08-24 15:13:22 +0530 |
---|---|---|
committer | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2010-08-25 21:11:32 +0530 |
commit | 04ec04a7811b6fd2d152775877bc325bf13a9326 (patch) | |
tree | 177c5d61734bcf6ce03524b267468477c14acdd1 /data | |
parent | 3cd17cb91e7ad54fdb5e527d7d7abfe6908c390c (diff) | |
download | gupnp-dlna-04ec04a7811b6fd2d152775877bc325bf13a9326.tar.gz |
xml: Relax MPEG1 profile restrictions
Diffstat (limited to 'data')
-rw-r--r-- | data/mpeg1.xml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/data/mpeg1.xml b/data/mpeg1.xml index 9e130ca..1ab0670 100644 --- a/data/mpeg1.xml +++ b/data/mpeg1.xml @@ -11,7 +11,7 @@ <field name="mpegversion" type="int"> <value>1</value> </field> - <field name="bitrate" type="int"> + <field name="bitrate" type="int" used="in-strict"> <!-- This isn't exactly as in the spec, but should catch more compliant streams --> <range min="1150000" max="1152000" /> @@ -48,15 +48,15 @@ <field name="channels" type="int"> <value>2</value> </field> - <field name="rate" type="int"> + <field name="rate" type="int" used="in-strict"> <value>44100</value> </field> - <field name="bitrate" type="int"> + <field name="bitrate" type="int" used="in-strict"> <value>224000</value> </field> </restriction> - <restriction type="video"> + <restriction type="video" used="in-strict"> <parent name="mpeg1" /> <parent name="CIF" /> @@ -65,7 +65,7 @@ </field> </restriction> - <restriction type="video"> + <restriction type="video" used="in-strict"> <parent name="mpeg1" /> <parent name="525SIF" /> @@ -74,7 +74,7 @@ </field> </restriction> - <restriction type="video"> + <restriction type="video" used="in-strict"> <parent name="mpeg1" /> <parent name="525SIF" /> @@ -82,5 +82,9 @@ <value>24000/1001</value> </field> </restriction> + + <restriction type="video" used="in-relaxed"> + <parent name="mpeg1" /> + </restriction> </dlna-profile> </dlna-profiles> |