summaryrefslogtreecommitdiffstats
path: root/TOOLS/dump_mp4.c
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2012-07-28 18:00:33 +0200
committerwm4 <wm4@mplayer2.org>2012-07-28 20:44:58 +0200
commit6dc124962527556512b6b18fbf23f9b6af9f331c (patch)
tree9677196e5bbbaf3a8ee7e11bb78eb88c765a0e90 /TOOLS/dump_mp4.c
parent7d4576cf79bc578ce7c103e4df70695346c7eec7 (diff)
downloadmpv-6dc124962527556512b6b18fbf23f9b6af9f331c.tar.bz2
mpv-6dc124962527556512b6b18fbf23f9b6af9f331c.tar.xz
TOOLS: remove useless crap
Most of the scripts in TOOLS seem entirely useless. Remove them. There were about 3 types of scripts: - apparent developer tools (like file format dumpers, benchmarks) => I doubt any mplayer developer still alive even uses these - helpers for encoding or ripping stuff => mencoder is gone, at least from this version of mplayer - helpers meant for users (launching mplayer in weird ways, etc.) => just no, it will cause you more pain than gain So no, there is nothing useful. Under the scripts not deleted, these are needed for building mplayer: file2string.py matroska.py vdpau_functions.py These might have _some_ use (but still questionable): binary_codecs.sh checktree.sh
Diffstat (limited to 'TOOLS/dump_mp4.c')
-rw-r--r--TOOLS/dump_mp4.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/TOOLS/dump_mp4.c b/TOOLS/dump_mp4.c
deleted file mode 100644
index c5b1846a36..0000000000
--- a/TOOLS/dump_mp4.c
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include <stdio.h>
-
-int main(void){
-int c;
-unsigned int head=-1;
-int pos=-3;
-
-while((c=getchar())>=0){
- head<<=8;
- if(head==0x100){
- int startcode=head|c;
- printf("%08X 1%02X ",pos,c);
- if (startcode<=0x11F) printf("Video Object Start");
- else if(startcode<=0x12F) printf("Video Object Layer Start");
- else if(startcode<=0x13F) printf("Reserved");
- else if(startcode<=0x15F) printf("FGS bp start");
- else if(startcode<=0x1AF) printf("Reserved");
- else if(startcode==0x1B0) printf("Visual Object Seq Start");
- else if(startcode==0x1B1) printf("Visual Object Seq End");
- else if(startcode==0x1B2) printf("User Data");
- else if(startcode==0x1B3) printf("Group of VOP start");
- else if(startcode==0x1B4) printf("Video Session Error");
- else if(startcode==0x1B5) printf("Visual Object Start");
- else if(startcode==0x1B6) printf("Video Object Plane start");
- else if(startcode==0x1B7) printf("slice start");
- else if(startcode==0x1B8) printf("extension start");
- else if(startcode==0x1B9) printf("fgs start");
- else if(startcode==0x1BA) printf("FBA Object start");
- else if(startcode==0x1BB) printf("FBA Object Plane start");
- else if(startcode==0x1BC) printf("Mesh Object start");
- else if(startcode==0x1BD) printf("Mesh Object Plane start");
- else if(startcode==0x1BE) printf("Still Textutre Object start");
- else if(startcode==0x1BF) printf("Textutre Spatial Layer start");
- else if(startcode==0x1C0) printf("Textutre SNR Layer start");
- else if(startcode==0x1C1) printf("Textutre Tile start");
- else if(startcode==0x1C2) printf("Textutre Shape Layer start");
- else if(startcode==0x1C3) printf("stuffing start");
- else if(startcode<=0x1C5) printf("reserved");
- else if(startcode<=0x1FF) printf("System start");
- printf("\n");
- }
- head|=c;
- ++pos;
-}
-
-return 0;
-}