Filter or Hook to catch pre-rendering of post content

Can you not simply use the_content filter hook?

function mytheme_content_filter( $content ) {
     // Do stuff to $content, which contains the_content()
     // Then return it
     return $content;
}
add_filter( 'the_content', 'mytheme_content_filter' );