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

« back to all changes in this revision

Viewing changes to avidemux/mpeg2enc/predict_ref.cc

  • 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:
298
298
        if( cpucap  == 0 )      /* No MMX/SSE etc support available */
299
299
        {
300
300
                ppred_comp = pred_comp;
301
 
                printf("SETTING : NO ACCEL\n");
 
301
                printf("[Mpeg2enc] C predict (NO ACCEL)\n");
302
302
        }
303
303
 
304
304
#if defined( ARCH_X86)  || defined(ARCH_X86_64)
305
305
        else if(cpucap & ACCEL_X86_MMXEXT ) /* AMD MMX or SSE... */
306
306
        {
307
 
                printf( "SETTING EXTENDED MMX for PREDICTION!\n");
 
307
                printf("[Mpeg2enc] MMXE predict\n");
308
308
                ppred_comp = pred_comp_mmxe;
309
309
        }
310
310
    else if(cpucap & ACCEL_X86_MMX ) /* Original MMX... */
311
311
        {
312
 
                printf( "SETTING MMX for PREDICTION!\n");
 
312
                printf("[Mpeg2enc] MMX predict\n");
313
313
                ppred_comp = pred_comp_mmx;
314
314
        }
315
315
#endif