summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-20 13:18:41 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-20 13:18:41 +0000
commit1ef5d894925b111b228e4341722014e3a48ce623 (patch)
tree33ce37089550e40797d4f3dcefc3889183346731 /libmpdemux
parent70ccd1c7d1152c74c443971103751225c7f96cd0 (diff)
downloadmpv-1ef5d894925b111b228e4341722014e3a48ce623.tar.bz2
mpv-1ef5d894925b111b228e4341722014e3a48ce623.tar.xz
Russian frequencies by Alexander S. Belov <asbel@sice.ru>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8501 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/frequencies.c104
1 files changed, 104 insertions, 0 deletions
diff --git a/libmpdemux/frequencies.c b/libmpdemux/frequencies.c
index 9f31f9f22c..711348af8b 100644
--- a/libmpdemux/frequencies.c
+++ b/libmpdemux/frequencies.c
@@ -1041,6 +1041,109 @@ static struct CHANLIST argentina[] = {
/* --------------------------------------------------------------------- */
+static struct CHANLIST russia[] = {
+ {"1", 49750 },
+ {"2", 59250 },
+ {"3", 77250 },
+ {"4", 85250 },
+ {"5", 93250 },
+ {"SK1", 111250 },
+ {"SK2", 119250 },
+ {"SK3", 127250 },
+ {"SK4", 135250 },
+ {"SK5", 143250 },
+ {"SK6", 151250 },
+ {"SK7", 159250 },
+ {"SK8", 167250 },
+ {"6", 175250 },
+ {"7", 183250 },
+ {"8", 191250 },
+ {"9", 199250 },
+ {"10", 207250 },
+ {"11", 215250 },
+ {"12", 223250 },
+ {"SK11", 231250 },
+ {"SK12", 239250 },
+ {"SK13", 247250 },
+ {"SK14", 255250 },
+ {"SK15", 263250 },
+ {"SK16", 271250 },
+ {"SK17", 279250 },
+ {"SK18", 287250 },
+ {"S19", 295250 },
+ {"S20", 303250 },
+ {"S21", 311250 },
+ {"S22", 319250 },
+ {"S23", 327250 },
+ {"S24", 335250 },
+ {"S25", 343250 },
+ {"S26", 351250 },
+ {"S27", 359250 },
+ {"S28", 367250 },
+ {"S29", 375250 },
+ {"S30", 383250 },
+ {"S31", 391250 },
+ {"S32", 399250 },
+ {"S33", 407250 },
+ {"S34", 415250 },
+ {"S35", 423250 },
+ {"S36", 431250 },
+ {"S37", 439250 },
+ {"S38", 447250 },
+ {"S39", 455250 },
+ {"S40", 463250 },
+ {"21", 471250 },
+ {"22", 479250 },
+ {"23", 487250 },
+ {"24", 495250 },
+ {"25", 503250 },
+ {"26", 511250 },
+ {"27", 519250 },
+ {"28", 527250 },
+ {"29", 535250 },
+ {"30", 543250 },
+ {"31", 551250 },
+ {"32", 559250 },
+ {"33", 567250 },
+ {"34", 575250 },
+ {"35", 583250 },
+ {"36", 591250 },
+ {"37", 599250 },
+ {"38", 607250 },
+ {"39", 615250 },
+ {"40", 623250 },
+ {"41", 631250 },
+ {"42", 639250 },
+ {"43", 647250 },
+ {"44", 655250 },
+ {"45", 663250 },
+ {"46", 671250 },
+ {"47", 679250 },
+ {"48", 687250 },
+ {"49", 695250 },
+ {"50", 703250 },
+ {"51", 711250 },
+ {"52", 719250 },
+ {"53", 727250 },
+ {"54", 735250 },
+ {"55", 743250 },
+ {"56", 751250 },
+ {"57", 759250 },
+ {"58", 767250 },
+ {"59", 775250 },
+ {"60", 783250 },
+ {"61", 791250 },
+ {"62", 799250 },
+ {"63", 807250 },
+ {"64", 815250 },
+ {"65", 523250 },
+ {"66", 831250 },
+ {"67", 839250 },
+ {"68", 847250 },
+ {"69", 855250 },
+};
+/* --------------------------------------------------------------------- */
+
struct CHANLISTS chanlists[] = {
{ "us-bcast", ntsc_bcast, CHAN_COUNT(ntsc_bcast) },
{ "us-cable", ntsc_cable, CHAN_COUNT(ntsc_cable) },
@@ -1057,6 +1160,7 @@ struct CHANLISTS chanlists[] = {
{ "china-bcast", pal_bcast_cn, CHAN_COUNT(pal_bcast_cn) },
{ "southafrica", pal_bcast_za, CHAN_COUNT(pal_bcast_za) },
{ "argentina", argentina, CHAN_COUNT(argentina) },
+ { "russia", russia, CHAN_COUNT(russia) },
{ NULL, NULL, 0 } /* EOF */
};