Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-08-15 15:42:15 +0400
committerDiego Biurrun <diego@biurrun.de>2009-08-15 15:42:15 +0400
commit0ebe3b8e2bf74503d7c9cc383e29254a3cb06d55 (patch)
tree1418df21aaebbbaa788197bd6044ca630cce74e7 /libavcodec/libschroedinger.c
parentc64380009d7765cafc754f7084abde497638fdd3 (diff)
cosmetics: indentation, prettyprinting, K&R coding style
Originally committed as revision 19652 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libschroedinger.c')
-rw-r--r--libavcodec/libschroedinger.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/libschroedinger.c b/libavcodec/libschroedinger.c
index 4d2099a5eb..ec9bde4880 100644
--- a/libavcodec/libschroedinger.c
+++ b/libavcodec/libschroedinger.c
@@ -57,8 +57,8 @@ SchroVideoFormatEnum ff_get_schro_video_format_preset(AVCodecContext *avccontext
unsigned int idx = ff_dirac_schro_get_video_format_idx (avccontext);
- return (idx < num_formats) ?
- ff_schro_video_formats[idx] : SCHRO_VIDEO_FORMAT_CUSTOM;
+ return (idx < num_formats) ? ff_schro_video_formats[idx] :
+ SCHRO_VIDEO_FORMAT_CUSTOM;
}
int ff_get_schro_frame_format (SchroChromaFormat schro_pix_fmt,
@@ -71,8 +71,7 @@ int ff_get_schro_frame_format (SchroChromaFormat schro_pix_fmt,
for (idx = 0; idx < num_formats; ++idx) {
if (ffmpeg_schro_pixel_format_map[idx].schro_pix_fmt == schro_pix_fmt) {
- *schro_frame_fmt =
- ffmpeg_schro_pixel_format_map[idx].schro_frame_fmt;
+ *schro_frame_fmt = ffmpeg_schro_pixel_format_map[idx].schro_frame_fmt;
return 0;
}
}