code
string
repo_name
string
path
string
language
string
license
string
size
int64
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Stateless { static class ParameterConversion { public static object Unpack(object[] args, Type argType, int index) { Enforce.ArgumentNotNull(args, "args"); if (...
1234567eight-test
Stateless/ParameterConversion.cs
C#
asf20
1,379
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Stateless { public partial class StateMachine<TState, TTrigger> { internal class TransitioningTriggerBehaviour : TriggerBehaviour { readonly TState _destination; ...
1234567eight-test
Stateless/TransitioningTriggerBehaviour.cs
C#
asf20
773
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Stateless; namespace BugTrackerExample { public class Bug { enum State { Open, Assigned, Deferred, Resolved, Closed } enum Trigger { Assign, Defer, Resolve, Close } State _state = ...
1234567eight-test
BugTrackerExample/Bug.cs
C#
asf20
2,462
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
1234567eight-test
BugTrackerExample/Properties/AssemblyInfo.cs
C#
asf20
1,476
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BugTrackerExample { class Program { static void Main(string[] args) { var bug = new Bug("Incorrect stock count"); bug.Assign("Joe"); bug.Defer(); ...
1234567eight-test
BugTrackerExample/Program.cs
C#
asf20
475
package test; public class test{ public static void main(String[] arg){ System.out.println("ok 1111"); } }
00-project-test
trunk/test stage/test.java
Java
oos
138
package net.avc.video.cutter.natives; public class Natives { public static native int takePics(); }
123linslouis-android-video-cutter
src/net/avc/video/cutter/natives/Natives.java
Java
asf20
102
package net.avc.video.cutter; import net.avc.video.cutter.natives.Natives; import android.app.Activity; import android.os.Bundle; public class TakePics extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(s...
123linslouis-android-video-cutter
src/net/avc/video/cutter/TakePics.java
Java
asf20
577
/* * MPEG4 decoder. * Copyright (c) 2000,2001 Fabrice Bellard * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the ...
123linslouis-android-video-cutter
jni/libavcodec/mpeg4videodec.c
C
asf20
86,641
/* * H.26L/H.264/AVC/JVT/14496-10/... parser * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundatio...
123linslouis-android-video-cutter
jni/libavcodec/h264_parser.h
C
asf20
1,302
/* * PNG image format * Copyright (c) 2003 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (a...
123linslouis-android-video-cutter
jni/libavcodec/pngdec.c
C
asf20
22,082
/* * SIPR decoder for the 16k mode * * Copyright (c) 2008 Vladimir Voroshilov * Copyright (c) 2009 Vitor Sessak * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software ...
123linslouis-android-video-cutter
jni/libavcodec/sipr16kdata.h
C
asf20
32,717
/* * MLP codec common header file * Copyright (c) 2007-2008 Ian Caulfield * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the...
123linslouis-android-video-cutter
jni/libavcodec/mlp.h
C
asf20
4,419
/* * Zip Motion Blocks Video (ZMBV) decoder * Copyright (c) 2006 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version...
123linslouis-android-video-cutter
jni/libavcodec/zmbv.c
C
asf20
19,097
/* * Dirac decoder support via libdirac library * Copyright (c) 2005 BBC, Andrew Kennedy <dirac at rd dot bbc dot co dot uk> * Copyright (c) 2006-2008 BBC, Anuradha Suraparaju <asuraparaju at gmail dot com > * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it...
123linslouis-android-video-cutter
jni/libavcodec/libdiracdec.c
C
asf20
6,847
/* * VC3/DNxHD data. * Copyright (c) 2007 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free So...
123linslouis-android-video-cutter
jni/libavcodec/dnxhddata.c
C
asf20
41,418
/* * Atrac 1 compatible decoder data * Copyright (c) 2009 Maxim Poliakovski * Copyright (c) 2009 Benjamin Larsson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software...
123linslouis-android-video-cutter
jni/libavcodec/atrac1data.h
C
asf20
2,660
/* * various filters for ACELP-based codecs * * Copyright (c) 2008 Vladimir Voroshilov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * vers...
123linslouis-android-video-cutter
jni/libavcodec/acelp_filters.h
C
asf20
4,813
/* * MPEG-4 ALS decoder * Copyright (c) 2009 Thilo Borgmann <thilo.borgmann _at_ googlemail.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; eithe...
123linslouis-android-video-cutter
jni/libavcodec/alsdec.c
C
asf20
56,949
/* * DXVA2 HW acceleration * * copyright (c) 2009 Laurent Aimar * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License,...
123linslouis-android-video-cutter
jni/libavcodec/dxva2.h
C
asf20
1,802
/* * RoQ Video Encoder. * * Copyright (C) 2007 Vitor Sessak <vitor1001@gmail.com> * Copyright (C) 2004-2007 Eric Lasota * Based on RoQ specs (C) 2001 Tim Ferguson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser Gener...
123linslouis-android-video-cutter
jni/libavcodec/roqvideoenc.c
C
asf20
31,726
/* * Musepack decoder * Copyright (c) 2006 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, o...
123linslouis-android-video-cutter
jni/libavcodec/mpcdata.h
C
asf20
4,172
/* * RV40 decoder motion compensation functions * Copyright (c) 2008 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * ver...
123linslouis-android-video-cutter
jni/libavcodec/rv40dsp.c
C
asf20
17,320
/* * Intel Indeo 2 codec * Copyright (c) 2005 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License...
123linslouis-android-video-cutter
jni/libavcodec/indeo2.c
C
asf20
7,157
/* * reference discrete cosine transform (double precision) * Copyright (C) 2009 Dylan Yudaken * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either ...
123linslouis-android-video-cutter
jni/libavcodec/dctref.h
C
asf20
1,038
/* * AC-3 parser * Copyright (c) 2003 Fabrice Bellard * Copyright (c) 2003 Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either...
123linslouis-android-video-cutter
jni/libavcodec/ac3_parser.c
C
asf20
6,804
/* * Wing Commander/Xan Video Decoder * Copyright (C) 2003 the ffmpeg project * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of...
123linslouis-android-video-cutter
jni/libavcodec/xan.c
C
asf20
11,987
/* * H.26L/H.264/AVC/JVT/14496-10/... parser * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundatio...
123linslouis-android-video-cutter
jni/libavcodec/h264_parser.c
C
asf20
10,496
/* * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed...
123linslouis-android-video-cutter
jni/libavcodec/aandcttab.c
C
asf20
1,913
/* * Musepack SV8 decoder * Copyright (c) 2007 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Licens...
123linslouis-android-video-cutter
jni/libavcodec/mpc8data.h
C
asf20
10,768
/* * Nellymoser encoder * This code is developed as part of Google Summer of Code 2008 Program. * * Copyright (c) 2008 Bartlomiej Wolowiec * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as publ...
123linslouis-android-video-cutter
jni/libavcodec/nellymoserenc.c
C
asf20
13,493
/* * H.264 MP4 to Annex B byte stream format filter * Copyright (c) 2007 Benoit Fouet <benoit.fouet@free.fr> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Found...
123linslouis-android-video-cutter
jni/libavcodec/h264_mp4toannexb_bsf.c
C
asf20
5,562
/* * Electronic Arts TGQ/TQI/MAD IDCT algorithm * Copyright (c) 2007-2008 Peter Ross <pross@xvid.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; ...
123linslouis-android-video-cutter
jni/libavcodec/eaidct.c
C
asf20
3,089
/* * Copyright (C) 2003 Mike Melanson * Copyright (C) 2003 Dr. Tim Ferguson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of t...
123linslouis-android-video-cutter
jni/libavcodec/roqvideo.c
C
asf20
4,596
/* * MPEG1 / MPEG2 video parser * Copyright (c) 2000,2001 Fabrice Bellard * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as publi...
123linslouis-android-video-cutter
jni/libavcodec/mpegvideo_parser.c
C
asf20
7,232
/* * SVQ1 decoder * ported to MPlayer by Arpi <arpi@thot.banki.hu> * ported to libavcodec by Nick Kurshev <nickols_k@mail.ru> * * Copyright (C) 2002 the xine project * Copyright (C) 2002 the ffmpeg project * * SVQ1 Encoder (c) 2004 Mike Melanson <melanson@pcisys.net> * * This file is part of FFmpeg. * * FFm...
123linslouis-android-video-cutter
jni/libavcodec/svq1dec.c
C
asf20
24,974
/* * Common AAC and AC-3 parser prototypes * Copyright (c) 2003 Fabrice Bellard * Copyright (c) 2003 Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free S...
123linslouis-android-video-cutter
jni/libavcodec/aac_ac3_parser.h
C
asf20
2,048
/* * Video Decode and Presentation API for UNIX (VDPAU) is used for * HW decode acceleration for MPEG-1/2, H.264 and VC-1. * * Copyright (C) 2008 NVIDIA * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * L...
123linslouis-android-video-cutter
jni/libavcodec/vdpau_internal.h
C
asf20
1,743
/* * Generate a file for hardcoded tables * * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foun...
123linslouis-android-video-cutter
jni/libavcodec/tableprint.h
C
asf20
2,382
/* * Copyright (C) 2004-2010 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Licens...
123linslouis-android-video-cutter
jni/libavcodec/dwt.h
C
asf20
4,882
/* * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software ...
123linslouis-android-video-cutter
jni/libavcodec/h264.c
C
asf20
128,608
/* * Wmapro compatible decoder * Copyright (c) 2007 Baptiste Coudurier, Benjamin Larsson, Ulion * Copyright (c) 2008 - 2009 Sascha Sommer, Benjamin Larsson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public *...
123linslouis-android-video-cutter
jni/libavcodec/wmaprodec.c
C
asf20
61,902
/* * Floating point AAN IDCT * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * ver...
123linslouis-android-video-cutter
jni/libavcodec/faanidct.c
C
asf20
6,202
/* * Atrac common functions * Copyright (c) 2006-2008 Maxim Poliakovski * Copyright (c) 2006-2008 Benjamin Larsson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Softwar...
123linslouis-android-video-cutter
jni/libavcodec/atrac.c
C
asf20
3,068
/* * H.263i decoder * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * ...
123linslouis-android-video-cutter
jni/libavcodec/intelh263dec.c
C
asf20
4,086
/* * Error resilience / concealment * * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation...
123linslouis-android-video-cutter
jni/libavcodec/error_resilience.c
C
asf20
43,806
/* * H261 encoder * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> * Copyright (c) 2004 Maarten Daniels * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free So...
123linslouis-android-video-cutter
jni/libavcodec/h261enc.c
C
asf20
9,318
/* * DVB subtitle encoding for ffmpeg * Copyright (c) 2005 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of th...
123linslouis-android-video-cutter
jni/libavcodec/dvbsub.c
C
asf20
12,564
/* * Bink video decoder * Copyright (c) 2009 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License,...
123linslouis-android-video-cutter
jni/libavcodec/bink.c
C
asf20
33,029
/* * DVB subtitle decoding for ffmpeg * Copyright (c) 2005 Ian Caulfield * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the ...
123linslouis-android-video-cutter
jni/libavcodec/dvbsubdec.c
C
asf20
39,025
/* * G.726 ADPCM audio codec * Copyright (c) 2004 Roman Shaposhnik * * This is a very straightforward rendition of the G.726 * Section 4 "Computational Details". * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General P...
123linslouis-android-video-cutter
jni/libavcodec/g726.c
C
asf20
12,362
/* * VC-1 and WMV3 decoder * Copyright (c) 2006-2007 Konstantin Shishkov * Partly based on vc9.c (c) 2005 Anonymous, Alex Beregszaszi, Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * ...
123linslouis-android-video-cutter
jni/libavcodec/vc1dec.c
C
asf20
124,799
/** * LPC utility code * Copyright (c) 2006 Justin Ruggles <justin.ruggles@gmail.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * versi...
123linslouis-android-video-cutter
jni/libavcodec/lpc.c
C
asf20
6,853
/* * Common code between the AC-3 encoder and decoder * Copyright (c) 2000, 2001, 2002 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation;...
123linslouis-android-video-cutter
jni/libavcodec/ac3.h
C
asf20
6,751
/* * Block Gilbert-Moore decoder * Copyright (c) 2010 Thilo Borgmann <thilo.borgmann _at_ googlemail.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundati...
123linslouis-android-video-cutter
jni/libavcodec/bgmc.h
C
asf20
1,697
/* * Ratecontrol * Copyright (c) 2000, 2001, 2002 Fabrice Bellard * Copyright (c) 2002-2004 Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software F...
123linslouis-android-video-cutter
jni/libavcodec/ratecontrol.h
C
asf20
3,359
/* * DivX (XSUB) subtitle encoder * Copyright (c) 2005 DivX, Inc. * Copyright (c) 2009 Bjorn Axelsson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation;...
123linslouis-android-video-cutter
jni/libavcodec/xsubenc.c
C
asf20
7,259
/* * DCA compatible decoder * Copyright (C) 2004 Gildas Bazin * Copyright (C) 2004 Benjamin Zores * Copyright (C) 2006 Benjamin Larsson * Copyright (C) 2007 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU L...
123linslouis-android-video-cutter
jni/libavcodec/dca.h
C
asf20
1,320
/* * MJPEG parser * Copyright (c) 2000, 2001 Fabrice Bellard * Copyright (c) 2003 Alex Beregszaszi * Copyright (c) 2003-2004 Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License a...
123linslouis-android-video-cutter
jni/libavcodec/mjpeg_parser.c
C
asf20
2,731
/* * AVPacket functions for libavcodec * Copyright (c) 2000, 2001, 2002 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * vers...
123linslouis-android-video-cutter
jni/libavcodec/avpacket.c
C
asf20
2,824
/* * PNM image format * Copyright (c) 2002, 2003 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License,...
123linslouis-android-video-cutter
jni/libavcodec/pnm.c
C
asf20
5,779
/* * Interplay MVE Video Decoder * Copyright (C) 2003 the ffmpeg project * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the ...
123linslouis-android-video-cutter
jni/libavcodec/interplayvideo.c
C
asf20
33,298
/* * RealAudio 2.0 (28.8K) * Copyright (c) 2003 the ffmpeg project * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Licens...
123linslouis-android-video-cutter
jni/libavcodec/ra288.c
C
asf20
6,409
/* * Copyright (c) 2004 François Revol <revol@free.fr> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at you...
123linslouis-android-video-cutter
jni/libavcodec/beosthread.c
C
asf20
4,872
/* * common functions for Indeo Video Interactive codecs (Indeo4 and Indeo5) * * Copyright (c) 2009 Maxim Poliakovski * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Soft...
123linslouis-android-video-cutter
jni/libavcodec/ivi_common.h
C
asf20
13,066
/* * FLV specific private header. * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later vers...
123linslouis-android-video-cutter
jni/libavcodec/flv.h
C
asf20
1,216
/* * MPEG-4 Parametric Stereo decoding functions * Copyright (c) 2010 Alex Converse <alex.converse@gmail.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foun...
123linslouis-android-video-cutter
jni/libavcodec/aacps.c
C
asf20
38,891
/* * MPEG1/2 tables * copyright (c) 2000,2001 Fabrice Bellard * copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the ...
123linslouis-android-video-cutter
jni/libavcodec/mpeg12data.h
C
asf20
1,796
/* * Indeo Video Interactive v5 compatible decoder * Copyright (c) 2009 Maxim Poliakovski * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * ve...
123linslouis-android-video-cutter
jni/libavcodec/indeo5.c
C
asf20
27,516
/* * American Laser Games MM Video Decoder * Copyright (c) 2006,2008 Peter Ross * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 ...
123linslouis-android-video-cutter
jni/libavcodec/mmvideo.c
C
asf20
5,938
/* * R210 decoder * * Copyright (c) 2009 Reimar Doeffinger <Reimar.Doeffinger@gmx.de> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * versi...
123linslouis-android-video-cutter
jni/libavcodec/r210dec.c
C
asf20
2,891
/* * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or...
123linslouis-android-video-cutter
jni/libavcodec/mp3_header_decompress_bsf.c
C
asf20
3,194
/* * LCL (LossLess Codec Library) Codec * Copyright (c) 2002-2004 Roberto Togni * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 ...
123linslouis-android-video-cutter
jni/libavcodec/lcl.h
C
asf20
1,394
/* * VC-1 and WMV3 parser * Copyright (c) 2006-2007 Konstantin Shishkov * Partly based on vc9.c (c) 2005 Anonymous, Alex Beregszaszi, Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * L...
123linslouis-android-video-cutter
jni/libavcodec/vc1_parser.c
C
asf20
5,008
/* * Feeble Files/ScummVM DXA decoder * Copyright (c) 2007 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 o...
123linslouis-android-video-cutter
jni/libavcodec/dxa.c
C
asf20
10,330
/* * PNG image format * Copyright (c) 2003 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (a...
123linslouis-android-video-cutter
jni/libavcodec/png.c
C
asf20
2,435
/* * Copyright (c) 2002-2006 Michael Niedermayer <michaelni@gmx.at> * Copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Fr...
123linslouis-android-video-cutter
jni/libavcodec/eval.c
C
asf20
13,384
/* * JPEG-LS decoder * Copyright (c) 2003 Michael Niedermayer * Copyright (c) 2006 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation...
123linslouis-android-video-cutter
jni/libavcodec/jpeglsdec.c
C
asf20
11,393
/* * ITU H263 bitstream decoder * Copyright (c) 2000,2001 Fabrice Bellard * H263+ support. * Copyright (c) 2001 Juan J. Sierralta P * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under th...
123linslouis-android-video-cutter
jni/libavcodec/ituh263dec.c
C
asf20
36,432
/* * MDCT/IMDCT transforms * Copyright (c) 2002 Fabrice Bellard * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, ...
123linslouis-android-video-cutter
jni/libavcodec/mdct.c
C
asf20
6,020
/* * TwinVQ decoder * Copyright (c) 2009 Vitor Sessak * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at you...
123linslouis-android-video-cutter
jni/libavcodec/twinvq.c
C
asf20
37,198
/* * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed...
123linslouis-android-video-cutter
jni/libavcodec/sh4/dsputil_sh4.h
C
asf20
1,000
/* * idct for sh4 * * Copyright (c) 2001-2003 BERO <bero@geocities.co.jp> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of th...
123linslouis-android-video-cutter
jni/libavcodec/sh4/idct_sh4.c
C
asf20
9,806
/* * aligned/packed access motion * * Copyright (c) 2001-2003 BERO <bero@geocities.co.jp> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * v...
123linslouis-android-video-cutter
jni/libavcodec/sh4/dsputil_align.c
C
asf20
14,740
OBJS += sh4/dsputil_align.o \ sh4/dsputil_sh4.o \ sh4/idct_sh4.o \
123linslouis-android-video-cutter
jni/libavcodec/sh4/Makefile
Makefile
asf20
222
/* * sh4 dsputil * * Copyright (c) 2003 BERO <bero@geocities.co.jp> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Lic...
123linslouis-android-video-cutter
jni/libavcodec/sh4/dsputil_sh4.c
C
asf20
3,253
/* * This is optimized for sh, which have post increment addressing (*p++). * Some CPU may be index (p[n]) faster than post increment (*p++). * * copyright (c) 2001-2003 BERO <bero@geocities.co.jp> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under th...
123linslouis-android-video-cutter
jni/libavcodec/sh4/qpel.c
C
asf20
62,138
/* * Copyright (c) 2008 Mans Rullgard <mans@mansr.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at you...
123linslouis-android-video-cutter
jni/libavcodec/sh4/sh4.h
C
asf20
1,734
/* * Targa (.tga) image encoder * Copyright (c) 2007 Bobby Bingham * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Licens...
123linslouis-android-video-cutter
jni/libavcodec/targaenc.c
C
asf20
4,958
/* * data for G.729 decoder * Copyright (c) 2007 Vladimir Voroshilov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Lice...
123linslouis-android-video-cutter
jni/libavcodec/g729data.h
C
asf20
15,781
/* * Copyright (C) 2003 Mike Melanson * Copyright (C) 2003 Dr. Tim Ferguson * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of t...
123linslouis-android-video-cutter
jni/libavcodec/roqvideo.h
C
asf20
2,459
/* * audio encoder psychoacoustic model * Copyright (C) 2008 Konstantin Shishkov * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1...
123linslouis-android-video-cutter
jni/libavcodec/psymodel.c
C
asf20
4,327
/* * copyright (c) 2000,2001 Fabrice Bellard * H263+ support * copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the F...
123linslouis-android-video-cutter
jni/libavcodec/mpeg4data.h
C
asf20
13,222
/* * Alpha optimized DSP utils * Copyright (c) 2002 Falk Hueffner <falk@debian.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/asm.h
C
asf20
9,327
/* * Alpha optimized DSP utils * Copyright (c) 2002 Falk Hueffner <falk@debian.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/motion_est_alpha.c
C
asf20
9,835
/* * Alpha optimized DSP utils * Copyright (c) 2002 Falk Hueffner <falk@debian.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/dsputil_alpha_asm.S
Motorola 68K Assembly
asf20
7,357
/* * Alpha optimized DSP utils * Copyright (c) 2002 Falk Hueffner <falk@debian.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/dsputil_alpha.c
C
asf20
13,644
/* * Alpha optimized DSP utils * copyright (c) 2002 Falk Hueffner <falk@debian.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/regdef.h
C
asf20
2,136
OBJS += alpha/dsputil_alpha.o \ alpha/dsputil_alpha_asm.o \ alpha/motion_est_alpha.o \ alpha/motion_est_mvi_asm.o \ ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/Makefile
Makefile
asf20
444
/* * Alpha optimized DSP utils * Copyright (c) 2002 Falk Hueffner <falk@debian.org> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version ...
123linslouis-android-video-cutter
jni/libavcodec/alpha/motion_est_mvi_asm.S
Motorola 68K Assembly
asf20
6,289