~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to addons/ffv1rec/ffv1rec.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    Improvements also by
10
10
        E Strickland 
11
11
        Michael Teske
 
12
        Levente Novak
12
13
 ***************************************************************************/
13
14
 
14
15
/***************************************************************************
48
49
 
49
50
//adm_fast_memcpy myMemcpy;
50
51
 
51
 
#define _VERSION_ "0.2.4 (2.1 branch)"
 
52
#define _VERSION_ "0.2.4 (2.3 branch)"
52
53
 
53
54
 
54
55
/* Globals */
117
118
   fprintf(stderr, "\nFFV1 Recording Tool v0.52    (c)Mean/Roman HOCHLEITNER\n");
118
119
   fprintf(stderr, "\nA nuvrec derivative, compressing with lavcodec ffv1 codec\n");
119
120
   fprintf(stderr, "Usage: nuvrec [options] filename \n\n");
120
 
   fprintf(stderr, "options: -q n .......... Quality 2..31                 ]\n");
 
121
   fprintf(stderr, "options: -q n .......... Quality 2-31                  ]\n");
121
122
   fprintf(stderr, "options: -Z   .......... Use mpeg quant                ]\n");
122
123
   fprintf(stderr, "         -M n .......... Motion estimation (1-6) [1]   ]\n");
123
 
   fprintf(stderr, "         -d n .......... K frame distance(1.500)[200]  ]\n");
124
 
   fprintf(stderr, "         -l n .......... Luminance Threshold   0..20 [1]\n");
125
 
   fprintf(stderr, "         -c n .......... Chrominance Threshold 0..20 [1]\n");
 
124
   fprintf(stderr, "         -d n .......... K frame distance(1-500)[200]  ]\n");
 
125
   fprintf(stderr, "         -l n .......... Luminance Threshold   0-20 [1]\n");
 
126
   fprintf(stderr, "         -c n .......... Chrominance Threshold 0-20 [1]\n");
126
127
   fprintf(stderr, "         -W n .......... Width       [352 PAL, 352 NTSC]\n");
127
128
   fprintf(stderr, "         -H n .......... Height      [288 PAL, 240 NTSC]\n");
128
129
   fprintf(stderr, "         -t min ........ Length (3.5 = 3m 30s) [forever]\n");
140
141
   fprintf(stderr, "         -s ............ SECAM\n");
141
142
   fprintf(stderr, "         -Q ............ shut up\n");
142
143
   fprintf(stderr, "         -z ............ video only (i.e. no audio)\n");
143
 
   fprintf(stderr, "         -C ............ select video codec (MJPEG|HUFFYUV|FFV1|MPEG4|XVID)\n");
 
144
   fprintf(stderr, "         -C ............ select video codec (MJPEG|HUFFYUV|FFHUFF|FFV1|MPEG1|MPEG2|MPEG4|XVID)\n");
144
145
   fprintf(stderr, "         -b ............ set the audio frequency [44100]\n");
145
146
   fprintf(stderr, "         -2 ............ split every  2 Gbytes [NO]\n");
146
147
   fprintf(stderr, "         -h ............ this help\n");
491
492
fclose(fd);
492
493
}
493
494
 
494
 
 
 
495
char * ADM_getBaseDir(void){ return NULL;}
 
496
char *PathCanonize(const char *tmpname) { return NULL;}