]> git.pld-linux.org Git - packages/kino.git/blame - kino-fix_bigendian_warning.patch
- up to 1.0
[packages/kino.git] / kino-fix_bigendian_warning.patch
CommitLineData
8bd38519
RT
1--- src/page_export_avi.cc.orig 2007-03-17 12:26:16.000000000 +0100
2+++ src/page_export_avi.cc 2007-03-17 12:30:18.000000000 +0100
3@@ -211,8 +211,10 @@
6afc24d6
ER
4 time_t datetime = time( NULL );
5 int frameNum = 0;
6 int i;
8bd38519
RT
7- bool resample = gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(
8- lookup_widget( common->getWidget(), "checkbutton_export_avi_resample" ) ) );
6afc24d6 9+#if BYTE_ORDER == LITTLE_ENDIAN
8bd38519
RT
10+ bool resample = gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(
11+ lookup_widget( common->getWidget(), "checkbutton_export_avi_resample" ) ) );
6afc24d6 12+#endif
8bd38519 13 int16_le_t *audio_buffers[ 4 ];
6afc24d6 14 AudioInfo info;
8bd38519 15 AsyncAudioResample<int16_ne_t,int16_le_t>* resampler = 0;
This page took 0.063427 seconds and 4 git commands to generate.