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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-06-13 15:59:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-13 15:59:28 +0400
commitcda5770160e11c2d3c7ab7d20e24a7a8f3b28f1f (patch)
tree5ba33f204de8e68c8d81a5a27b9762f3fb684991 /source/blender/blenkernel/intern/writeffmpeg.c
parenteb136fcbec33288411838dae8105fa17dc8ffecd (diff)
code cleanup: also fix crash in GPU_state_print(). and confine to debug mode builds.
Diffstat (limited to 'source/blender/blenkernel/intern/writeffmpeg.c')
-rw-r--r--source/blender/blenkernel/intern/writeffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
index 6f806903554..f08a51e602c 100644
--- a/source/blender/blenkernel/intern/writeffmpeg.c
+++ b/source/blender/blenkernel/intern/writeffmpeg.c
@@ -747,7 +747,7 @@ static AVStream *alloc_audio_stream(RenderData *rd, int codec_id, AVFormatContex
#endif
if (c->frame_size == 0)
- // used to be if((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
+ // used to be if ((c->codec_id >= CODEC_ID_PCM_S16LE) && (c->codec_id <= CODEC_ID_PCM_DVD))
// not sure if that is needed anymore, so let's try out if there are any
// complaints regarding some ffmpeg versions users might have
audio_input_samples = FF_MIN_BUFFER_SIZE * 8 / c->bits_per_coded_sample / c->channels;