comparison stream/tvi_v4l2.c @ 23362:452595810016

remove unnecessary stubs which were not ever used.
author voroshil
date Thu, 24 May 2007 09:58:57 +0000
parents d2c6e0c71550
children e7b4c913dc31
comparison
equal deleted inserted replaced
23361:705f72c9a0f6 23362:452595810016
1311 set_mute(priv, 0); 1311 set_mute(priv, 0);
1312 1312
1313 return 1; 1313 return 1;
1314 } 1314 }
1315 1315
1316
1317 #ifdef HAVE_TV_BSDBT848
1318 static double grabimmediate_video_frame(priv_t *priv, char *buffer, int len)
1319 {
1320 memset(buffer, 0xCC, len);
1321 return(1);
1322 }
1323 #endif /* HAVE_TV_BSDBT848 */
1324
1325 // copies a video frame 1316 // copies a video frame
1326 static inline void copy_frame(priv_t *priv, unsigned char *dest, unsigned char *source) 1317 static inline void copy_frame(priv_t *priv, unsigned char *dest, unsigned char *source)
1327 { 1318 {
1328 int w = priv->format.fmt.pix.width; 1319 int w = priv->format.fmt.pix.width;
1329 int h = priv->format.fmt.pix.height; 1320 int h = priv->format.fmt.pix.height;